@charset "UTF-8";
/**
 * 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
 */
.ca-product-title-with-like {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}
.ca-product-title-with-like .ca-subtitle-4 {
  flex: 1;
  margin: 0;
}
.ca-product-title-with-like .ca-product-like-wrapper {
  flex-shrink: 0;
  margin-top: 0.25rem;
}
.ca-product-title-with-like .ca-product-like-wrapper .ca-product-orderbox-like .ca-like-button__btn {
  min-width: 60px;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
}
.ca-product-title-with-like .ca-product-like-wrapper .ca-product-orderbox-like .ca-like-button__icon {
  font-size: 1.125rem;
}
@media (max-width: 768px) {
  .ca-product-title-with-like {
    gap: 0.75rem;
  }
  .ca-product-title-with-like .ca-product-like-wrapper .ca-product-orderbox-like .ca-like-button__btn {
    min-width: 50px;
    padding: 0.5rem 0.75rem;
    font-size: 0.75rem;
  }
  .ca-product-title-with-like .ca-product-like-wrapper .ca-product-orderbox-like .ca-like-button__icon {
    font-size: 1rem;
  }
}
.ca-product-cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8%;
}
@media (max-width: 992px) {
  .ca-product-cat-grid {
    grid-template-columns: repeat(max(2, 3), 1fr);
  }
}
@media (max-width: 768px) {
  .ca-product-cat-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: calc($gap * 0.75);
  }
}
@media (max-width: 480px) {
  .ca-product-cat-grid {
    grid-template-columns: 1fr;
    gap: calc($gap * 0.5);
  }
}
@media (max-width: 768px) {
  .ca-product-cat-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 4%;
  }
}
.ca-product-cat-grid .ca-product-cat-link {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border-radius: 0.75rem;
}
.ca-product-cat-grid .ca-product-cat-link:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.ca-product-cat-grid .ca-product-cat-img {
  mix-blend-mode: multiply;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.ca-product-cat-title {
  padding: 0.75rem;
  text-align: center;
  font-size: 1rem;
}
.ca-product-category-sections-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding: 1.25rem 0;
}
@media (max-width: 768px) {
  .ca-product-category-sections-wrapper {
    gap: 2rem;
    padding: 1rem 0;
  }
}
.ca-product-category-section {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
}
.ca-product-category-section:not(:first-child) {
  border-top: 1px solid #eeeeee;
  padding-top: 2.5rem;
  margin-top: 1.25rem;
}
@media (max-width: 768px) {
  .ca-product-category-section:not(:first-child) {
    padding-top: 2rem;
    margin-top: 1rem;
  }
}
@media (max-width: 768px) {
  .ca-product-category-section {
    gap: 1rem;
  }
}
.ca-product-category-section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111111;
  margin: 0;
  padding-bottom: 0.75rem;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
@media (max-width: 768px) {
  .ca-product-category-section-title {
    font-size: 1.25rem;
    padding-bottom: 0.75rem;
    letter-spacing: 0.3px;
  }
}
@media (max-width: 480px) {
  .ca-product-category-section-title {
    font-size: 1.125rem;
    padding-bottom: 0.5rem;
    letter-spacing: 0.2px;
  }
}
.ca-product-category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 0;
}
@media (max-width: 992px) {
  .ca-product-category-grid {
    grid-template-columns: repeat(max(2, 2), 1fr);
  }
}
@media (max-width: 768px) {
  .ca-product-category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: calc($gap * 0.75);
  }
}
@media (max-width: 480px) {
  .ca-product-category-grid {
    grid-template-columns: 1fr;
    gap: calc($gap * 0.5);
  }
}
@media (max-width: 992px) {
  .ca-product-category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}
@media (max-width: 768px) {
  .ca-product-category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}
