/** Shopify CDN: Minification failed

Line 1363:10 Expected identifier but found whitespace
Line 1363:11 Unexpected "12px"
Line 1370:14 Expected identifier but found whitespace
Line 1370:15 Unexpected "14px"

**/
/* =========================
   ARUM – Luxury Collection (Edge)
   Force apply version
   ========================= */

.facets__summary {
  padding-inline-start: 1.5rem;
}


/* Mobile section padding override — uses --section-padding-*-mobile when set by admin,
   falls back to 75% of desktop value (theme default behaviour) */
.section-padding {
  padding-top: var(--section-padding-top-mobile, calc(var(--section-padding-top, 0px) * 0.75));
  padding-bottom: var(--section-padding-bottom-mobile, calc(var(--section-padding-bottom, 0px) * 0.75));
}

@media screen and (min-width: 768px) {
  .section-padding {
    padding-top: var(--section-padding-top, 0px);
    padding-bottom: var(--section-padding-bottom, 0px);
  }
}

/* Prevent FOUC: addtocart-sticky.css loads lazily, so hide on desktop here */
@media screen and (min-width: 768px) {
  .product-add-to-cart-sticky:not(.show) {
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(100%) !important;
  }
}


/* 컬렉션 그리드 간격 (가장 강하게) */
.template-collection .grid,
.template-collection .product-grid,
.template-collection [id*="ProductGrid"] .grid,
.template-collection [id*="ProductGrid"] .product-grid {
  gap: 28px !important;
}

/* 카드 느낌 제거 */
.template-collection .card,
.template-collection .card-wrapper,
.template-collection .product-card,
.template-collection [class*="card-product"] {
  border: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
}

/* 이미지 깔끔하게 */
.template-collection .card__media,
.template-collection .card-media,
.template-collection .product-card__media,
.template-collection [class*="card-product"] .media {
  border-radius: 0 !important;
  overflow: hidden !important;
}

.card__content,
.card-information {
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  gap: 10px !important;
  overflow: visible !important;
}

.card__content {
  padding-left: 10px;
  padding-right: 10px;
}

/* 상품 텍스트 최소화 */
.template-collection .card__information,
.template-collection .product-card__info,
.template-collection [class*="card-product"] .card__content,
.template-collection [class*="card-product"] .card__information {
  padding-top: 0 !important;
}

:root {
  --color-swatch-border: #d3d3d3;
  --spacing-05x: 4px;
  --spacing-1x: 8px;
  --spacing-15x: 12px;
  --spacing-2x: 16px;
  --spacing-3x: 24px;
  --spacing-4x: 32px;
}

/* 상품명 */
.template-collection .card__heading,
.template-collection .product-card__title,
.template-collection [class*="card-product"] .card__heading {
  font-size: 14px !important;
  letter-spacing: 0.02em !important;
  line-height: 1.35 !important;
  font-weight: 400 !important;
}

/* 가격 */
.template-collection .price,
.template-collection [class*="card-product"] .price {
  margin-top: 6px !important;
  font-size: 13px !important;
  letter-spacing: 0.02em !important;
}

/* 뱃지/리뷰/퀵버튼 전부 숨김 (있으면 무조건 제거) */
.template-collection .badge,
.template-collection .card__badge,
.template-collection [class*="badge"],
.template-collection .rating,
.template-collection [class*="rating"],
.template-collection .quick-add,
.template-collection [class*="quick-add"],
.template-collection .vendor,
.template-collection [class*="vendor"] {
  display: none !important;
}

/* 필터 UI 정돈 */
.template-collection .facets,
.template-collection .facet-filters,
.template-collection [class*="facet"],
.template-collection [class*="filters"] {
  font-size: 13px !important;
  letter-spacing: 0.02em !important;
}

/* 필터 타이틀을 고급스럽게 */
.template-collection .facets__heading,
.template-collection .facet-title,
.template-collection [class*="facet"] summary,
.template-collection [class*="filters"] summary {
  font-size: 12px !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  font-weight: 500 !important;
}

/* 데스크톱: 기본 상태에서 제목과 가격 숨김 */
@media (min-width: 768px) {

  .product-card__title,
  .product-card__price {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
  }

  /* 호버 시 제목과 가격 표시 */
  .product-card:hover .product-card__title,
  .product-card:hover .product-card__price {
    opacity: 1;
  }
}

/* 모바일: 항상 제목과 가격 표시 */
@media (max-width: 767px) {

  .product-card__title,
  .product-card__price {
    opacity: 1 !important;
  }
}

