@charset "UTF-8";
/**
 * Global Styles
 * 
 * Global navigation, search, and component styles
 * Layout components have been moved to front-layout.scss
 */
/**
 * Global SCSS Variables
 * 
 * Implements the design system from STYLE.md
 * All design tokens are centralized here
 */
/**
 * Global SCSS Mixins
 * 
 * Reusable mixins for consistent styling patterns
 * Import variables before using these mixins
 */
/**
 * Responsive Breakpoints
 * Mobile-first approach
 */
/**
 * Button Base
 * Standard button styling foundation
 */
/**
 * Button Variants
 */
/**
 * Button Sizes
 */
/**
 * Card Component
 */
/**
 * Form Controls
 */
/**
 * Flexbox Utilities
 */
/**
 * Grid Layout
 */
/**
 * Text Utilities
 */
/**
 * Spacing Utilities
 */
/**
 * Visual Effects
 */
@keyframes loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
/**
 * Accessibility
 */
/**
 * Enhanced Grid System
 * Flexible grid system with responsive behavior
 */
/**
 * Card Component Enhancement
 * Consistent card styling across all pages
 */
/**
 * Overlay Pattern
 * For image overlays with gradient
 */
/**
 * Button Variations
 * Extended button styles for consistency
 */
/**
 * Form Control Variations
 * Additional form patterns
 */
/**
 * Loading States
 * Consistent loading patterns
 */
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
/**
 * Responsive Typography
 * Fluid type sizing
 */
/**
 * Aspect Ratio
 * Maintain aspect ratios for media
 */
/**
 * Container Query Support
 * Progressive enhancement for container queries
 */
/**
 * Dark Mode Support
 * Prepare for future dark mode implementation
 */
/**
 * Banner Base Mixin
 * Consistent banner foundation
 */
/**
 * Banner Image Mixin
 * Consistent image styling
 */
/**
 * Responsive Banner Mixin
 * Handles aspect ratio changes
 */
/**
 * Banner Loading State
 * Shows loading skeleton
 */
/**
 * Banner Error State
 * Shows error state
 */
/**
 * Product Card Base
 * Consistent product card styling
 */
/**
 * Product Image Container
 * Maintains aspect ratio for product images
 */
/**
 * Price Display
 * Consistent price formatting
 */
/**
 * Sale Price
 * Styling for discounted prices
 */
/**
 * Form Group
 * Consistent form field grouping
 */
/**
 * Table Base
 * Consistent table styling
 */
/**
 * Badge
 * Small label components
 */
/**
 * Modal Base
 * Consistent modal styling
 */
/**
 * Smooth Scroll
 * Enable smooth scrolling behavior
 */
/**
 * Custom Scrollbar
 * Styled scrollbar for webkit browsers
 */
/**
 * Tab List
 * Horizontal tab navigation
 */
/**
 * Tab Item
 * Individual tab styling
 */
/**
 * Pagination
 * Page navigation styling
 */
/**
 * Responsive Image
 * Optimized image loading with placeholder
 */
/**
 * Sticky Position
 * Cross-browser sticky positioning
 */
/**
 * Visually Hidden
 * Hide element visually but keep accessible
 */
/**
 * Reset List
 * Remove default list styling
 */
/**
 * Reset Button
 * Remove default button styling
 */
/**
 * Link Reset
 * Remove default link styling
 */