.ca-product-category-item {
  display: flex;
  flex-direction: row;
  border-radius: 0.75rem;
  overflow: hidden;
  gap: 1.25rem;
  transition: box-shadow 0.2s ease-in-out;
}
.ca-product-category-item:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .ca-product-category-item {
    flex-direction: column;
    gap: 0;
  }
}
.ca-product-category-item-image-wrapper {
  width: 50%;
  height: auto;
  aspect-ratio: 1;
  background-color: #fafafa;
}
@supports not (aspect-ratio: 1) {
  .ca-product-category-item-image-wrapper {
    position: relative;
  }
  .ca-product-category-item-image-wrapper::before {
    content: "";
    display: block;
    padding-bottom: 100%;
  }
  .ca-product-category-item-image-wrapper > * {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 768px) {
  .ca-product-category-item-image-wrapper {
    width: 100%;
    aspect-ratio: 1;
    height: auto;
  }
  @supports not (aspect-ratio: 1) {
    .ca-product-category-item-image-wrapper {
      position: relative;
    }
    .ca-product-category-item-image-wrapper::before {
      content: "";
      display: block;
      padding-bottom: 100%;
    }
    .ca-product-category-item-image-wrapper > * {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
.ca-product-category-item-image-wrapper a {
  display: block;
  width: 100%;
  height: 100%;
}
.ca-product-category-item-image {
  width: 100%;
  height: 100% !important;
  object-fit: contain;
  display: block;
}
.ca-product-category-item-content {
  width: 50%;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  .ca-product-category-item-content {
    width: 100%;
    padding: 1rem;
  }
}
.ca-product-category-item-title {
  margin: 0 0 0.75rem 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.2;
}
.ca-product-category-item-title a {
  color: inherit;
  text-decoration: none;
}
.ca-product-category-item-title a:hover {
  color: #111111;
}
@media (max-width: 768px) {
  .ca-product-category-item-title {
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }
}
.ca-product-category-child-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
  font-size: 0.875rem;
  color: #d9d9d9;
  line-height: 1.6;
}
.ca-product-category-child-list li {
  margin-bottom: 0.25rem;
}
.ca-product-category-child-list li:last-child {
  margin-bottom: 0;
}
.ca-product-category-child-link {
  color: inherit;
  text-decoration: none;
}
.ca-product-category-child-link:hover {
  color: #111111;
  text-decoration: underline;
}
.ca-product-category-view-all-link {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  margin-top: auto;
  padding-top: 0.75rem;
}
.ca-product-category-view-all-link:hover {
  color: #111111;
  text-decoration: underline;
}
.ca-product-view-switcher {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.ca-view-switcher-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 9999px;
  border: 1px solid #d9d9d9;
  background-color: #ffffff;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, color 0.2s ease-in-out;
}
.ca-view-switcher-btn .material-symbols-rounded {
  font-size: 1.25rem;
  color: #666666;
  transition: color 0.2s ease-in-out;
}
.ca-view-switcher-btn:hover {
  border-color: #999999;
  background-color: #fafafa;
}
.ca-view-switcher-btn:hover .material-symbols-rounded {
  color: #333333;
}
.ca-view-switcher-btn.active {
  border-color: #111111;
  background-color: #111111;
}
.ca-view-switcher-btn.active .material-symbols-rounded {
  color: #ffffff;
}
.ca-product-repeater {
  display: grid !important;
  align-items: stretch;
  grid-template-columns: repeat(var(--ca-grid-columns, 4), minmax(50px, 1fr));
  grid-column-gap: var(--ca-grid-gap, 1.25rem);
  grid-row-gap: var(--ca-grid-gap, 1.25rem);
  position: relative;
  padding-bottom: 4rem;
}
@media (max-width: 992px) {
  .ca-product-repeater {
    grid-template-columns: repeat(var(--ca-grid-columns-tablet, 3), minmax(50px, 1fr));
    grid-column-gap: calc(var(--ca-grid-gap, $grid-gap) / 2);
    grid-row-gap: calc(var(--ca-grid-gap, $grid-gap) / 2);
  }
}
@media (max-width: 768px) {
  .ca-product-repeater {
    grid-template-columns: repeat(var(--ca-grid-columns-mobile, 2), minmax(50px, 1fr));
    grid-column-gap: calc(var(--ca-grid-gap, $grid-gap) / 2);
    grid-row-gap: calc(var(--ca-grid-gap, $grid-gap) / 2);
  }
}
@media (max-width: 480px) {
  .ca-product-repeater {
    grid-template-columns: repeat(var(--ca-grid-columns-mobile, 2), minmax(50px, 1fr));
    grid-column-gap: calc(var(--ca-grid-gap, $grid-gap) / 2);
    grid-row-gap: calc(var(--ca-grid-gap, $grid-gap) / 2);
  }
}
.ca-product-repeater[data-view-mode="list"] {
  grid-template-columns: 1fr;
  gap: 1rem;
  padding-bottom: 2.5rem;
}
.ca-product-repeater[data-view-mode="list"] .ca-product-card {
  border-radius: 0;
  border-bottom: 1px solid #eeeeee;
  padding-bottom: 1rem;
}
.ca-product-repeater[data-view-mode="list"] .ca-product-card:hover {
  box-shadow: none;
  background-color: #fafafa;
}
.ca-product-repeater[data-view-mode="list"] .ca-product-card-link {
  flex-direction: row;
  align-items: flex-start;
  gap: 1.25rem;
}
.ca-product-repeater[data-view-mode="list"] .ca-product-card-t {
  width: 165px;
  height: 120px;
  padding-bottom: 0;
  flex-shrink: 0;
  border-radius: 0.5rem;
  overflow: hidden;
}
@media (max-width: 768px) {
  .ca-product-repeater[data-view-mode="list"] .ca-product-card-t {
    width: 120px;
    height: 100px;
  }
}
.ca-product-repeater[data-view-mode="list"] .ca-product-card-img {
  transform: none;
}
.ca-product-repeater[data-view-mode="list"] .ca-product-card-img:hover {
  transform: scale(1.05);
}
.ca-product-repeater[data-view-mode="list"] .ca-product-card-b {
  flex: 1;
  padding: 0;
  gap: 0.5rem;
}
.ca-product-repeater[data-view-mode="list"] .ca-product-card-title {
  font-size: 1.125rem;
  line-height: 1.6;
  -webkit-line-clamp: 2;
}
@media (max-width: 768px) {
  .ca-product-repeater[data-view-mode="list"] .ca-product-card-title {
    font-size: 1rem;
    line-height: 1.5;
  }
}
.ca-product-repeater-slide {
  display: flex !important;
  align-items: stretch;
  position: relative;
}
.ca-product-card {
  background-color: #ffffff;
  border-radius: 0.75rem;
  overflow: hidden;
  transition: box-shadow 0.2s ease-in-out, transform 0.2s ease-in-out;
  display: flex;
  position: relative;
  width: 100%;
}
.ca-product-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}
.ca-product-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.ca-product-card:hover .ca-product-card-img {
  transform: scale(1.05);
}
.ca-product-card-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  gap: 0.25rem;
}
.ca-product-card-t {
  width: 100%;
  height: 0;
  padding-bottom: 80%;
  position: relative;
  overflow: hidden;
  border-radius: 0.75rem;
}
.ca-product-card-img {
  width: 100% !important;
  height: 100% !important;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
  mix-blend-mode: multiply;
  transition: transform 0.2s ease-in-out;
}
.ca-product-card-title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  color: #111111;
  font-size: 1rem;
  font-weight: 400;
  text-align: left;
  line-height: 1.5;
  word-break: break-all;
  word-wrap: break-word;
  white-space: normal;
}
.ca-product-card-b {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 0.25rem;
  padding: 0.5rem;
}
.ca-product-price-box {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.ca-product-price-display {
  color: #111111;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  line-height: 1.5;
}
.ca-product-price-t {
  display: flex;
  gap: 10;
}
.ca-product-price-t-l {
  text-decoration: line-through;
  color: #666666;
}
.ca-product-price-t-r {
  color: #dc3545;
}
.ca-product-price-b {
  display: flex;
}
.ca-product-price-b-l {
  color: #000000;
}
.ca-product-tag-box {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
}
.ca-product-tag-logo {
  width: 28px;
  height: 28px;
  object-fit: cover;
  object-position: center center;
}
.ca-product-tag-new {
  font-size: 0.75rem;
  color: #0073aa;
  font-weight: 500;
  background-color: rgba(0, 115, 170, 0.1);
  padding: 0.125rem 0.25rem;
  border-radius: 0.25rem;
  text-transform: uppercase;
}
.ca-product-tag-best {
  font-size: 0.75rem;
  color: #4CAF50;
  font-weight: 500;
  padding: 0.125rem 0.25rem;
  text-transform: uppercase;
  border-radius: 0.25rem;
  background-color: rgba(76, 175, 80, 0.1);
}
.ca-product-tag-only {
  font-size: 0.75rem;
  color: #dc3545;
  font-weight: 500;
  text-transform: uppercase;
  padding: 0.125rem 0.25rem;
  border-radius: 0.25rem;
  background-color: rgba(220, 53, 69, 0.1);
}
.ca-product-tag-express {
  background-color: rgba(0, 115, 170, 0.2);
  padding: 0.125rem 0.25rem;
  border-radius: 0.25rem;
  color: #002e44;
  font-weight: 500;
  font-size: 0.75rem;
}
.ca-product-tag-express-icon {
  font-size: 0.6rem;
}
.ca-product-slide-viewer {
  width: 100%;
  height: 100%;
  position: relative;
}
#ca-product-main-slider {
  margin-bottom: 1rem;
  overflow: hidden;
}
#ca-product-main-slider .splide__slide {
  height: 0;
  padding-bottom: 75%;
  border-radius: 0.75rem;
  overflow: hidden;
}
#ca-product-main-slider .splide__track {
  padding-bottom: 0;
  border-radius: 0.75rem;
  overflow: hidden;
}
#ca-product-main-slider .ca-product-slide-img {
  width: 100% !important;
  height: 100% !important;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  cursor: pointer;
}
#ca-product-thumbnail-slider .splide__track {
  padding: 0.5rem 0;
}
#ca-product-thumbnail-slider .splide__list {
  max-height: 100px;
}
#ca-product-thumbnail-slider .splide__slide {
  opacity: 0.65;
  border: 3px solid transparent;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: opacity 0.2s ease-in-out, border-color 0.2s ease-in-out, transform 0.2s ease-in-out;
  overflow: hidden;
}
#ca-product-thumbnail-slider .splide__slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.25rem;
  cursor: pointer;
  aspect-ratio: 1;
}
@supports not (aspect-ratio: 1) {
  #ca-product-thumbnail-slider .splide__slide img {
    position: relative;
  }
  #ca-product-thumbnail-slider .splide__slide img::before {
    content: "";
    display: block;
    padding-bottom: 100%;
  }
  #ca-product-thumbnail-slider .splide__slide img > * {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