/* Product layout — media stretches, info fixed width, 76px gap */
@media screen and (min-width: 768px) {
  .product.flex {
    gap: 76px;
  }

  .product .product__media-wrapper {
    flex: 1 1 0% !important;
    max-width: none !important;
    min-width: 0;
  }

  .product .product__info-wrapper {
    flex: 0 0 440px !important;
    max-width: 440px !important;
    width: 440px;
  }
}

/* Product info wrapper — no left/right padding */
.product__info-wrapper,
.product--right .product__info-wrapper,
.w-full:not(.w-full_quickview) .product .product__info-wrapper,
.product-quick-view-content .product__info-wrapper {
  padding-inline-start: 0 !important;
  padding-inline-end: 0 !important;
}

/* Product page — portrait crop for product images */
@media screen and (min-width: 768px) {
  .product .product-media-container .media {
    padding-top: 0 !important;
    aspect-ratio: 1 / 1;
  }
}

/* Product media variant label */
.product-media-container {
  position: relative;
}

.variant-label {
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgb(var(--color-foreground));
  background-color: rgb(var(--color-background));
  padding: 4px 8px;
  pointer-events: none;
  z-index: 2;
  max-width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

@media screen and (max-width: 767px) {
  .variant-label {
    right: auto !important;
    left: 10px !important;
    bottom: 10px !important;
    background-color: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(4px);
    font-size: 10px !important;
  }
}


/* =====================
   PRODUCT INFO COLUMN
   ===================== */

/* Title + price same row */
.product__info-container .product__title-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding-top: 24px !important;
  padding-bottom: 24px !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  border-bottom: 1px solid #e5e7eb !important;
  margin: 0 !important;
}