.custom-woocommerce-category-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0;
  margin: 0;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .custom-woocommerce-category-menu {
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .custom-woocommerce-category-menu::-webkit-scrollbar {
    display: none;
  }
  .custom-woocommerce-category-menu::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 20px;
    height: 100%;
    background: linear-gradient(to left, rgba(255, 255, 255, 0.8), transparent);
    pointer-events: none;
  }
}
.custom-woocommerce-category-menu .main-menu-group {
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .custom-woocommerce-category-menu .main-menu-group {
    gap: 10px;
    flex-shrink: 0;
  }
}
.category-item {
  position: relative;
}
@media screen and (max-width: 768px) {
  .category-item {
    flex-shrink: 0;
    white-space: nowrap;
  }
}
.category-item .category-item-title {
  display: flex;
  text-decoration: none;
  width: 100%;
  height: 100%;
  font-size: 1rem;
  font-weight: 600;
  color: #111111;
}
@media screen and (max-width: 768px) {
  .category-item .category-item-title {
    font-size: 0.875rem;
    padding: 10px 16px;
    min-height: 24px;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: background-color 0.2s ease, transform 0.1s ease;
  }
  .category-item .category-item-title:active {
    background-color: rgba(0, 0, 0, 0.05);
    transform: scale(0.95);
  }
}
.main-category-item .category-item-title {
  display: inline-block;
  text-decoration: none;
  font-size: 1rem;
  color: #111111;
  font-weight: 600;
  position: relative;
  transition: color 0.2s ease;
  padding: 0;
  height: auto;
}
.main-category-item .category-item-title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #000000;
  transition: width 0.2s ease-in-out;
}
.main-category-item:hover .category-item-title {
  color: #000000;
}
.main-category-item:hover .category-item-title:after {
  width: 100%;
}
/* Safari/Edge/Mobile hover support improvement */
@media (hover: hover) {
  .main-category-item:hover .category-item-title {
    color: #000000;
  }
  .main-category-item:hover .category-item-title:after {
    width: 100%;
  }
  .category-item:hover .child-category-menu {
    display: flex;
  }
}
/* Touch device alternative */
@media (hover: none) {
  .main-category-item:active .category-item-title {
    color: #000000;
  }
  .main-category-item:active .category-item-title:after {
    width: 100%;
  }
  .category-item .child-category-menu {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .estimate-button-item {
    flex-shrink: 0;
    margin-left: auto;
  }
}
.estimate-button {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border: 2px solid #333333;
  border-radius: 0.25rem;
  background-color: transparent;
  color: #333333;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
  white-space: nowrap;
  line-height: 1rem;
}
.estimate-button:hover {
  background-color: #333333;
  color: #ffffff;
}
@media (max-width: 768px) {
  .estimate-button {
    padding: 0.5rem;
    font-size: 0.875rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .estimate-button:active {
    transform: scale(0.95);
  }
}
/* 기본 호버 스타일 - @media (hover: hover) 블록에서 처리됨 */
.child-category-menu {
  display: none !important;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  position: fixed;
  left: 0;
  background-color: #ffffff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  width: 100%;
  min-height: 300px;
  height: fit-content;
  overflow: hidden;
}
.category-item:hover .child-category-menu {
  display: flex !important;
}
.child-category-inner {
  max-width: 1280px;
  width: 100%;
  height: 100%;
  padding: 1.25rem;
  display: flex;
  flex-direction: row;
  position: relative;
  gap: 2rem;
}
@media (max-width: 768px) {
  .child-category-inner {
    padding: 0.75rem;
  }
}
.child-category-l {
  display: none;
}
.child-category-l-c {
  display: none;
}
.child-category-item:hover .child-category-l-c {
  display: grid;
}
.child-category-r {
  display: none;
}
.child-category-item {
  border-bottom: 1px solid #eeeeee;
}
.child-category-item .child-category-item-title {
  display: flex;
  text-decoration: none;
  color: #000000;
  width: 100%;
  font-size: 1rem;
  font-weight: 600;
}
.third-category-item {
  padding: 0;
  border-bottom: none;
}
.third-category-item .third-category-item-title {
  font-size: 0.875rem;
  font-weight: 400;
  color: #333333;
}
.category-image-container {
  display: none;
}
.ca-search-container {
  position: relative;
  width: 440px;
}
@media (max-width: 992px) {
  .ca-search-container-pc {
    display: none !important;
  }
}
.ca-search-open-btn-mb {
  display: none;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  color: #333333;
  line-height: 1;
}
.ca-search-open-btn-mb .material-symbols-rounded {
  font-size: 1.5rem;
}
@media (max-width: 992px) {
  .ca-search-open-btn-mb {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.ca-search-input-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-radius: 0.75rem;
  border: 1px solid #d9d9d9;
  padding: 0 0.5rem;
  position: relative;
  height: 40px;
  box-shadow: 0 2px 8px rgba(0, 115, 170, 0.04);
  z-index: 1000;
}
.ca-search-container.dropdown-open .ca-search-input-wrapper {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.ca-search-field {
  flex: 1 1 0% !important;
  border: none !important;
  outline: none !important;
  background: transparent !important;
  font-size: 1rem !important;
  color: #333333 !important;
  padding: 0 0.5rem !important;
  height: 40px !important;
  border-radius: 0.5rem !important;
}
.ca-search-field:focus {
  outline: none !important;
  box-shadow: none !important;
}
.ca-search-clear-btn, .ca-search-hide-btn, .ca-search-submit {
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem;
  margin-left: 0.125rem;
  font-size: 1.125rem;
  border-radius: 9999px;
  transition: background-color 0.2s ease-in-out;
  color: #999999;
}
.ca-search-clear-btn:hover, .ca-search-hide-btn:hover, .ca-search-submit:hover {
  background: #91dbff;
}
.ca-search-clear-btn {
  display: none;
}
.ca-search-hide-btn .material-symbols-rounded, .ca-search-submit .material-symbols-rounded {
  color: #000000;
}
.ca-search-clear-btn .material-symbols-rounded {
  color: #999999;
}
.ca-search-dropdown {
  display: none;
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  width: 100%;
  max-width: 440px;
  background-color: #ffffff;
  border: 1px solid #d9d9d9;
  border-top: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 1070;
  border-radius: 0 0 0.75rem 0.75rem;
  max-height: 400px;
  overflow-y: auto;
  padding: 0.5rem 0;
}
.ca-search-section {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #f6f6f6;
}
.ca-search-section:last-child {
  border-bottom: none;
}
.ca-search-section.ca-search-suggestions-section {
  display: none;
  padding: 0 0 0.5rem 0;
  background: #ffffff;
}
.ca-search-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}
.ca-search-section-title {
  font-size: 0.75rem;
  font-weight: 600;
  color: #666666;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.ca-clear-recent-btn {
  background: none;
  border: none;
  color: #666666;
  font-size: 0.75rem;
  cursor: pointer;
  padding: 0.125rem 0.5rem;
  transition: color 0.2s ease-in-out;
}
.ca-clear-recent-btn:hover {
  color: #dc3545;
}
#ca-search-recent-list-pc, #ca-search-recent-list-mb, #ca-search-popular-list-pc, #ca-search-popular-list-mb, #ca-search-recommended-list-pc, #ca-search-recommended-list-mb, #ca-search-suggestions-list-pc, #ca-search-suggestions-list-mb, .ca-search-recent-list, .ca-search-popular-list, .ca-search-suggestions-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.ca-search-no-recent, .ca-search-no-popular, .ca-search-no-recommended {
  color: #888;
  font-size: 0.85rem;
  padding: 10px 15px;
  text-align: center;
  list-style: none;
  display: none;
}
.ca-search-item {
  display: flex !important;
  align-items: center;
  padding: 8px 15px;
  cursor: pointer;
  font-size: 1rem;
  color: #333333;
  transition: background-color 0.2s ease;
  gap: 8px;
  border-bottom: 1px solid #f5f5f5;
}
.ca-search-item:last-child {
  border-bottom: none;
}
.ca-search-item:hover {
  background-color: #fafafa;
}
.ca-search-item-icon {
  width: 18px;
  height: 18px;
  margin-right: 10px;
  opacity: 0.7;
  flex-shrink: 0;
}
.ca-search-term-text {
  flex-grow: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
}
.ca-search-date {
  color: #aaa;
  font-size: 0.92em;
  margin-right: 4px;
  flex-shrink: 0;
}
.ca-delete-search-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 2px;
  display: flex;
  align-items: center;
  opacity: 0.6;
  transition: opacity 0.2s, background 0.15s, color 0.15s;
  flex-shrink: 0;
  color: #bbb;
  font-size: 1.1em;
  border-radius: 50%;
}
.ca-delete-search-btn img {
  width: 14px;
  height: 14px;
}
.ca-delete-search-btn:hover {
  opacity: 1;
  background: #91dbff;
  color: #000000;
}
.ca-search-popular-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 0 7px 8px;
  font-size: 1rem;
  color: #222;
  border-bottom: 1px solid #f5f5f5;
  cursor: pointer;
}
.ca-search-popular-item:last-child {
  border-bottom: none;
}
.ca-search-popular-item .rank {
  display: inline-block;
  width: 22px;
  text-align: right;
  font-weight: 700;
  color: #111111;
  margin-right: 8px;
  transition: color 0.15s, font-size 0.15s;
}
.ca-search-popular-item:hover .rank {
  color: #0073aa;
  font-size: 1.15em;
}
.ca-search-popular-date {
  color: #aaa;
  font-size: 0.95em;
  margin: 0 8px;
  font-weight: 400;
}
.ca-search-label-new {
  background: #fef9f9;
  color: #921925;
  border-radius: 8px;
  font-size: 0.85em;
  font-weight: 700;
  padding: 2px 8px;
  margin-left: 8px;
  user-select: none;
}
.ca-search-label-down {
  color: #aaa;
  font-size: 1.1em;
  margin-left: 8px;
  user-select: none;
}
.ca-search-suggestions-list {
  max-height: 220px;
  overflow-y: auto;
}
.ca-search-suggestion-item {
  display: flex !important;
  align-items: center;
  padding: 8px 15px;
  cursor: pointer;
  font-size: 0.98rem;
  color: #333333;
  transition: background-color 0.2s ease;
  gap: 8px;
}
.ca-search-suggestion-item:hover {
  background-color: #fafafa;
}
.ca-search-suggestion-item.active {
  background: #91dbff;
  color: #000000;
}
.ca-search-suggestion-icon {
  width: 18px;
  height: 18px;
  margin-right: 10px;
  opacity: 0.7;
  flex-shrink: 0;
}
.ca-search-suggestion-action {
  margin-left: auto;
  color: #999999;
  font-size: 1.1em;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.ca-search-suggestion-action:hover {
  color: #000000;
}
.ca-search-suggestions-toggle-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 6px 15px 0 15px;
}
.ca-search-suggestions-toggle-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 0.95rem;
  gap: 6px;
}
.ca-search-suggestions-toggle-input {
  display: none;
}
.ca-search-suggestions-toggle-slider {
  width: 36px;
  height: 20px;
  background: #d9d9d9;
  border-radius: 12px;
  position: relative;
  transition: background 0.2s;
  margin-right: 6px;
}
.ca-search-suggestions-toggle-slider:before {
  content: "";
  position: absolute;
  left: 3px;
  top: 3px;
  width: 14px;
  height: 14px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.2s;
}
.ca-search-suggestions-toggle-input:checked + .ca-search-suggestions-toggle-slider {
  background: #000000;
}
.ca-search-suggestions-toggle-input:checked + .ca-search-suggestions-toggle-slider:before {
  left: 19px;
}
.ca-search-suggestions-toggle-text {
  color: #666666;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 2px;
}
.ca-search-chip {
  display: inline-flex;
  align-items: center;
  background: #91dbff;
  color: #000000;
  border-radius: 16px;
  padding: 0 12px;
  height: 28px;
  font-size: 0.95rem;
  font-weight: 500;
  margin: 0 6px 6px 0;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.ca-search-chip:hover {
  background: #77d3ff;
}
.ca-search-chip.active, .ca-search-chip:active, .ca-search-chip:focus {
  background: #000000;
  color: #ffffff;
  outline: none;
}
.ca-search-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 0;
  margin-bottom: 8px;
}
.ca-search-benefit-list {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
}
.ca-search-benefit-banner {
  background: #91dbff;
  color: #000000;
  border-radius: 12px;
  padding: 8px 18px 8px 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  white-space: nowrap;
  font-size: 1rem;
  min-width: 120px;
  box-shadow: 0 1px 4px rgba(139, 92, 246, 0.06);
  cursor: pointer;
  transition: background 0.15s;
}
.ca-search-benefit-banner:hover {
  background: #77d3ff;
}
.ca-search-modal-bg {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ca-search-modal {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  max-width: 400px;
  width: 90vw;
  max-height: 80vh;
  overflow-y: auto;
  padding: 24px 20px 20px 20px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.ca-search-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid #eeeeee;
}
.ca-search-modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  line-height: 1;
  color: #999999;
  cursor: pointer;
  padding: 0 4px;
  transition: color 0.15s;
}
.ca-search-modal-close:hover {
  color: #000000;
}
.ca-search-modal-date {
  color: #999999;
  font-size: 0.95em;
  margin-bottom: 10px;
}
.ca-search-modal-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.ca-search-modal-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 0 7px 8px;
  font-size: 1rem;
  color: #222;
  border-bottom: 1px solid #f5f5f5;
}
.ca-search-modal-list li:last-child {
  border-bottom: none;
}
.ca-search-modal-list li .rank {
  display: inline-block;
  width: 22px;
  text-align: right;
  font-weight: 700;
  color: #111111;
  margin-right: 8px;
}
.ca-mp-menu-header {
  width: 100%;
  border-bottom: 1px solid #d9d9d9;
  margin-bottom: 1rem;
  padding: 0.75rem;
}
.ca-mp-menu-div {
  display: flex;
  flex-direction: column;
  width: 100%;
  border-right: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
  border-left: 1px solid #d9d9d9;
}
@media (max-width: 992px) {
  .ca-mp-menu-div {
    flex-direction: row !important;
    flex-wrap: wrap !important;
    border-right-style: none;
    border-left-style: none;
    border-bottom-style: none;
    border-top: 1px solid #d9d9d9;
  }
}
.ca-mp-menu-link {
  width: 100%;
  padding: 0.75rem;
  border-top: 1px solid #d9d9d9;
}
@media (max-width: 992px) {
  .ca-mp-menu-link {
    border-right: 1px solid #d9d9d9;
    border-bottom: 1px solid #d9d9d9;
    border-top-style: none;
    width: 25%;
  }
}
.ca-main-cat-grid {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  gap: 0.75rem;
  overflow-x: auto;
  margin-top: 0.75rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.ca-main-cat-grid::-webkit-scrollbar {
  display: none;
}
.ca-main-cat-grid-div {
  width: calc(100% / 7 - (0.75rem * 6 / 7));
  flex-shrink: 0;
  height: auto;
  aspect-ratio: 1;
  position: relative;
  transition: box-shadow 0.2s ease-in-out;
  overflow: hidden;
  border-radius: 0.5rem;
}
@supports not (aspect-ratio: 1) {
  .ca-main-cat-grid-div {
    position: relative;
  }
  .ca-main-cat-grid-div::before {
    content: "";
    display: block;
    padding-bottom: 100%;
  }
  .ca-main-cat-grid-div > * {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
@media screen and (max-width: 1200px) {
  .ca-main-cat-grid-div {
    width: calc(100% / 6 - (0.75rem * 5 / 6));
  }
}
@media (max-width: 992px) {
  .ca-main-cat-grid-div {
    width: calc(100% / 5 - (0.75rem * 4 / 5));
  }
}
@media (max-width: 768px) {
  .ca-main-cat-grid-div {
    width: calc((100% - 2.5rem) / 4.5);
  }
}
@media screen and (max-width: 480px) {
  .ca-main-cat-grid-div {
    width: calc((100% - 2rem) / 3.5);
  }
}
.ca-main-cat-grid-div:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.ca-main-cat-grid-div-image {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  object-fit: contain;
  padding: 8%;
  z-index: 3;
}
.ca-main-cat-grid-div-title {
  width: 100%;
  position: absolute;
  left: 0.5rem;
  top: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #333333;
  z-index: 3;
}
.ca-main-cat-grid-shape {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0.75rem;
}
.ca-main-cat-grid-shape svg {
  width: 100%;
  height: 100%;
}
.ca-main-cat-grid-background {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
}
.ca-view-all-button {
  background-color: #f6f6f6;
  padding: 0.5rem 1.25rem;
  font-size: 1rem;
  font-weight: 600;
  margin: 0 auto;
  display: block;
  text-align: center;
  border-radius: 0.25rem;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
}
.ca-view-all-button:hover {
  background-color: #eeeeee;
}
.ca-main-title-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  gap: 0.75rem;
  width: 100%;
}
.ca-main-title-more {
  padding: 0.125rem 0.5rem;
  font-size: 0.875rem;
  border-radius: 0.25rem;
  font-weight: 700;
  color: #333333;
  text-decoration: none;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
}
.ca-main-title-more:hover {
  background-color: #333333;
  color: #ffffff;
}
.oxy-repeater-pages-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.25rem;
  width: 100%;
}
.oxy-repeater-pages {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}
.oxy-repeater-pages .page-numbers {
  display: inline-block;
  padding: 0.5rem;
  margin: 0 0.25rem;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  color: #333333;
  background-color: #f6f6f6;
  border: 1px solid #d9d9d9;
  border-radius: 0.25rem;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
  line-height: 0.875rem;
}
.oxy-repeater-pages .page-numbers.current {
  color: #ffffff;
  background-color: #333333;
  border-color: #333333;
}
.oxy-repeater-pages .page-numbers:hover {
  color: #ffffff;
  background-color: #222222;
  border-color: #222222;
}
.oxy-repeater-pages .page-numbers.dots {
  background-color: transparent;
  border-color: transparent;
  padding: 0.5rem 0;
  margin: 0;
  color: #333333;
  cursor: default;
}
.oxy-repeater-pages .page-numbers.dots:hover {
  background-color: transparent;
  border-color: transparent;
  color: #333333;
}
.splide__arrow {
  background: #ffffff;
  color: #ffffff;
  opacity: 1;
  border: 1px solid #666666;
}
.splide__pagination__page {
  background: rgba(0, 0, 0, 0.5);
}
.splide__pagination__page.is-active {
  background: rgba(0, 0, 0, 0.8);
}
#sb_instagram .sbi_photo_wrap {
  border-radius: 0.75rem;
}
.ca-search-modal-mb {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  z-index: 1050;
  overflow-y: auto;
  padding: 60px 1.25rem 1.25rem 1.25rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}