#ca-product-thumbnail-slider .splide__slide.is-active {
  opacity: 1;
  border: 3px solid #111111;
  transform: scale(1.02) translateY(-2px);
}
.ca-product-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1050;
  display: none;
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}
.ca-product-lightbox.active {
  display: flex;
  opacity: 1;
}
.ca-product-lightbox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  cursor: pointer;
}
.ca-product-lightbox-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 4rem 1.25rem 1.25rem;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .ca-product-lightbox-content {
    padding: 80px 0.75rem 0.75rem;
  }
}
.ca-product-lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #ffffff;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  padding: 0;
  border-radius: 9999px;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
  z-index: 1070;
}
.ca-product-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
}
.ca-product-lightbox-close .material-symbols-rounded {
  font-size: 1.8rem;
}
@media (max-width: 768px) {
  .ca-product-lightbox-close {
    top: 1rem;
    right: 1rem;
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }
  .ca-product-lightbox-close .material-symbols-rounded {
    font-size: 1.5rem;
  }
}
.ca-product-lightbox-slider-container {
  width: 100%;
  height: 100%;
  max-width: 90vw;
  max-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media (max-width: 768px) {
  .ca-product-lightbox-slider-container {
    max-width: 95vw;
    max-height: 70vh;
  }
}
#ca-product-lightbox-slider {
  width: 100%;
  height: 100%;
}
#ca-product-lightbox-slider .splide__track {
  height: 100%;
}
#ca-product-lightbox-slider .splide__list {
  height: 100%;
}
#ca-product-lightbox-slider .splide__slide {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.ca-product-lightbox-img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 0.5rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}
.ca-lightbox-arrows .ca-lightbox-arrow {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  padding: 0;
  border-radius: 9999px;
  transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, opacity 0.2s ease-in-out, transform 0.2s ease-in-out;
  opacity: 0.8;
}
.ca-lightbox-arrows .ca-lightbox-arrow:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  opacity: 1;
  transform: scale(1.1);
}
.ca-lightbox-arrows .ca-lightbox-arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.ca-lightbox-arrows .ca-lightbox-arrow svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}
@media (max-width: 768px) {
  .ca-lightbox-arrows .ca-lightbox-arrow {
    width: 50px;
    height: 50px;
  }
  .ca-lightbox-arrows .ca-lightbox-arrow svg {
    width: 20px;
    height: 20px;
  }
}
.ca-lightbox-arrows .ca-lightbox-arrow--prev {
  left: 1.25rem;
}
@media (max-width: 768px) {
  .ca-lightbox-arrows .ca-lightbox-arrow--prev {
    left: 0.75rem;
  }
}
.ca-lightbox-arrows .ca-lightbox-arrow--next {
  right: 1.25rem;
}
@media (max-width: 768px) {
  .ca-lightbox-arrows .ca-lightbox-arrow--next {
    right: 0.75rem;
  }
}
.ca-product-lightbox-counter {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.7);
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  backdrop-filter: blur(10px);
  z-index: 1070;
}
@media (max-width: 768px) {
  .ca-product-lightbox-counter {
    bottom: 1.25rem;
    font-size: 0.75rem;
    padding: 0.5rem 0.75rem;
  }
}
.ca-product-description-slider {
  margin: 1.25rem 0;
}
.ca-product-description-slider .splide__track {
  border-radius: 0.5rem;
  overflow: hidden;
}
.ca-product-description-slider .splide__slide {
  display: flex;
  align-items: center;
  justify-content: center;
}
.ca-product-description-slider .ca-product-desc-slide-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  max-height: 500px;
}
.ca-product-description-slider .splide__arrow {
  background: #ffffff;
  color: white;
  opacity: 1;
  border: #666666 1px solid;
  width: 24px;
  height: 24px;
  padding: 0.25rem;
}
.ca-product-description-slider .splide__arrow svg {
  width: 100%;
  height: 100%;
}
.ca-product-description-slider .splide__arrow:hover {
  opacity: 1;
}
.ca-product-description-slider .splide__pagination {
  bottom: -1.25rem;
}
.ca-product-description-slider .splide__pagination__page {
  background: #999999;
}
.ca-product-description-slider .splide__pagination__page.is-active {
  background: #333333;
}
.ca-product-order-box {
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 1.25rem;
  width: 100%;
  border: 1px solid #666666;
  border-radius: 0.75rem;
  gap: 0.75rem;
}
.ca-product-order-box-fixed {
  position: fixed;
  width: calc(1400px * 0.35 - 27px);
  z-index: 9;
  top: 10%;
}
.ca-product-add-to-cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 500;
  line-height: 1.5;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  text-decoration: none;
  color: #333333;
  background-color: transparent;
  border-color: currentColor;
  padding: 1rem 1.5rem;
  font-size: 1.125rem;
  border-radius: 0.75rem;
  width: 100%;
  text-align: center;
  font-size: 1.25rem;
}
.ca-product-add-to-cart:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.ca-product-add-to-cart:hover:not(:disabled) {
  background-color: rgba(51, 51, 51, 0.1);
}
.ca-product-add-to-cart:hover {
  background-color: #000000;
  color: #ffffff;
}
.ca-product-add-to-checkout {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 500;
  line-height: 1.5;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  text-decoration: none;
  color: #ffffff;
  background-color: #333333;
  padding: 1rem 1.5rem;
  font-size: 1.125rem;
  border-radius: 0.75rem;
  width: 100%;
  text-align: center;
  font-size: 1.25rem;
}
.ca-product-add-to-checkout:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.ca-product-add-to-checkout:hover:not(:disabled) {
  background-color: #222222;
}
.ca-product-add-to-checkout:active:not(:disabled) {
  background-color: #111111;
}
.ca-product-add-to-checkout:hover {
  background-color: #000000;
}
.ca-product-options-section {
  width: 100%;
}
.ca-product-action-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .ca-product-action-wrapper {
    display: none;
  }
}
.ca-product-action-buttons {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.ca-product-action-buttons .ca-like-button {
  flex: 1;
}
.ca-product-action-buttons .ca-like-button .ca-like-button__btn {
  width: 100%;
  height: 100%;
  padding: 10px;
  border-radius: 10px;
  font-size: 1.25rem;
  border: 1px solid #202020;
  background-color: #ffffff;
  color: #202020;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.ca-product-action-buttons .ca-like-button .ca-like-button__btn:hover {
  background-color: #000000;
  color: #ffffff;
  border-color: #000000;
}
.ca-product-action-buttons .ca-like-button .ca-like-button__btn.liked {
  background-color: #ff4757;
  border-color: #ff4757;
  color: #ffffff;
}
.ca-product-action-buttons .ca-like-button .ca-like-button__btn.liked:hover {
  background-color: #ff3742;
  border-color: #ff3742;
}
.ca-product-action-buttons .ca-like-button .ca-like-button__icon {
  font-size: 1.4rem;
}
.ca-product-action-buttons .ca-like-button .ca-like-button__count {
  font-weight: 500;
}
.ca-product-inquiry-section {
  width: 100%;
  display: flex;
  flex-direction: row;
}
.ca-product-channel-talk-inquiry {
  width: 100%;
  background-color: #e9b042cc;
  color: #333333;
  text-align: center;
  padding: 10px;
  cursor: pointer;
  border-radius: 10px;
  border: 1px solid #333333;
  font-size: 1rem;
  transition: background-color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ca-product-channel-talk-inquiry .material-symbols-rounded {
  margin-right: 3px;
  font-size: 1.4rem;
  font-variation-settings: "FILL" 1, "wght" 600;
}
.ca-furniture-notice {
  width: 100%;
  text-align: center;
  padding: 10px;
  background-color: #f6f6f6;
  border: 1px solid #d9d9d9;
  border-radius: 5px;
  margin-top: 20px;
  margin-bottom: 10px;
}
.ca-shipping-payment-notice {
  color: #007cba;
  font-weight: 500;
}
.ca-furniture-notice-text {
  font-size: 0.875rem;
  color: #333;
}
.ca-product-naver-review-button {
  background-color: #07AA39;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
}
.ca-product-common-box {
  position: relative;
  max-height: 500px;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding-bottom: 50px;
}
.ca-product-common-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 300px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), white);
  pointer-events: none;
}
.ca-product-common-expand-btn, .ca-product-common-fold-btn {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 80px;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  border: 1px solid #707070;
  cursor: pointer;
  z-index: 10;
}
.ca-product-common-expand-btn {
  display: flex;
}
.ca-product-common-fold-btn {
  display: none;
}
.ca-product-common-box.expanded {
  max-height: none;
  padding-bottom: 200px;
}
.ca-product-common-box.expanded .ca-product-common-overlay {
  display: none;
}
.ca-product-common-box.expanded .ca-product-common-expand-btn {
  display: none;
}
.ca-product-common-box.expanded .ca-product-common-fold-btn {
  display: flex;
}
.se-oglink .ca-product-description-bookmark {
  display: flex;
  flex-direction: column;
  width: 70%;
  margin: 0 auto;
  padding: 10px;
  border: 1px solid #d9d9d9;
}
.se-oglink .ca-product-description-bookmark img {
  width: 100%;
  max-height: 290px;
  object-fit: cover;
}
.se-oglink .ca-product-description-bookmark-title {
  width: 80%;
  font-size: 1.125rem;
  font-weight: 600;
  font-family: "Pretendard";
  line-height: 1.7rem;
  letter-spacing: -1px;
  word-break: keep-all;
  margin-bottom: 2px;
}
.se-oglink .ca-product-description-bookmark-url {
  font-size: 0.875rem;
  font-weight: 400;
  font-family: "Pretendard";
  line-height: 1rem;
  letter-spacing: -1px;
  color: #bbbbbb;
  word-break: keep-all;
  margin-bottom: 20px;
}
.se-oembed .ca-product-description-embed {
  height: 0;
  padding-bottom: 56.25% !important;
  position: relative;
}
.se-oembed .ca-product-description-embed iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.se-oembed .ca-product-description-embed--shorts {
  padding-bottom: 177.78% !important;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .se-oembed .ca-product-description-embed--shorts {
    max-width: 100%;
  }
}
.se-oembed .ca-product-description-embed--shorts iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.ca-product-keyword-tag-box {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  width: 100%;
  font-size: 0.875rem;
  font-weight: 500;
}
.ca-product-keyword-tag-span {
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  padding: 2px 6px;
  text-wrap: nowrap;
}
/* 상품 리뷰 스타일 */
.ca-product-reviews {
  margin-bottom: 40px;
}
.ca-product-reviews-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.ca-reviews-average {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.ca-reviews-average-rating {
  font-size: 1.5rem;
  font-weight: 600;
  margin-right: 0.25rem;
}
.ca-reviews-stars {
  display: flex;
  margin: 0.5rem 0;
}
.ca-reviews-count {
  color: #666666;
  font-size: 0.875rem;
}
#ca-view-all-reviews {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 500;
  line-height: 1.5;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  text-decoration: none;
  color: #333333;
  background-color: #ffffff;
  border-color: #d9d9d9;
  padding: 0.75rem 1.25rem;
  font-size: 1rem;
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
  color: #333333;
}
#ca-view-all-reviews:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
#ca-view-all-reviews:hover:not(:disabled) {
  background-color: #f6f6f6;
}
#ca-view-all-reviews:hover {
  background-color: #f6f6f6;
}
/* 리뷰 아이템 스타일 */
.ca-product-reviews-list {
  width: 100%;
}
.ca-review-item {
  display: flex;
  padding: 1rem 0;
  border-bottom: 1px solid #eeeeee;
}
.ca-review-content-wrapper {
  flex: 0 0 80%;
  padding-right: 1rem;
}
.ca-review-image-wrapper {
  flex: 0 0 20%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}