@media screen and (max-width: 767px) {
  .product__info-container .product__title-row {
    margin-left: -1.5rem !important;
    margin-right: -1.5rem !important;
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
}

.product__title-row .product__title {
  font-size: 17px;
  font-weight: 400;
  margin: 0;
}

.product__title-row .product__price {
  flex-shrink: 0;
  white-space: nowrap;
}

.product__title-row .price-item {
  font-size: 12px;
}

.price-item--regular {
  font-size: 10px;
}

/* Hide badge/compare price clutter from the title row */
.product__title-row .price__badge-sale,
.product__title-row .price__badge-sold-out,
.product__title-row .price__sale .price-item--regular {
  display: none;
}

/* Option labels — uppercase bold */
.product-form__input .form__label {
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.product-form__input .form__label .form__label-value {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  font-size: 11px;
}

/* Variant picker spacing */
.product-form__input,
.product-form__input--color {
  margin-bottom: 24px !important;
}


/* Base styles for all non-color variant buttons (squares, circles, pills) */
.product-form__input:not(.product-form__input--color) .swatch-block {
  display: flex !important;
  align-items: flex-start;
  justify-content: flex-start;
  background-color: #f6f6f6 !important;
  border: 1px solid #CCC !important;
  padding: 10px 19px;
  width: 104px;
  min-width: 104px;
  height: auto;
  cursor: pointer;
  transition: all 0.2s;
  margin: 0 4px 0 0 !important;
  box-shadow: none !important;
  position: relative !important;
}

/* Shape: Circle dimensions */
.product-form__input[data-shape="circle"]:not(.product-form__input--color) .swatch-block {
  width: 40px;
  min-width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 50% !important;
  font-size: 12px;
  justify-content: center;
  align-items: center;
}

.product-form__input[data-shape="circle"]:not(.product-form__input--color) .swatch-block .swatch-block__value {
  align-items: center;
}

/* Selected state — gray ring, no fill */
.product-form__input:not(.product-form__input--color) input:checked+.swatch-block {
  background-color: transparent !important;
  border: 1.5px solid var(--color-swatch-border) !important;
  box-shadow: none !important;
  outline: none !important;
}

/* Variant Label Typography */
.product-form__input:not(.product-form__input--color) .swatch-label-main {
  font-size: 12px !important;
  line-height: 1;
}

.product-form__input:not(.product-form__input--color) .swatch-label-sub {
  font-size: 9.6px;
  line-height: 1;
  margin-top: 4px;
  color: #999 !important;
}

/* Hide the theme's default thick inner selection ring globally to prevent clashing with our custom borders */
input:checked+.swatch-block:before,
input:checked+.swatch-image:before,
.swatch-block.active:before,
.swatch-image.active:before {
  display: none !important;
}

/* Remove the theme's default background block inside the swatch text */
.product-form__input:not(.product-form__input--color) .swatch-block .swatch-block__value {
  background-color: transparent !important;
}

/* Force text to stay black when selected (override theme's default white text) */
.product-form__input:not(.product-form__input--color) input:checked+.swatch-block,
.product-form__input:not(.product-form__input--color) input:checked+.swatch-block .swatch-block__value {
  color: rgb(var(--color-foreground)) !important;
}

.product-form__input:not(.product-form__input--color) .swatch-block:hover {
  border-color: rgba(var(--color-foreground), 0.4) !important;
}

/* Square / Rectangular Pill Style */
.product-form__input[data-shape="pill"] .swatch-block {
  width: 100px;
  min-width: 100px;
  border-radius: 0 !important;
  justify-content: flex-start;
}

@media screen and (min-width: 768px) {
  .product-form__input[data-shape="pill"] .swatch-block {
    width: 104px;
    min-width: 104px;
  }
}

.product-form__input[data-shape="pill"] input:checked+.swatch-block {
  background-color: transparent !important;
  border: 1px solid var(--color-swatch-border) !important;
}

.product-form__input[data-shape="pill"] .swatch-block .swatch-block__value {
  align-items: flex-start !important;
}

.product-form__input[data-shape="pill"] .swatch-block .swatch-label-main {
  font-size: 14px;
  letter-spacing: 0;
  text-transform: capitalize;
  color: #000 !important;
}

/* Custom Size Guide Link */
a.size-guide-link {
  color: #8c8c8c;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: color 0.15s ease;
}

a.size-guide-link:hover {
  color: rgb(var(--color-foreground));
}

/* Crisp non-expanding underline for standard links like the Size guide */
.clean-underline-link {
  text-decoration: underline !important;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px !important;
}

.clean-underline-link:hover {
  text-decoration-thickness: 1px !important;
}

/* Shipping info text under the Add to Cart button */
.product__button-subtext {
  font-size: 11px;
  color: #8c8c8c;
  margin-top: 10px;
  text-align: center;
  letter-spacing: 0.5px;
}

/* Control Bar Add to Bag button */
.product-add-button-container {
  margin-top: 20px;
}

.control-bar-add-button {
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background-color: #0d0d0d !important;
  color: #ffffff !important;
  border: none !important;
  padding: 18px 24px !important;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none !important;
  letter-spacing: 0;
  cursor: pointer;
  transition: opacity 0.2s;
  box-shadow: none !important;
}

.control-bar-add-button:hover {
  opacity: 0.8 !important;
  background-color: #0d0d0d !important;
  box-shadow: none !important;
  color: white !important;
}

.control-bar-add-button:disabled {
  opacity: 0.5 !important;
  cursor: not-allowed;
}

.control-bar-btn-price {
  font-weight: 400;
}

/* Style moved to Liquid snippets for absolute row stability */

/* Guard: Hide duplicate native Buy button if Custom Control Bar is active */
@media screen and (max-width: 767px) {

  .product-form__buttons,
  .product-control-bar:not(.sticky-control-bar),
  .native-notify-form-container {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  #MainContent {
    /* border-top removed */
  }
}



/* Separator */
.product__divider {
  border-color: rgba(var(--color-foreground), 0.15) !important;
  margin-top: 4px;
  margin-bottom: 4px;
}

/* Description — plain body text */
.product__description,
.product__description.rte {
  font-size: 14px;
  line-height: 1.65;
  color: rgb(var(--color-foreground));
}

/* Accordion / collapsible tabs */
.product__collapsible .accordion__title {
  font-size: 13px !important;
  font-weight: unset !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
}

.product__collapsible details {
  border-top: 1px solid rgba(var(--color-foreground), 0.15);
}

.product__collapsible details:last-child {
  border-bottom: 1px solid rgba(var(--color-foreground), 0.15);
}

.product__collapsible .collapsible__content-inner {
  font-size: 13px;
  line-height: 1.6;
}

/* Product control bar (Vertical Stack per Column) */
.product-control-bar {
  background-color: #111;
  color: #fff;
  padding: 0;
  margin-top: 8px !important;
  margin-bottom: 0 !important;
}

.product-buy-buttons-wrapper {
  margin-top: 1px !important;
}

.product-form {
  margin: 0 !important;
}

.control-bar__inner {
  display: flex;
  flex-direction: column;
}

@media screen and (min-width: 768px) {
  .control-bar__inner {
    flex-direction: row;
    align-items: stretch;
  }
}

.products-holder,
.properties-holder {
  padding: var(--spacing-1x) var(--spacing-2x);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--spacing-05x);
}

.products-holder {
  flex: 3;
}

.properties-holder {
  flex: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: right;
}

@media screen and (min-width: 768px) {
  .products-holder {
    flex-direction: column;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }

  .properties-holder {
    flex-direction: row;
    border-top: none;
  }
}

.connected-product {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--spacing-1x);
  flex: 1;
}