@media (min-width: calc(768px + 1px)) {
  .ca-search-modal-mb {
    display: none !important;
  }
}
.ca-search-modal-mb .ca-search-container-mb {
  max-width: none;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.ca-search-modal-mb .ca-search-dropdown {
  position: relative;
  top: auto;
  left: auto;
  width: 100%;
  max-width: none;
  border: none;
  box-shadow: none;
  border-radius: 0;
  max-height: none;
  margin-top: 0.75rem;
  border-top: 1px solid #eeeeee;
  flex-grow: 1;
  overflow-y: auto;
  padding: 0.75rem 0;
}
.ca-search-modal-mb .ca-search-input-wrapper {
  border-radius: 0.75rem;
  border-bottom: 1px solid #d9d9d9;
}
.ca-search-modal-mb .ca-search-hide-btn {
  display: none;
}
.ca-search-modal-close-mb {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #333333;
  z-index: 10;
  padding: 0.5rem;
  line-height: 1;
  transition: color 0.2s ease-in-out;
}
.ca-search-modal-close-mb:hover {
  color: #000000;
}
.ca-main-banner-slider {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  width: 100%;
  position: relative;
}
@media (max-width: 768px) {
  .ca-main-banner-slider {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
}
.ca-main-banner-slider .splide__slide {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.ca-main-banner-slider .ca-main-banner-slide-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.2s ease-in-out;
  width: 100%;
  height: 100%;
}
.ca-main-banner-slider .ca-main-banner-slide-image:hover {
  transform: scale(1.02);
}
.ca-main-banner-slider .splide__progress {
  background: rgba(255, 255, 255, 0.3);
  height: 0.25rem;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  width: 100%;
  display: block;
  border-radius: 0.25rem;
}
.ca-main-banner-slider .splide__progress__bar {
  background: rgba(255, 255, 255, 0.8);
  height: 100%;
  width: 0;
  display: block;
  position: relative;
  transition: width 0.15s ease-in-out linear;
  border-radius: 0.25rem;
}
.ca-single-banner {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.2s ease-in-out;
  background-color: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 0.75rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.2s ease-in-out;
  width: 100%;
  border-radius: 0.75rem;
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 768px) {
  .ca-single-banner {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
}
.ca-single-banner:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.ca-single-banner .ca-single-banner-link {
  display: flex;
  align-items: center;
  justify-content: center;
  display: block;
  text-decoration: none;
  width: 100%;
  height: 100%;
  transition: transform 0.2s ease-in-out;
}
.ca-single-banner .ca-single-banner-link:focus-visible {
  outline: 2px solid #0073aa;
  outline-offset: 2px;
}
.ca-single-banner .ca-single-banner-link:hover {
  transform: translateY(-0.25rem);
}
@media (hover: none) {
  .ca-single-banner .ca-single-banner-link:active {
    transform: scale(0.98);
    background-color: rgba(51, 51, 51, 0.05);
  }
}
.ca-single-banner .ca-single-banner-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.2s ease-in-out;
  aspect-ratio: 5;
  border-radius: 0.75rem;
}
@media (max-width: 768px) {
  .ca-single-banner .ca-single-banner-image {
    aspect-ratio: 1.3;
  }
}
.ca-single-banner .ca-single-banner-pc {
  display: block;
}
@media (max-width: 768px) {
  .ca-single-banner .ca-single-banner-pc {
    display: none;
  }
}
.ca-single-banner .ca-single-banner-mb {
  display: none;
}
@media (max-width: 768px) {
  .ca-single-banner .ca-single-banner-mb {
    display: block;
  }
}
.ca-banner-loading {
  background: linear-gradient(90deg, #eeeeee 25%, #f6f6f6 50%, #eeeeee 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
  aspect-ratio: 5;
  border-radius: 0.75rem;
}
@media (max-width: 768px) {
  .ca-banner-loading {
    aspect-ratio: 1.3;
  }
}
.ca-banner-error {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 5;
  background-color: #f6f6f6;
  color: #999999;
  border: 1px solid #eeeeee;
  border-radius: 0.75rem;
}
@media (max-width: 768px) {
  .ca-banner-error {
    aspect-ratio: 1.3;
  }
}
.ca-banner-error::before {
  content: "Image not available";
  font-size: 0.875rem;
  font-weight: 500;
}
.ca-header-address-info {
  margin-right: 0.75rem;
}
.ca-header-address-info .ca-header-address-btn {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.5rem;
  background: transparent;
  border: 1px solid #d9d9d9;
  border-radius: 0.25rem;
  cursor: pointer;
  transition: 0.2s ease-in-out;
}
.ca-header-address-info .ca-header-address-btn:hover {
  background-color: #f6f6f6;
  border-color: #333333;
}
.ca-header-address-info .ca-header-address-btn .material-symbols-rounded {
  font-size: 1rem;
  color: #333333;
}
.ca-header-address-info .ca-header-address-btn .ca-header-address-text {
  font-size: 0.875rem;
  color: #333333;
}
.ca-header-address-info .ca-header-address-btn .ca-header-address-text .ca-header-postcode {
  font-weight: 500;
  color: #333333;
}
.ca-custom-estimate__shipping-address {
  padding: 1rem;
  border-bottom: 1px solid #eeeeee;
}
.ca-custom-estimate__shipping-address-button {
  margin-bottom: 0.75rem;
}
.ca-custom-estimate__shipping-address-button .ca-address-book-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  background: #ffffff;
  border: 1px solid #d9d9d9;
  border-radius: 0.25rem;
  cursor: pointer;
  font-size: 0.875rem;
  transition: 0.2s ease-in-out;
}
.ca-custom-estimate__shipping-address-button .ca-address-book-btn:hover {
  background: #fafafa;
  border-color: #333333;
}
.ca-custom-estimate__shipping-address-button .ca-address-book-btn .material-symbols-rounded {
  font-size: 1.2rem;
  color: #333333;
}
.ca-custom-estimate__shipping-address-info {
  font-size: 0.875rem;
  color: #333333;
  line-height: 1.4;
}
.ca-custom-estimate__shipping-address-info .ca-current-postcode, .ca-custom-estimate__shipping-address-info .ca-current-address {
  margin-bottom: 0.25rem;
}
.ca-custom-estimate__shipping-address-info .ca-current-postcode span, .ca-custom-estimate__shipping-address-info .ca-current-address span {
  font-weight: 500;
  color: #333333;
}
.ca-custom-estimate__action-buttons {
  padding: 1rem;
}
.ca-custom-estimate__action-buttons-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.ca-custom-estimate__action-buttons-row:first-child {
  margin-bottom: 0.75rem;
}
.ca-custom-estimate__action-buttons-row button {
  padding: 0.75rem 1rem;
  border: 1px solid #d9d9d9;
  border-radius: 0.25rem;
  background: #ffffff;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: 0.2s ease-in-out;
}
.ca-custom-estimate__action-buttons-row button:hover {
  background: #fafafa;
  border-color: #333333;
}
.ca-custom-estimate__action-buttons-row button.ca-custom-estimate__right-header__save-btn {
  background: #333333;
  color: #ffffff;
  border-color: #333333;
}
.ca-custom-estimate__action-buttons-row button.ca-custom-estimate__right-header__save-btn:hover {
  background: #1a1a1a;
}
.ca-custom-estimate__action-buttons-row button.ca-custom-estimate__right-header__add-all-btn {
  background: #4CAF50;
  color: #ffffff;
  border-color: #4CAF50;
}
.ca-custom-estimate__action-buttons-row button.ca-custom-estimate__right-header__add-all-btn:hover {
  background: #3d8b40;
}
.ca-custom-estimate__cart-summary {
  padding: 1rem;
  border-top: 1px solid #eeeeee;
}
.ca-custom-estimate__cart-summary__shipping, .ca-custom-estimate__cart-summary__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}
.ca-custom-estimate__cart-summary__shipping span:last-child, .ca-custom-estimate__cart-summary__total span:last-child {
  font-weight: 500;
  color: #333333;
}
.ca-custom-estimate__cart-summary__total {
  font-weight: 500;
  font-size: 1rem;
  border-top: 1px solid #eeeeee;
  padding-top: 0.5rem;
  margin-bottom: 0;
}
.ca-custom-estimate__cart-summary__total span:last-child {
  color: #dc3545;
  font-size: 1.125rem;
}
.ca-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: none;
}
.ca-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(2px);
}
.ca-modal__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #ffffff;
  border-radius: 0.625rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.ca-modal__header {
  display: flex;
  align-items: center;
  padding: 1rem;
  border-bottom: 1px solid #eeeeee;
  background: #fafafa;
}
.ca-modal__header .ca-modal__back {
  background: none;
  border: none;
  padding: 0.5rem;
  margin-right: 0.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: #333333;
}
.ca-modal__header .ca-modal__back:hover {
  color: #333333;
}
.ca-modal__header .ca-modal__title {
  flex: 1;
  margin: 0;
  font-size: 1.125rem;
  font-weight: 700;
  color: #111111;
}
.ca-modal__header .ca-modal__close {
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  font-size: 1.25rem;
  color: #333333;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.25rem;
}
.ca-modal__header .ca-modal__close:hover {
  background: #eeeeee;
  color: #111111;
}
.ca-modal__body {
  flex: 1;
  overflow-y: auto;
  min-height: 0;
}
.ca-address-list {
  padding: 1rem;
}
.ca-address-list__loading {
  text-align: center;
  padding: 2rem;
  color: #333333;
}
.ca-address-list__loading .ca-spinner {
  width: 32px;
  height: 32px;
  border: 3px solid #eeeeee;
  border-top: 3px solid #333333;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 0.75rem;
}
.ca-address-list__empty {
  text-align: center;
  padding: 2rem;
  color: #333333;
}
.ca-address-list__empty .material-symbols-rounded {
  font-size: 48px;
  color: #999999;
  margin-bottom: 0.75rem;
}
.ca-address-list__empty p {
  margin: 0.5rem 0;
}
.ca-address-list__empty p.ca-text-muted {
  color: #666666;
  font-size: 0.875rem;
}
.ca-address-list__item {
  border: 1px solid #eeeeee;
  border-radius: 0.625rem;
  padding: 1rem;
  margin-bottom: 0.75rem;
  transition: 0.2s ease-in-out;
}
.ca-address-list__item:hover {
  border-color: #d9d9d9;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.ca-address-list__item--default {
  border-color: #333333;
  background: rgba(51, 51, 51, 0.02);
}
.ca-address-list__item:last-child {
  margin-bottom: 0;
}
.ca-address-list__info {
  margin-bottom: 0.75rem;
}
.ca-address-list__info h4 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #111111;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.ca-address-list__info p {
  margin: 0.25rem 0;
  color: #333333;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.ca-address-list__info p .material-symbols-rounded {
  font-size: 1.2rem;
  color: #666666;
}
.ca-address-list__actions {
  display: flex;
  gap: 0.5rem;
}
.ca-address-list__actions .ca-btn {
  flex: 1;
  padding: 0.5rem 0.75rem;
  border: 1px solid #d9d9d9;
  border-radius: 0.25rem;
  background: #ffffff;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 500;
  transition: 0.2s ease-in-out;
}
.ca-address-list__actions .ca-btn--secondary {
  color: #222222;
}
.ca-address-list__actions .ca-btn--secondary:hover {
  background: #fafafa;
  border-color: #999999;
}
.ca-address-list__actions .ca-btn--primary {
  background: #333333;
  color: #ffffff;
  border-color: #333333;
}
.ca-address-list__actions .ca-btn--primary:hover {
  background: #1a1a1a;
  border-color: #1a1a1a;
}
.ca-address-list__add-button {
  margin-top: 1rem;
  padding: 0 1rem;
}
.ca-address-list__add-button .ca-add-address {
  width: 100%;
  padding: 1rem;
  background-color: rgba(255, 255, 255, 0.7);
  color: #111111;
  border: 2px dashed #999999;
  border-radius: 0.625rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.ca-address-list__add-button .ca-add-address:hover {
  background-color: rgba(255, 255, 255, 0.9);
  border-color: #333333;
  transform: translateY(-2px);
}
.ca-address-list__add-button .ca-add-address .material-symbols-rounded {
  font-size: 1.25rem;
}
.ca-badge {
  display: inline-block;
  padding: 2px 8px;
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 0.25rem;
}
.ca-badge--primary {
  background: #333333;
  color: #ffffff;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