.ca-review-image {
  max-width: 100%;
  border-radius: 0.25rem;
}
.ca-review-rating {
  display: flex;
  margin-bottom: 0.5rem;
}
.ca-review-meta {
  display: flex;
  margin-bottom: 0.5rem;
  flex-direction: row;
  align-items: center;
}
.ca-review-author {
  margin-right: 0.75rem;
  font-weight: 500;
}
.ca-review-date {
  color: #666666;
}
.ca-naver-review-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  display: inline-flex;
  width: 16px;
  height: 16px;
  margin-left: 0.5rem;
  background-color: #07AA39;
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 900;
  border-radius: 3px;
  line-height: 1;
}
.ca-review-text {
  line-height: 1.5;
  word-break: break-word;
}
/* 별점 스타일 */
.ca-star-outer {
  position: relative;
  display: inline-block;
  margin-right: 0.125rem;
}
.ca-star-outer.small {
  transform: scale(0.85);
  transform-origin: left;
}
.ca-star-inner {
  position: absolute;
  top: 0;
  left: 0;
  white-space: nowrap;
  overflow: hidden;
  width: 0;
}
.ca-star-t {
  color: #e9b042;
}
.ca-star-b {
  color: #d9d9d9;
}
/* 모달 스타일 */
.ca-modal {
  display: none;
  position: fixed;
  z-index: 1050;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  overflow: auto;
}
.ca-modal-content {
  background-color: #ffffff;
  margin: 5% auto;
  padding: 1.5rem;
  width: 80%;
  max-width: 800px;
  border-radius: 0.5rem;
  position: relative;
  max-height: 80vh;
  overflow-y: auto;
}
.ca-reviews-modal-content {
  padding-bottom: 1rem;
}
.ca-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  cursor: pointer;
}
.ca-reviews-modal-list {
  margin-top: 1rem;
}
.ca-reviews-modal-list .ca-review-item {
  padding: 1rem;
  margin-bottom: 0.5rem;
  background-color: #fafafa;
  border-radius: 0.25rem;
  border-bottom: none;
}
/* 반응형 스타일 */
@media (max-width: 768px) {
  .ca-review-content-wrapper {
    flex: 0 0 70%;
  }
  .ca-review-image-wrapper {
    flex: 0 0 30%;
  }
  .ca-modal-content {
    width: 95%;
    margin: 10% auto;
  }
}
/* 썸네일 리뷰 스타일 */
.ca-product-thumbnail-review {
  display: flex;
  align-items: center;
}
.ca-thumbnail-review-stars {
  display: flex;
  margin-right: 0.25rem;
}
.ca-thumbnail-review-rating {
  font-size: 0.875rem;
  font-weight: 600;
  color: #111111;
  margin-right: 0.125rem;
}
.ca-thumbnail-review-count {
  font-size: 0.75rem;
  color: #666666;
}
/* 썸네일 리뷰용 별점 크기 조정 */
.ca-product-thumbnail-review .ca-star-outer.small {
  margin-right: 0;
}
.ca-product-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2.5rem;
  padding: 1.25rem 0;
  border-top: 1px solid #eeeeee;
}
.ca-product-pagination .page-numbers {
  display: inline-block;
  padding: 0.5rem 0.75rem;
  margin: 0 0.25rem;
  border: 1px solid #d9d9d9;
  border-radius: 0.25rem;
  color: #333333;
  text-decoration: none;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
}
.ca-product-pagination .page-numbers:hover, .ca-product-pagination .page-numbers.current {
  background-color: #000000;
  color: #ffffff;
  border-color: #000000;
}
.ca-product-pagination .page-numbers.current {
  font-weight: 600;
}
.ca-product-pagination .page-numbers.dots {
  border: none;
  padding: 0.5rem 0;
}
.ca-product-pagination .page-numbers.next, .ca-product-pagination .page-numbers.prev {
  font-weight: 500;
}
.ca-product-category-breadcrumb {
  margin-bottom: 1.25rem;
  font-size: 0.875rem;
  color: #666666;
}
.ca-product-category-breadcrumb a {
  color: #666666;
  text-decoration: none;
}
.ca-product-category-breadcrumb a:hover {
  color: #111111;
  text-decoration: underline;
}
.ca-product-category-breadcrumb span {
  color: #111111;
  font-weight: 600;
}
.ca-shop-sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ca-shop-sidebar-count {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
}
.ca-shop-sidebar-filter {
  display: flex;
  gap: 0.75rem;
}
.ca-shop-sidebar-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 500;
  line-height: 1.5;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  text-decoration: none;
  color: #ffffff;
  background-color: #333333;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  border-radius: 0.25rem;
  display: none;
  font-size: 1rem;
  font-weight: 500;
  gap: 0.25rem;
}
.ca-shop-sidebar-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.ca-shop-sidebar-button:hover:not(:disabled) {
  background-color: #222222;
}
.ca-shop-sidebar-button:active:not(:disabled) {
  background-color: #111111;
}
@media (max-width: 768px) {
  .ca-shop-sidebar-button {
    display: flex;
  }
}
.ca-shop-sidebar-button .material-symbols-rounded {
  font-size: 1.25rem;
}
.ca-product-filter-container {
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  .ca-product-filter-container {
    display: none;
    background-color: #ffffff;
    position: fixed;
    z-index: 1050;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 1.25rem;
    overflow-y: scroll;
    scrollbar-width: none;
  }
}
@media (max-width: 768px) {
  .ca-product-filter-container.active {
    display: flex;
  }
}
.ca-product-filter-close-button {
  display: none;
  cursor: pointer;
}
@media (max-width: 768px) {
  .ca-product-filter-close-button {
    display: flex;
    background-color: #ffffff;
    position: absolute;
    z-index: 9;
    top: 1.25rem;
    right: 1.25rem;
  }
}
.ca-product-filter-section {
  margin-bottom: 1.25rem;
}
.ca-product-filter-title {
  font-size: 1.125rem;
  color: #333333;
  margin-bottom: 0.75rem;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid #d9d9d9;
}
.ca-product-filter-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.ca-product-filter-letter.hidden {
  display: none;
}
.ca-product-filter-item {
  margin-bottom: 0.25rem;
}
.ca-product-filter-checkbox {
  margin-right: 0.25rem;
}
.ca-product-filter-label {
  font-size: 0.875rem;
  color: #333333;
  cursor: pointer;
}
.ca-product-filter-label:hover {
  color: #000000;
}
.ca-product-filter-item.hidden {
  display: none;
}
.ca-product-sort-select {
  width: 100%;
  box-shadow: none !important;
}
.ca-product-filter-search-term {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  border: 1px solid #d9d9d9;
  padding: 0.125rem 0.125rem 0.125rem 0.75rem;
  width: fit-content;
}
.ca-product-filter-search-term-remove {
  margin-left: 0.25rem;
  color: #666666;
  cursor: pointer;
  font-size: 1.3rem;
}
.ca-product-filter-search-term-remove:hover {
  color: #111111;
}
.ca-product-filter-category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}
.ca-product-filter-category-link {
  cursor: pointer;
  flex-grow: 1;
}
.ca-product-filter-category-item.active > .ca-product-filter-category-header > .ca-product-filter-category-link {
  font-weight: 900;
}
.ca-product-filter-subcategory-item.active > .ca-product-filter-category-header > .ca-product-filter-category-link {
  font-weight: 900;
}
.ca-product-filter-subcategory-list {
  margin-left: 1.25rem;
}
.ca-product-filter-category-submenu {
  display: none;
  padding-left: 1rem;
}
.ca-product-filter-checkbox:checked + .ca-product-filter-label {
  font-weight: 900;
}
.ca-product-filter-category-toggle {
  cursor: pointer;
  margin-left: 0.25rem;
  font-size: 1rem;
  transition: transform 0.2s ease-in-out;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.ca-product-filter-category-toggle-open {
  transform: rotate(-180deg);
}
.ca-product-filter-item.active > .ca-product-filter-category-header > .ca-product-filter-category-submenu {
  display: block;
}
.ca-product-filter-search {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: #333333;
  background-color: #ffffff;
  border: 1px solid #d9d9d9;
  border-radius: 0.5rem;
  transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  border-radius: 9999px;
  box-shadow: none !important;
}
.ca-product-filter-search:focus {
  outline: 0;
  border-color: #0073aa;
  box-shadow: 0 0 0 3px rgba(0, 115, 170, 0.1);
}
.ca-product-filter-search::placeholder {
  color: #999999;
}
.ca-product-filter-search:disabled {
  background-color: #f6f6f6;
  cursor: not-allowed;
}
.ca-product-filter-search:focus {
  border: 1px solid #333333;
}
.ca-product-filter-search:autofill, .ca-product-filter-search:autofill:hover, .ca-product-filter-search:autofill:focus, .ca-product-filter-search:autofill:active, .ca-product-filter-search:-webkit-autofill, .ca-product-filter-search:-webkit-autofill:hover, .ca-product-filter-search:-webkit-autofill:focus, .ca-product-filter-search:-webkit-autofill:active {
  transition: background-color 5000s ease-in-out 0s;
  -webkit-transition: background-color 9999s ease-out;
  -webkit-box-shadow: 0 0 0px 1000px #f6f6f6 inset !important;
  -webkit-text-fill-color: #333333 !important;
}
.ca-product-filter-brand-list {
  max-height: 350px;
  overflow-y: scroll;
}
.ca-product-filter-no-results.hidden {
  display: none;
}
.ca-product-filter-price-range {
  width: 100%;
  margin-top: 0.75rem;
}
.ca-product-filter-price-output {
  display: block;
  text-align: center;
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: #333333;
}
.ca-product-filter-show-more {
  background: none;
  border: none;
  color: #0073aa;
  cursor: pointer;
  font-size: 0.875rem;
  margin-top: 0.75rem;
  padding: 0.25rem 0.75rem;
  text-decoration: underline;
  display: block;
  width: 100%;
  text-align: left;
}
.ca-product-filter-show-more:hover {
  color: #005177;
}
@media (max-width: 768px) {
  .ca-product-filter-container {
    max-width: 100%;
  }
}
.ca-product-filter-price-container {
  position: relative;
  width: 100%;
  height: 150px;
}
.ca-product-filter-price-bars {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 80%;
  display: flex;
  align-items: flex-end;
  border-bottom: 3px solid #000000;
}
.ca-product-filter-price-bar {
  flex: 1;
  margin: 0 0.5px;
  background-color: #d9d9d9;
  position: relative;
}
.ca-product-filter-price-bar.selected {
  background-color: #111111;
}
.ca-product-filter-price-slider {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
}
.ca-product-filter-price-handle {
  position: absolute;
  bottom: -10px;
  width: 15px;
  height: 15px;
  background-color: #111111;
  border-radius: 9999px;
  cursor: pointer;
  transform: translateX(-50%);
  z-index: 2;
}
.ca-product-filter-price-values {
  margin-top: 0.75rem;
  text-align: center;
}
.ca-product-filter-price-range {
  font-weight: 700;
  font-size: 1rem;
}
.ca-product-filter-price-inputs {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: #fafafa;
  border-radius: 0.5rem;
  border: 1px solid #eeeeee;
}
.ca-product-filter-price-input-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.ca-product-filter-price-input-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #666666;
  margin-bottom: 0.125rem;
}
.ca-product-filter-price-input {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: #333333;
  background-color: #ffffff;
  border: 1px solid #d9d9d9;
  border-radius: 0.5rem;
  transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
}
.ca-product-filter-price-input:focus {
  outline: 0;
  border-color: #0073aa;
  box-shadow: 0 0 0 3px rgba(0, 115, 170, 0.1);
}
.ca-product-filter-price-input::placeholder {
  color: #999999;
}
.ca-product-filter-price-input:disabled {
  background-color: #f6f6f6;
  cursor: not-allowed;
}
.ca-product-filter-price-input:focus {
  outline: none;
  border-color: #111111;
  box-shadow: 0 0 0 2px rgba(17, 17, 17, 0.1);
}
.ca-product-filter-price-input::placeholder {
  color: #999999;
}
.ca-product-filter-price-input::-webkit-outer-spin-button, .ca-product-filter-price-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.ca-product-filter-price-input[type=number] {
  -moz-appearance: textfield;
}
.ca-product-filter-price-input-separator {
  font-size: 1rem;
  font-weight: 600;
  color: #666666;
  margin: 0 0.25rem;
  align-self: flex-end;
  padding-bottom: 0.5rem;
}
.ca-product-filter-price-apply {
  margin-top: 0.75rem;
  text-align: center;
}
.ca-product-filter-price-apply-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 500;
  line-height: 1.5;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  text-decoration: none;
  color: #ffffff;
  background-color: #333333;
  padding: 0.75rem 1.25rem;
  font-size: 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  min-width: 100px;
  transition: background-color 0.2s ease-in-out, transform 0.2s ease-in-out;
}
.ca-product-filter-price-apply-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.ca-product-filter-price-apply-btn:hover:not(:disabled) {
  background-color: #222222;
}
.ca-product-filter-price-apply-btn:active:not(:disabled) {
  background-color: #111111;
}
.ca-product-filter-price-apply-btn:hover {
  background-color: #333333;
  transform: translateY(-1px);
}
.ca-product-filter-price-apply-btn:active {
  transform: translateY(0);
}
.ca-product-filter-price-apply-btn:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(17, 17, 17, 0.2);
}
@media (max-width: 480px) {
  .ca-product-filter-price-inputs {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }
  .ca-product-filter-price-input-separator {
    align-self: center;
    padding-bottom: 0;
    transform: rotate(90deg);
  }
  .ca-product-filter-price-input-group {
    width: 100%;
  }
}
.ca-product-order-box .ca-product-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111111;
}
.ca-product-order-box .ca-product-options-box {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
}
.ca-product-order-box .ca-product-options-box-overlay {
  display: none;
}
.ca-product-order-box .ca-product-options-box-header {
  display: none;
}
.ca-product-order-box .ca-product-options-box-content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  overflow-y: visible;
  padding: 0;
}
.ca-product-order-box .ca-product-price-display {
  font-size: 1.25rem;
}
.ca-product-order-box .ca-price-final-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.ca-product-order-box .ca-adjust-btn {
  border: none;
  background: none;
  width: 25px;
  height: 25px;
  border-radius: 0.25rem;
  padding: 0.25rem;
  cursor: pointer;
}
.ca-product-order-box .ca-adjust-del-btn {
  border: none;
  background: none;
  width: 25px;
  height: 25px;
  border-radius: 0.25rem;
  padding: 0.25rem;
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  cursor: pointer;
}
.ca-product-order-box .ca-simple-item, .ca-product-order-box .ca-variation-item, .ca-product-order-box .ca-cross-sell-item {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
  gap: 1.25rem;
  background-color: #eeeeee;
  padding: 0.75rem;
  border-radius: 0.5rem;
  border: 1px solid #d9d9d9;
}
.ca-product-order-box .ca-simple-item-t, .ca-product-order-box .ca-variation-item-t, .ca-product-order-box .ca-cross-sell-item-t {
  display: flex;
  width: 100%;
}
.ca-product-order-box .ca-simple-item-b, .ca-product-order-box .ca-variation-item-b, .ca-product-order-box .ca-cross-sell-item-b {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
}
.ca-product-order-box .ca-simple-item-b-l, .ca-product-order-box .ca-variation-item-b-l, .ca-product-order-box .ca-cross-sell-item-b-l {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 0.25rem;
  background-color: #ffffff;
  border: 1px solid #d9d9d9;
}
.ca-product-order-box .ca-product-brand-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.ca-product-order-box .ca-product-brand-logo {
  max-height: 28px;
  width: 85px;
  object-fit: contain;
  padding: 0.25rem 0.5rem;
}
.ca-product-order-box .ca-product-brand-logo.ca-product-brand-logo-shadow {
  border-radius: 0.5rem;
  border: 1px solid silver;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
}
.ca-product-order-box .ca-product-brand-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: #333333;
  margin: 0;
  line-height: 1.4;
}
.ca-product-order-box .ca-product-brand-name .ca-product-brand-arrow {
  margin-left: 0.5rem;
  color: #999999;
  font-weight: 400;
  font-size: 0.85rem;
}
.ca-product-order-box .ca-product-breadcrumbs {
  font-size: 0.8rem;
  color: #666666;
  line-height: 1.6;
}
.ca-product-order-box .ca-product-breadcrumbs a {
  color: inherit;
  text-decoration: none;
}
.ca-product-order-box .ca-product-breadcrumbs a:hover {
  text-decoration: underline;
}
.ca-product-order-box .ca-product-breadcrumbs .ca-breadcrumb-separator {
  margin: 0 0.25rem;
  color: #999999;
}
.ca-product-order-box .ca-product-brand-info-link {
  text-decoration: none;
  display: block;
}
.ca-product-order-box .ca-product-brand-info-link:hover .ca-product-brand-name {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .ca-product-order-box .ca-product-options-box-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease-in-out, visibility 0.3s ease-in-out;
  }
  .ca-product-order-box .ca-product-options-box-overlay.active {
    display: block;
    opacity: 1;
    visibility: visible;
  }
  .ca-product-order-box .ca-product-options-box {
    display: flex;
    flex-direction: column;
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    max-height: 70vh;
    background-color: #ffffff;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    z-index: 1050;
    transition: bottom 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
  }
  .ca-product-order-box .ca-product-options-box.active {
    bottom: 0;
  }
  .ca-product-order-box .ca-product-options-box-header {
    display: flex;
    position: sticky;
    top: 0;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1.25rem;
    background-color: #ffffff;
    border-bottom: 1px solid #f6f6f6;
    z-index: 10;
  }
  .ca-product-order-box .ca-product-options-box-header .ca-product-options-box-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #111111;
    margin: 0;
    text-align: center;
    flex-grow: 1;
  }
  .ca-product-order-box .ca-product-options-box-header .ca-product-options-box-close {
    display: flex;
    align-items: center;
    justify-content: center;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    padding: 0;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    background: none;
    padding: 0;
  }
  .ca-product-order-box .ca-product-options-box-header .ca-product-options-box-close .material-symbols-rounded {
    font-size: 1.875rem;
    color: #999999;
    font-weight: 600;
  }
  .ca-product-order-box .ca-product-options-box-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    overflow-y: auto;
    padding: 1.25rem 1.25rem 80px 1.25rem;
    -webkit-overflow-scrolling: touch;
    gap: 0.75rem;
    position: relative;
    background-color: #ffffff;
  }
  .ca-product-order-box .ca-product-options-box-content::-webkit-scrollbar {
    width: 4px;
  }
  .ca-product-order-box .ca-product-options-box-content::-webkit-scrollbar-track {
    background: #f6f6f6;
  }
  .ca-product-order-box .ca-product-options-box-content::-webkit-scrollbar-thumb {
    background: #999999;
    border-radius: 0.125rem;
  }
}
.ca-product-select-wrapper {
  position: relative;
  width: 100%;
  font-family: inherit;
}
.ca-product-select {
  position: relative;
  width: 100%;
  min-height: 44px;
  background-color: #ffffff;
  border: 1px solid #d9d9d9;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}
.ca-product-select:hover {
  border-color: #999999;
}
.ca-product-select.active {
  border-color: #111111;
  box-shadow: 0 0 0 2px rgba(17, 17, 17, 0.1);
}
.ca-product-select.disabled {
  background-color: #f6f6f6;
  border-color: #eeeeee;
  cursor: not-allowed;
  opacity: 0.6;
}
.ca-product-select.disabled .ca-product-select-current {
  color: #999999;
}
.ca-product-select.disabled .ca-product-select-arrow {
  opacity: 0.5;
}
.ca-product-select-current {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: #333333;
  line-height: 1.4;
  min-height: 20px;
}
.ca-product-select-current.placeholder {
  color: #666666;
}
.ca-product-select-arrow {
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23666'%3e%3cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3e%3c/path%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px;
  transition: transform 0.2s ease-in-out;
  flex-shrink: 0;
}
.ca-product-select.active .ca-product-select-arrow {
  transform: rotate(180deg);
}
.ca-product-select-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: #ffffff;
  border: 1px solid #d9d9d9;
  border-top: none;
  border-radius: 0 0 0.5rem 0.5rem;
  max-height: 250px;
  overflow-y: auto;
  z-index: 1000;
  display: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.ca-product-select-dropdown.show {
  display: block;
}
.ca-product-select-dropdown::-webkit-scrollbar {
  width: 6px;
}
.ca-product-select-dropdown::-webkit-scrollbar-track {
  background: #f6f6f6;
  border-radius: 3px;
}
.ca-product-select-dropdown::-webkit-scrollbar-thumb {
  background: #999999;
  border-radius: 3px;
}
.ca-product-select-dropdown::-webkit-scrollbar-thumb:hover {
  background: gray;
}
.ca-product-select-option {
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: #333333;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
  border-bottom: 1px solid #f6f6f6;
}
.ca-product-select-option:last-child {
  border-bottom: none;
}
.ca-product-select-option:hover {
  background-color: #fafafa;
}
.ca-product-select-option.selected {
  background-color: rgba(0, 115, 170, 0.1);
  color: #0073aa;
  font-weight: 500;
}
.ca-product-select-option.hidden {
  display: none;
}
.ca-product-select-option.disabled {
  color: #999999;
  cursor: not-allowed;
  background-color: #f6f6f6;
}
.ca-product-select-option.disabled:hover {
  background-color: #f6f6f6;
}
.ca-product-select-option-name {
  flex: 1;
}
.ca-product-select-option-price {
  color: #666666;
  font-size: 0.85rem;
  margin-left: 0.5rem;
  white-space: nowrap;
}
.ca-product-select-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .ca-product-select-current {
    padding: 0.75rem 0.75rem;
    font-size: 0.85rem;
  }
  .ca-product-select-option {
    padding: 0.75rem 0.75rem;
    font-size: 0.85rem;
  }
  .ca-product-select-dropdown {
    max-height: 200px;
  }
}
.ca-product-select:focus-within {
  outline: 2px solid #0073aa;
  outline-offset: 2px;
}
.ca-product-select.loading .ca-product-select-current {
  opacity: 0.7;
}
.ca-product-select.loading .ca-product-select-arrow {
  animation: ca-select-loading 1s infinite linear;
}
@keyframes ca-select-loading {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.ca-product-select.error {
  border-color: #dc3545;
}
.ca-product-select.error:hover {
  border-color: #bd2130;
}
.ca-product-item-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.ca-product-item-variation, .ca-product-item-cross-sell {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.ca-brand-inquiry-card {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 2rem 1.25rem;
  background: linear-gradient(135deg, #fafafa 0%, #eeeeee 100%);
  border: 2px dashed #d9d9d9;
  border-radius: 0.75rem;
  text-align: center;
  transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  min-height: 200px;
}
@media (max-width: 768px) {
  .ca-brand-inquiry-card {
    padding: 1.5rem 1rem;
    min-height: 180px;
  }
}
.ca-brand-inquiry-card:hover {
  border-color: #999999;
  background: linear-gradient(135deg, #eeeeee 0%, #d9d9d9 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.ca-brand-inquiry-logo {
  margin-bottom: 1rem;
}
.ca-brand-inquiry-logo img {
  max-width: 80px;
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 0.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .ca-brand-inquiry-logo img {
    max-width: 70px;
    max-height: 50px;
  }
}
.ca-brand-inquiry-content {
  width: 100%;
}
.ca-brand-inquiry-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #333333;
  margin: 0 0 0.75rem 0;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .ca-brand-inquiry-title {
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }
}
.ca-brand-inquiry-description {
  font-size: 0.875rem;
  color: #666666;
  margin: 0 0 1.25rem 0;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .ca-brand-inquiry-description {
    font-size: 0.85rem;
    margin-bottom: 1.25rem;
  }
}
.ca-brand-inquiry-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 500;
  line-height: 1.5;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  text-decoration: none;
  color: #ffffff;
  background-color: #333333;
  padding: 0.75rem 1.25rem;
  font-size: 1rem;
  border-radius: 0.5rem;
  background: linear-gradient(135deg, #e9b042 0%, #de9b1a 100%);
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(233, 176, 66, 0.3);
}
.ca-brand-inquiry-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.ca-brand-inquiry-button:hover:not(:disabled) {
  background-color: #222222;
}
.ca-brand-inquiry-button:active:not(:disabled) {
  background-color: #111111;
}
@media (max-width: 768px) {
  .ca-brand-inquiry-button {
    padding: 0.75rem 1.25rem;
    font-size: 0.85rem;
  }
}
.ca-brand-inquiry-button:hover {
  background: linear-gradient(135deg, #de9b1a 0%, #b07b15 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(233, 176, 66, 0.4);
}
.ca-brand-inquiry-button:active {
  transform: translateY(0);
}
.ca-search-inquiry-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.25rem;
  background: linear-gradient(135deg, #f6f6f6 0%, #eeeeee 100%);
  border: 2px dashed #d9d9d9;
  border-radius: 0.75rem;
  text-align: center;
  transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  min-height: 200px;
}
@media (max-width: 768px) {
  .ca-search-inquiry-card {
    padding: 1.5rem 1rem;
    min-height: 180px;
  }
}
.ca-search-inquiry-card:hover {
  border-color: #999999;
  background: linear-gradient(135deg, #eeeeee 0%, #d9d9d9 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.ca-search-inquiry-content {
  width: 100%;
}
.ca-search-inquiry-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #333333;
  margin: 0 0 0.75rem 0;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .ca-search-inquiry-title {
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }
}
.ca-search-inquiry-description {
  font-size: 0.875rem;
  color: #333333;
  margin: 0 0 1.25rem 0;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .ca-search-inquiry-description {
    font-size: 0.85rem;
    margin-bottom: 1.25rem;
  }
}
.ca-search-inquiry-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 500;
  line-height: 1.5;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  text-decoration: none;
  color: #ffffff;
  background-color: #333333;
  padding: 0.75rem 1.25rem;
  font-size: 1rem;
  border-radius: 0.5rem;
  background: linear-gradient(135deg, #0073aa 0%, #005177 100%);
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0, 115, 170, 0.3);
}
.ca-search-inquiry-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.ca-search-inquiry-button:hover:not(:disabled) {
  background-color: #222222;
}
.ca-search-inquiry-button:active:not(:disabled) {
  background-color: #111111;
}
@media (max-width: 768px) {
  .ca-search-inquiry-button {
    padding: 0.75rem 1.25rem;
    font-size: 0.85rem;
  }
}
.ca-search-inquiry-button:hover {
  background: linear-gradient(135deg, #005177 0%, #002e44 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 115, 170, 0.4);
}
.ca-search-inquiry-button:active {
  transform: translateY(0);
}
.ca-product-attributes-list {
  display: none;
  contain: layout style;
}
.ca-product-repeater[data-view-mode="list"] .ca-product-attributes-list {
  display: block;
}
.ca-product-attribute-item {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-right: 0.75rem;
  font-size: 0.75rem;
  color: #333333;
  max-width: 200px;
}
.ca-product-attribute-item .ca-attribute-name {
  font-weight: 500;
  color: #666666;
  flex-shrink: 0;
}
.ca-product-attribute-item .ca-attribute-value {
  color: #222222;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ca-product-attribute-more {
  display: inline-block;
  font-size: 0.75rem;
  color: #999999;
  font-style: italic;
}
.ca-product-attributes-section {
  margin: 1rem 0;
  contain: layout style;
}
.ca-product-attributes-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #333333;
  margin: 0 0 0.75rem 0;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #eeeeee;
}
.ca-product-attributes-table {
  width: 100%;
  border-collapse: collapse;
  background-color: #f6f6f6;
  border-radius: 0.5rem;
  overflow: hidden;
}
.ca-product-attributes-table tbody {
  display: table-row-group;
}
.ca-product-attributes-table tr {
  border-bottom: 1px solid #eeeeee;
  transition: background-color 0.2s ease-in-out;
  background-color: #f6f6f6;
}
.ca-product-attributes-table tr:last-child {
  border-bottom: none;
}
.ca-product-attributes-table tr:hover {
  background-color: #e9e9e9;
}
.ca-product-attributes-table td {
  padding: 0.75rem;
  vertical-align: middle;
}
.ca-product-attributes-table td.ca-attribute-label {
  width: 40%;
  font-size: 0.875rem;
  font-weight: 500;
  color: #333333;
  word-break: keep-all;
}
@media (max-width: 768px) {
  .ca-product-attributes-table td.ca-attribute-label {
    width: 35%;
  }
}
.ca-product-attributes-table td.ca-attribute-content {
  font-size: 0.875rem;
  color: #111111;
  font-weight: 500;
  word-break: break-word;
}
.ca-product-attributes-toggle {
  margin-top: 1rem;
  text-align: center;
}
.ca-attributes-show-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 500;
  line-height: 1.5;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  text-decoration: none;
  color: #333333;
  background-color: #ffffff;
  border-color: #d9d9d9;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  border-radius: 0.25rem;
  font-size: 0.875rem;
}
.ca-attributes-show-more:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.ca-attributes-show-more:hover:not(:disabled) {
  background-color: #f6f6f6;
}
.ca-attributes-show-more:hover {
  background-color: #f6f6f6;
}
.ca-product-attributes-section.is-loading {
  opacity: 0.6;
  pointer-events: none;
}
@media (max-width: 480px) {
  .ca-product-attributes-section {
    padding: 0.75rem;
    margin: 0.75rem 0;
  }
  .ca-product-attributes-title {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
  .ca-product-attributes-table td {
    padding: 0.25rem 0.5rem;
  }
  .ca-product-attributes-table td.ca-attribute-label {
    width: 40%;
    font-size: 0.8rem;
  }
  .ca-product-attributes-table td.ca-attribute-content {
    font-size: 0.8rem;
  }
  .ca-product-attribute-item {
    display: block;
    margin-right: 0;
    max-width: 100%;
  }
}