.properties-holder .connected-product {
  justify-content: flex-end;
}

.overview-content {
  display: flex;
  flex: 1;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  min-width: 0;
}

.type-label,
.connected-product .label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
}

.item-name,
.connected-product .value {
  font-size: 11px;
  font-weight: 400;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}

.item-price {
  font-size: 11px;
  font-weight: 400;
  color: #fff;
  text-align: right;
}

/* Back in stock bar */
.back-in-stock-bar {
  background-color: #1a1a1a;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px 24px;
}

.back-in-stock__inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media screen and (min-width: 768px) {
  .back-in-stock__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.notify-label {
  font-size: 11px;
  font-weight: 400;
  color: #fff;
}

/* Color swatches — wrapper with dot + text name */
.variant-picker__color {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 12px 16px !important;
  align-items: center;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.card-product__swatch-list {
  gap: 10px !important;
  overflow: visible !important;
}

.variant-picker__color.gap-1 {
  gap: 4px !important;
}

.variant-picker__color input[type='radio'] {
  position: absolute !important;
  opacity: 0 !important;
  width: 0 !important;
  height: 0 !important;
  pointer-events: none !important;
}

.variant-picker__color .swatch-label-wrapper {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px;
  border: none;
  padding: 3px 3px 3px 7px !important;
  background: transparent;
  cursor: pointer;
}

/* Keep the swatch-color as the circular dot — let theme handle its size/bg */
.variant-picker__color .swatch-label-wrapper .swatch-color {
  flex-shrink: 0;
  border-radius: 50% !important;
  margin: 0;
  width: 15px !important;
  height: 15px !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  overflow: hidden !important;
  position: relative;
  outline: 1px solid var(--color-swatch-border);
  outline-offset: 3px;
}

/* Ensure the inner generated color block is also completely round and fills the dot */
.variant-picker__color .swatch-label-wrapper .swatch-color .swatch {
  width: 100% !important;
  height: 100% !important;
  border-radius: 50% !important;
  display: block;
}

/* Selected state — prominent black ring */
.variant-picker__color input:checked+.swatch-label-wrapper .swatch-color {
  outline: 1px solid #000 !important;
}

.variant-picker__color input:checked+.swatch-label-wrapper .swatch-color:before {
  display: none !important;
  /* Hide theme default selection style */
}

.variant-picker__color .swatch-color__name {
  display: block !important;
  font-size: 12px !important;
  font-weight: 400 !important;
  color: rgb(var(--color-foreground)) !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  white-space: nowrap;
}

/* Sold Out / Disabled State for Color Dots */
.variant-picker__color input.disabled+.swatch-label-wrapper .swatch-color {
  opacity: 0.4;
}

.variant-picker__color input.disabled+.swatch-label-wrapper .swatch-color::after {
  content: "";
  position: absolute;
  left: -2px;
  right: -2px;
  top: 7px;
  height: 1px;
  background: #fff;
  transform: rotate(45deg);
  pointer-events: none;
  z-index: 3;
}



/* Dynamic Checkout button (Buy Now) — plain white outline */
.shopify-payment-button__button--unbranded {
  background: transparent !important;
  background-color: transparent !important;
  color: rgb(var(--color-foreground)) !important;
  border: 1px solid rgba(var(--color-foreground), 0.3) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  font-size: 12px !important;
  font-weight: 400 !important;
  letter-spacing: 0.05em !important;
  text-transform: none !important;
  padding: 14px 24px !important;
  margin-top: 0 !important;
}

.shopify-payment-button__button--unbranded:hover {
  background: rgba(var(--color-foreground), 0.05) !important;
}

.shopify-payment-button__button--branded {
  border-radius: 0 !important;
}

.shopify-payment-button {
  margin-top: 0 !important;
}

/* Add to Bag button ring style */
.product-add-button-ring-style {
  width: 100% !important;
  background-color: #000 !important;
  color: #fff !important;
  border: none !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 18px 24px !important;
  height: 57px !important;
  
  gap: 0 !important;
  border-radius: 0 !important;
}

.product-add-button-ring-style span:first-child {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.product-add-button-ring-style .product-form__price-label {
  font-size: 13px;
  font-weight: 400;
  opacity: 0.9;
}

/* MADE TO ORDER bar */
.product__shipping-info .progress-bar {
  background-color: #fff;
  border: 1px solid #e5e7eb;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
  border-radius: 0;
}

.product__shipping-info .progress-bar__text {
  font-size: 12px;
  font-weight: 400;
  color: #000;
  margin: 0;
}

.product__shipping-info .progress-bar__inner {
  display: none;
}

/* Bullet points styling */
.product__info-container ul {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.product__info-container ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
  font-size: 13px;
}

.product__info-container ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  font-weight: bold;
}

.media-sold-out-label {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #0d0d0d;
  background-color: #d9d9d9;
  padding: 8px 14px;
  pointer-events: none;
  z-index: 2;
}

/* Stack View Modal Refinement */
.product-media-modal {
  background-color: #fff !important;
  display: block !important;
  overflow: hidden !important;
  cursor: default;
  z-index: 2000 !important;
}

.arum-luxury-modal-header {
  position: fixed !important;
  top: 15px !important;
  right: 15px !important;
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: flex-end !important;
  z-index: 3000 !important;
  background: transparent !important;
  pointer-events: none !important;
  width: auto !important;
}

.arum-luxury-variant-title,
.arum-luxury-modal-close {
  pointer-events: auto !important;
}

.arum-luxury-variant-title {
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #000;
  font-weight: 400;
  white-space: nowrap !important;
}

.arum-luxury-modal-close {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 44px !important;
  height: 44px !important;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  cursor: pointer !important;
  flex-shrink: 0 !important;
}

.arum-luxury-modal-close svg {
  width: 20px !important;
  height: 20px !important;
}

.product-media-modal__dialog {
  display: block !important;
  height: 100vh !important;
  width: 100%;
  cursor: default;
}

.product-media-modal__content {
  padding: 0 !important;
  max-width: 1000px;
  margin: 0 auto;
  height: 100vh !important;
  max-height: 100vh !important;
  overflow-y: auto !important;
  scroll-snap-type: y mandatory !important;
  scroll-behavior: smooth;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  cursor: default;

  /* Hide scrollbar */
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.product-media-modal__content::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari and Opera */
}

.product-media-modal__item img {
  width: 100%;
  height: auto;
  display: block;
  cursor: zoom-in;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center center;
  user-select: none;
  -webkit-user-drag: none;
}

.product-media-modal__item.is-zoomed img {
  transform: scale(1.6);
  cursor: zoom-out;
  z-index: 10;
}

.product-media-modal__item.is-dragging img {
  cursor: grabbing;
  transition: none !important;
}

.product-media-modal__item {
  margin-bottom: 0 !important;
  padding: 0 !important;
  width: 100%;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  scroll-snap-align: center !important;
  min-height: 100vh !important;
  flex: 0 0 100vh !important;
  overflow: visible !important;
  cursor: default;
  /* Reset cursor outside image */
}

.product-media-modal__toggle {
  background: transparent !important;
  border: none !important;
  color: #000 !important;
  top: 2rem !important;
  right: 2rem !important;
  width: 44px !important;
  height: 44px !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  position: fixed !important;
  z-index: 102 !important;
  padding: 0 !important;
  cursor: pointer;
  box-shadow: none !important;
}

.product-media-modal__toggle:hover {
  opacity: 0.6;
}

.product-media-modal__toggle svg {
  width: 20px;
  height: 20px;
}

.product__modal-opener-button {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  width: 100%;
  cursor: zoom-in;
  display: block;
}

/* Modal Sidebar Styling */
.product-media-modal__sidebar {
  position: fixed;
  left: 2rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 105;
  max-height: 80vh;
  overflow-y: auto;
  padding: 10px;
  /* Hide scrollbar */
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.product-media-modal__sidebar::-webkit-scrollbar {
  display: none;
}

.product-media-modal__sidebar-item {
  width: 64px;
  height: 64px;
  background: #fff;
  border: 1px solid #e5e7eb;
  padding: 0;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.product-media-modal__sidebar-item:hover,
.product-media-modal__sidebar-item.is-active {
  border-color: #000;
}

.product-media-modal__sidebar-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 990px) {
  .product-media-modal__sidebar {
    display: flex !important;
    position: fixed !important;
    bottom: 40px !important;
    left: 0 !important;
    top: auto !important;
    transform: none !important;
    flex-direction: row !important;
    width: 100% !important;
    max-height: 100px !important;
    justify-content: center !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    background: transparent !important;
    padding: 10px !important;
    gap: 15px !important;
    z-index: 2100 !important;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .product-media-modal__sidebar::-webkit-scrollbar {
    display: none;
  }

  .product-media-modal__sidebar-item {
    width: 60px !important;
    height: 60px !important;
    border-radius: 0 !important;
    border: 1px solid #eee !important;
    padding: 2px !important;
    background: #fff !important;
  }

  .product-media-modal__sidebar-item.is-active {
    border-color: #000 !important;
  }
}

@media screen and (max-width: 749px) {
  .product-media-modal__content {
    height: 75vh !important;
    margin-top: 0 !important;
    align-items: center !important;
    padding-bottom: 20px !important;
  }

  .product-media-modal__content img {
    max-height: 70vh !important;
  }
}

@media screen and (max-width: 749px) {
  .product-media-modal__content {
    display: flex !important;
    flex-direction: row !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch;
    height: 100vh !important;
    align-items: center !important;
    padding: 0 !important;
    gap: 0 !important;
    scroll-behavior: smooth;
  }

  .product-media-modal__content>* {
    flex: 0 0 100vw !important;
    width: 100vw !important;
    max-width: 100vw !important;
    scroll-snap-align: start !important;
    height: 100vh !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
    padding: 20px !important;
  }

  .product-media-modal__content img {
    max-height: 85vh !important;
    width: auto !important;
    max-width: 100% !important;
    object-fit: contain !important;
  }
}

/* ─── SALE badge: black rectangle flush to corner ─── */
.card__badge.top.left,
.card__badge.top.right {
  position: static;
  top: auto;
  left: auto;
  inset-inline-end: unset;
}

.card__badge .badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 10;
  background-color: #0d0d0d;
  color: #ffffff;
  border-radius: 0;
  font-family: var(--font-heading-family);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px;
  line-height: 1;
  width: fit-content;
  max-width: calc(100% - 20px);
}

@media screen and (max-width: 768px) {

  .card__badge.top.left .badge,
  .card__badge.top.right .badge {
    font-size: 8px;
    padding: 3px 7px;
    top: 10px;
    left: 10px;
  }
}

/* ─── Wishlist button ─── */
.card-product__wishlist {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 2;
  background: none;
  border: none;
  cursor: pointer;
  padding: 2px;
  color: rgb(var(--color-foreground));
  line-height: 0;
}

.card-product__wishlist svg {
  width: 20px;
  height: 20px;
}

.card-product__wishlist--login {
  background-color: #fff;
  border: none;
  color: #000;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 400;
  width: 76px;
  height: 36px;
  line-height: 1;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.card-product__wishlist--login:hover {
  background-color: #000;
  color: #fff;
}

/* ─── Price + UNLOCK label row ─── */
.card-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.product-card__label-item {
  border: 1px solid rgb(var(--color-foreground));
  font-size: 0.6rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 4px 8px;
  display: inline-block;
  line-height: 1.4;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ─── Card swatch border ─── */
.card-product__swatch-item {
  padding: 3px; /* Space for the 3px selection ring */
}

.card-product__swatch-item .swatch-button-color {
  width: 11px !important;
  height: 11px !important;
  box-shadow: none;
  border: 1px solid var(--color-swatch-border);
  margin: 0 !important;
}

.card-product__swatch-item .swatch-button-color .swatch {
  border: none;
}

/* ─── Product card image: 9/11 aspect ratio ─── */
.card-product__media-inner {
  aspect-ratio: 9 / 11;
  background-color: #f8f9f9;
  z-index: 1;
}

.card-product__media-inner .responsive-image {
  position: absolute !important;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding-top: 0 !important;
}

.card-product .card-product__media {
  margin-bottom: 8px;
}

.card-product-swatch {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.product-button__text {
  font-size: 12px;
}

@media screen and (min-width: 768px) {
  .product-button__text {
    font-size: 14px;
  }
}ont-size: 12px;
}

@media screen and (min-width: 768px) {
  .product-button__text {
    font-size: 14px;
  }
}   font-size: 14px;
  }
}ont-size: 14px;
  }
}  }
}ont-size: 14px;
  }
}

