/** Shopify CDN: Minification failed

Line 891:0 Expected "}" to go with "{"

**/
/* ================================================================
   LUZGURU — PRODUCT PAGE COMPLETE REDESIGN v3.0
   ================================================================
   Mobile-first · Conversion-optimized · Premium lighting & fans

   KEY INSIGHT: Dawn's .grid is display:flex (not CSS Grid).
   Column widths are controlled via width/max-width on .grid__item,
   NOT via grid-template-columns. Spacing is created by:
     • column-gap on the flex container
     • padding-left on .product__info-wrapper

   TABLE OF CONTENTS
   1.  Layout & Grid  ← REWRITTEN
   2.  Media Gallery
   3.  Info Panel — Typography
   4.  Price Display
   5.  Variant Picker (Swatches + Pills + Dropdowns)
   6.  Quantity Selector
   7.  CTA Buttons
   8.  Payment Badges Strip
   9.  Product Description
   10. Sticky Mobile CTA Bar
   11. Responsive Breakpoints
   12. Micro-interactions & Extras
   ================================================================ */

/* ── 1. LAYOUT & GRID ───────────────────────────────────────────── */

/*
  Dawn's .product.grid is display:flex — override the per-item
  width/max-width to achieve the desired gallery:info split.
  The default Dawn values at 990px+:
    large:  65% gallery / 35% info
    medium: 55% gallery / 45% info  ← our target (already matches)
    small:  45% gallery / 55% info
  We normalise ALL sizes to 55/45 for visual consistency.

  The info-wrapper left-padding (creates gap between columns) defaults
  to 5rem in section-main-product.css. We reduce it so the total
  gap (flex column-gap + padding) stays reasonable.
*/

/* Tablet 750–989px: reduce default 5rem padding to something tighter */
@media screen and (min-width: 750px) {
  .product__info-wrapper {
    padding: 0 0 0 2.5rem;
  }
  .product--right .product__info-wrapper {
    padding: 0 2.5rem 0 0;
  }
}

/* Desktop 990px+: enforce 55/45 split across all media size variants */
@media screen and (min-width: 990px) {
  /* Gallery column → 55% */
  .product--large:not(.product--no-media) .product__media-wrapper,
  .product--medium:not(.product--no-media) .product__media-wrapper,
  .product--small:not(.product--no-media) .product__media-wrapper {
    max-width: 55%;
    width: calc(55% - var(--grid-desktop-horizontal-spacing) / 2);
  }

  /* Info column → 45% */
  .product--large:not(.product--no-media) .product__info-wrapper,
  .product--medium:not(.product--no-media) .product__info-wrapper,
  .product--small:not(.product--no-media) .product__info-wrapper {
    max-width: 45%;
    width: calc(45% - var(--grid-desktop-horizontal-spacing) / 2);
    padding: 0 0 0 3.5rem;
  }

  /* Right-layout: padding on right side */
  .product--large:not(.product--no-media).product--right .product__info-wrapper,
  .product--medium:not(.product--no-media).product--right .product__info-wrapper,
  .product--small:not(.product--no-media).product--right .product__info-wrapper {
    padding: 0 3.5rem 0 0;
  }
}

/* Base reset */
.product__info-wrapper {
  padding-top: 0;
}

/* Sticky info panel — no max-height clipping */
@media screen and (min-width: 750px) {
  .product__column-sticky {
    position: sticky;
    top: 2rem;
  }
}

/* ── 2. MEDIA GALLERY ───────────────────────────────────────────── */

/*
  GALLERY REDESIGN:
  • Desktop: Horizontal thumbnail strip below main image
  • Thumbnails: square 76px, gold active border, smooth opacity transitions
*/

/* ── Desktop: Horizontal thumbnail strip below main image ─────────── */
@media screen and (min-width: 750px) {

  /* Turn media-gallery into a flex column */
  .product__media-wrapper media-gallery {
    display: flex !important;
    flex-direction: column !important;
    gap: 1.5rem !important;
    align-items: center !important;
    width: 100% !important;
  }

  /* Main viewer: fills full width */
  .product__media-wrapper media-gallery > slider-component:not(.thumbnail-slider) {
    width: 100% !important;
    flex: none !important;
  }

  /* Thumbnail strip: horizontal full width below main image */
  .product__media-wrapper .thumbnail-slider {
    width: 100% !important;
    max-width: 100% !important;
    flex-shrink: 0 !important;
    order: unset !important; /* Flows below main image naturally */
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
  }

  /* Thumbnail list: horizontal flex row */
  .product__media-wrapper .thumbnail-list {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 10px !important;
    max-height: unset !important;
    overflow-y: unset !important;
    overflow-x: auto !important;
    padding: 0 !important;
    width: 100% !important;
  }

  /* Thumbnail item: square 76px */
  .product__media-wrapper .thumbnail-list__item {
    flex-shrink: 0 !important;
    width: 76px !important;
    height: 76px !important;
    min-width: unset !important;
    max-width: unset !important;
  }

  /* Thumbnail button */
  .product__media-wrapper .thumbnail-list__item .thumbnail {
    width: 76px !important;
    height: 76px !important;
    border-radius: var(--lg-radius-sm) !important;
    overflow: hidden !important;
    border: 2px solid transparent !important;
    opacity: 0.5 !important;
    transition: opacity 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease !important;
    display: block !important;
    padding: 0 !important;
    background: transparent !important;
    cursor: pointer !important;
  }
  .product__media-wrapper .thumbnail-list__item .thumbnail:hover {
    opacity: 0.85 !important;
    border-color: rgba(var(--lg-gold-rgb), 0.5) !important;
  }
  .product__media-wrapper .thumbnail-list__item .thumbnail[aria-current="true"] {
    opacity: 1 !important;
    border-color: var(--lg-gold) !important;
    box-shadow: 0 0 0 1px var(--lg-gold) !important;
  }

  /* Thumbnail image: cover crop */
  .product__media-wrapper .thumbnail-list__item .thumbnail img {

  /* Hide thumbnail-slider's prev/next buttons — vertical scroll replaces them */
  .product__media-wrapper .thumbnail-slider .slider-button {
    display: none;
  }
}

/* ── Main image: style and hover ────────────────────────────────── */

.product__media-wrapper {
  position: relative;
  isolation: isolate; /* Scope gallery z-indices so they never overlap the cart modal */
}

/* Rounded corners on active media */
.product__media-item--active .product-media-container,
.product__media-item.is-active .product-media-container {
  border-radius: var(--lg-radius-sm);
  overflow: hidden;
}

/* Smooth image scale on hover */
.product__media-item img {
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.product__media-item:hover img {
  transform: scale(1.04);
}

/* ── Zoom indicator badge ───────────────────────────────────────── */
/* Magnifying glass pill appears top-right on hover → click opens lightbox */
.product__modal-opener--image {
  position: relative;
  cursor: zoom-in;
}
.product__modal-opener--image::after {
  content: '';
  position: absolute;
  top: 0.875rem;
  right: 0.875rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23111111' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='m21 21-4.35-4.35'/%3E%3Cpath d='M11 8v6M8 11h6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
  z-index: 5;
}
.product__modal-opener--image:hover::after {
  opacity: 1;
  transform: scale(1);
}

/* ── Stacked layout: space + radius between images ──────────────── */
@media screen and (min-width: 750px) {
  .product--stacked .product__media-list .product__media-item + .product__media-item {
    margin-top: 0.625rem;
  }
  .product--stacked .product__media-item .product-media-container {
    border-radius: var(--lg-radius-sm);
    overflow: hidden;
  }
}

/* ── Mobile: full-width carousel with floating pill controls ────── */
@media screen and (max-width: 749px) {
  /* Edge-to-edge images (override Dawn's negative margin with 0) */
  .product__media-wrapper slider-component.slider-mobile-gutter {
    margin-left: 0;
    margin-right: 0;
    position: relative;  /* anchor for absolutely-positioned pill */
  }

  .product__media-list {
    margin-left: 0;
    width: 100%;
    margin-bottom: 0 !important;
    border-radius: 0;
  }

  .product__media-list .product__media-item {
    width: 100%;
    border-radius: 0;
    overflow: hidden;
  }

  .product__media-item img {
    width: 100%;
    display: block;
  }

  /* Floating pill: prev / counter / next — overlaid on image bottom */
  .product__media-wrapper .slider-buttons {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex !important;
    align-items: center;
    gap: 0.125rem;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--lg-radius-pill);
    padding: 0.2rem 0.35rem;
    z-index: 10;
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
  }

  /* Arrow buttons inside pill */
  .product__media-wrapper .slider-button {
    width: 28px;
    height: 28px;
    background: transparent;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    color: rgb(var(--color-foreground));
    transition: background-color 0.15s, color 0.15s;
    flex-shrink: 0;
  }
  .product__media-wrapper .slider-button:hover {
    background: rgba(var(--lg-gold-rgb), 0.15);
    color: var(--lg-gold);
  }
  .product__media-wrapper .slider-button .svg-wrapper,
  .product__media-wrapper .slider-button .svg-wrapper svg {
    width: 14px;
    height: 14px;
    display: block;
  }

  /* Counter "1 / 5" */
  .product__media-wrapper .slider-counter {
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: rgb(var(--color-foreground));
    min-width: 2.75rem;
    text-align: center;
    line-height: 1;
    padding: 0 0.25rem;
  }

  /* Dark scheme: invert pill background */
  .color-scheme-3 .product__media-wrapper .slider-buttons,
  .color-inverse .product__media-wrapper .slider-buttons {
    background: rgba(20, 20, 20, 0.88);
    border-color: rgba(255, 255, 255, 0.1);
  }
}

/* Sale badge */
.card__badge {
  border-radius: var(--lg-radius-xs);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 4px 10px;
}

/* ── 3. INFO PANEL — TYPOGRAPHY ─────────────────────────────────── */

.product__info-container {
  padding: 0;
}

/* Collection / vendor breadcrumb */
.product__text.caption-with-letter-spacing {
  font-size: 1.2rem;
  letter-spacing: 0.12em;
  color: var(--lg-gold);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
  display: block;
}

/* Product title */
.product__title h1 {
  font-size: clamp(2.55rem, 3vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: rgb(var(--color-foreground));
  margin: 0 0 1rem 0;
}

/* Rating row (JudgeMe) */
.jdgm-widget.jdgm-preview-badge {
  margin-bottom: 1rem;
}
.jdgm-prev-badge__stars {
  font-size: 1.75rem !important;
}

/* ── 4. PRICE DISPLAY ───────────────────────────────────────────── */

.price--large {
  margin-bottom: 0;
}

/* Sale price — main number, bold */
.price--large .price-item--sale.price-item--last {
  font-size: clamp(2.9rem, 3.5vw, 3.85rem);
  font-weight: 800;
  color: rgb(var(--color-foreground));
  letter-spacing: -0.03em;
  line-height: 1;
}

/* Regular price (no sale) */
.price--large .price-item--regular {
  font-size: clamp(2.9rem, 3.5vw, 3.85rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}

/* Compare-at price — struck through */
.price--large .price__sale s.price-item--regular,
.price--large s.price-item--regular {
  font-size: 1.75rem;
  font-weight: 400;
  color: rgba(var(--color-foreground), 0.45);
  text-decoration: line-through;
  text-decoration-color: rgba(var(--color-foreground), 0.35);
}

/* "OFERTA" / "AGOTADO" badges */
.price__badge-sale {
  background-color: var(--lg-gold) !important;
  color: var(--lg-ink) !important;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: var(--lg-radius-xs);
  text-transform: uppercase;
}
.price__badge-sold-out {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: var(--lg-radius-xs);
  text-transform: uppercase;
}

/* Tax / shipping info */
.product__tax {
  font-size: 1.25rem;
  color: rgba(var(--color-foreground), 0.5);
  margin-top: 0.4rem;
}

/* ── 5. VARIANT PICKER ──────────────────────────────────────────── */

/* Label row */
.product-form__input .form__label {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(var(--color-foreground), 0.6);
  margin-bottom: 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.product-form__input .form__label [data-selected-value] {
  font-weight: 600;
  color: rgb(var(--color-foreground));
  text-transform: none;
  letter-spacing: 0;
}

/* Pill buttons */
.product-form__input--pill .swatch-input--disabled + .swatch,
.product-form__input--pill input:disabled + label {
  opacity: 0.3;
  cursor: not-allowed;
}

.swatch-input__input + .product-form__radio,
.product-form__input--pill label {
  min-width: 44px;
  height: 38px;
  padding: 0 14px;
  border: 1.5px solid rgba(var(--color-foreground), 0.2);
  border-radius: var(--lg-radius-xs);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s, background-color 0.2s, color 0.2s;
  background: transparent;
  color: rgb(var(--color-foreground));
}
.swatch-input__input:checked + .product-form__radio,
.product-form__input--pill input:checked + label {
  border-color: var(--lg-gold);
  background-color: var(--lg-gold);
  color: var(--lg-ink);
  font-weight: 700;
}
.swatch-input__input + .product-form__radio:hover,
.product-form__input--pill label:hover {
  border-color: var(--lg-gold);
}

/* Color swatches */
.swatch-input__input + .swatch {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid transparent;
  outline: 2px solid transparent;
  outline-offset: 2px;
  transition: outline-color 0.2s, transform 0.2s;
  box-shadow: 0 2px 6px rgba(0,0,0,0.12);
}
.swatch-input__input:checked + .swatch {
  outline-color: var(--lg-gold);
  transform: scale(1.1);
}
.swatch-input__input + .swatch:hover {
  outline-color: rgba(var(--lg-gold-rgb), 0.5);
}

/* Dropdown select */
.product-form__input--dropdown .select__select {
  border: 1.5px solid rgba(var(--color-foreground), 0.2);
  border-radius: var(--lg-radius-xs);
  height: 42px;
  padding: 0 3rem 0 1rem;
  font-size: 1.45rem;
  font-weight: 500;
  transition: border-color 0.2s;
  background-color: transparent;
}
.product-form__input--dropdown .select__select:focus {
  border-color: var(--lg-gold);
  outline: none;
  box-shadow: 0 0 0 3px rgba(var(--lg-gold-rgb), 0.15);
}

/* ── 6. QUANTITY SELECTOR ───────────────────────────────────────── */

.quantity {
  border: 1.5px solid rgba(var(--color-foreground), 0.15);
  border-radius: var(--lg-radius-xs);
  height: 48px;
  max-width: 130px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.quantity__button {
  width: 44px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  font-size: 2.25rem;
  font-weight: 300;
  color: rgb(var(--color-foreground));
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;
  flex-shrink: 0;
}
.quantity__button:hover {
  background-color: rgba(var(--lg-gold-rgb), 0.1);
  color: var(--lg-gold);
}

.quantity__input {
  width: 100%;
  text-align: center;
  border: none;
  font-size: 1.6rem;
  font-weight: 600;
  background: transparent;
  color: rgb(var(--color-foreground));
  -moz-appearance: textfield;
}
.quantity__input::-webkit-outer-spin-button,
.quantity__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

/* Quantity + buy layout */
.product-form__buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* ── 7. CTA BUTTONS ─────────────────────────────────────────────── */

/* Primary — "Añadir al carrito" */
.product-form__submit.button--primary {
  height: 54px;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--lg-radius-xs);
  background-color: rgb(var(--color-button));
  color: rgb(var(--color-button-text));
  border: none;
  cursor: pointer;
  transition: background-color 0.25s ease, transform 0.1s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}
.product-form__submit.button--primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--lg-gold);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.product-form__submit.button--primary:hover::after {
  opacity: 1;
}
.product-form__submit.button--primary:hover {
  box-shadow: 0 6px 24px rgba(var(--lg-gold-rgb), 0.35);
  transform: translateY(-1px);
}
.product-form__submit.button--primary:active {
  transform: translateY(0) scale(0.99);
  box-shadow: none;
}
.product-form__submit.button--primary:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
/* Text above the ::after overlay */
.product-form__submit.button--primary span {
  position: relative;
  z-index: 1;
}

/* Secondary CTA */
.product-form__submit.button--secondary {
  height: 54px;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--lg-radius-xs);
  background-color: transparent;
  color: rgb(var(--color-foreground));
  border: 1.5px solid rgba(var(--color-foreground), 0.25);
  transition: border-color 0.2s, color 0.2s, background-color 0.2s;
}
.product-form__submit.button--secondary:hover {
  border-color: var(--lg-gold);
  color: var(--lg-gold);
}

/* Dynamic checkout (Shopify Pay, etc.) */
.shopify-payment-button__button--unbranded {
  border-radius: var(--lg-radius-xs) !important;
  font-size: 1.35rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  height: 54px !important;
  transition: opacity 0.2s !important;
}
.shopify-payment-button__button--branded {
  border-radius: var(--lg-radius-xs) !important;
  height: 54px !important;
}

/* ── 8. PRODUCT DESCRIPTION ─────────────────────────────────────── */

.product__description.rte {
  font-size: 1.5rem;
  line-height: 1.75;
  color: rgba(var(--color-foreground), 0.8);
  border-top: 1px solid rgba(var(--color-foreground), 0.08);
  padding-top: 1.4rem;
  margin-top: 0.5rem;
}
.product__description.rte p {
  margin-bottom: 0.85em;
}
.product__description.rte ul,
.product__description.rte ol {
  padding-left: 1.4rem;
  margin-bottom: 0.85em;
}
.product__description.rte li {
  margin-bottom: 0.35em;
}
.product__description.rte strong {
  font-weight: 700;
  color: rgb(var(--color-foreground));
}
.product__description.rte a {
  color: var(--lg-gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.product__description.rte h2,
.product__description.rte h3,
.product__description.rte h4 {
  font-weight: 700;
  margin: 1.4em 0 0.6em;
  letter-spacing: -0.02em;
}

/* Accordion (collapsible tabs) */
.product__accordion.accordion {
  border-top: 1px solid rgba(var(--color-foreground), 0.08);
  border-bottom: none;
  margin-top: 0;
}
.product__accordion.accordion + .product__accordion.accordion {
  border-top: none;
}
.product__accordion summary {
  padding: 1rem 0;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(var(--color-foreground), 0.7);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color 0.2s;
}
.product__accordion summary:hover {
  color: var(--lg-gold);
}
.product__accordion summary .summary__title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.product__accordion details[open] summary {
  color: rgb(var(--color-foreground));
}

/* ── 10. RESPONSIVE BREAKPOINTS ─────────────────────────────────── */

/* Mobile: stacked layout */
@media screen and (max-width: 749px) {
  .product__media-wrapper {
    margin: 0 -1.5rem;
  }

  .product__info-wrapper {
    padding: 1.5rem 0 0;
  }

  .product__title h1 {
    font-size: 2.4rem;
  }

  .price--large .price-item--sale.price-item--last,
  .price--large .price-item--regular {
    font-size: 2.9rem;
  }

  .product-form__buttons {
    gap: 0.6rem;
  }

  .product-form__submit.button--primary,
  .product-form__submit.button--secondary {
    height: 50px;
  }
}

/* Tablet 750–989px: override Dawn's excessive 5rem left padding */
@media screen and (min-width: 750px) and (max-width: 989px) {
  .product__title h1 {
    font-size: 2.7rem;
  }
}

/* Desktop large: generous right padding in info panel */
@media screen and (min-width: 1200px) {
  .product__info-container {
    padding-right: 0.5rem;
  }
}

/* ── 11. MICRO-INTERACTIONS & EXTRAS ────────────────────────────── */

/* Error message */
.product-form__error-message-wrapper {
  background: rgba(255, 59, 48, 0.06);
  border: 1px solid rgba(255, 59, 48, 0.2);
  border-radius: var(--lg-radius-xs);
  padding: 0.75rem 1rem;
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

/* Loading spinner on CTA */
.product-form__submit .loading__spinner {
  width: 18px;
  height: 18px;
}

/* Inventory status */
.product__inventory {
  font-size: 1.3rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.5rem;
}

/* Related products heading */
.related-products .title {
  font-size: clamp(1.9rem, 2.5vw, 2.55rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

/* Pickup availability */
.product__pickup-availabilities {
  font-size: 1.3rem;
  margin-top: 0.75rem;
  color: rgba(var(--color-foreground), 0.65);
}

/* Page width inside product section */
.section-main-product .page-width {
  padding-top: 0;
}

/* SKU */
.product__sku {
  font-size: 1.25rem;
  color: rgba(var(--color-foreground), 0.4);
  letter-spacing: 0.05em;
}

/* Fix header overlap over product media modal on mobile and desktop */
.product-media-modal[open] {
  z-index: 500000 !important;
}

.product-media-modal__toggle {
  z-index: 500002 !important;
}

/* Reducir el z-index del header cuando el modal de imágenes del producto está abierto
   para evitar que la barra de navegación tape el botón de cerrar en móviles */
body:has(product-modal[open]) .shopify-section-group-header-group,
body:has(product-modal[open]) .shopify-section-header-sticky,
body:has(product-modal[open]) .header-wrapper,
body:has(.product-media-modal[open]) .shopify-section-group-header-group,
body:has(.product-media-modal[open]) .shopify-section-header-sticky,
body:has(.product-media-modal[open]) .header-wrapper {
  z-index: 100 !important;
}

/* Premium Zoom and Pan Styles for product media modal */
.product-media-modal__content img {
  transition: transform 0.25s ease-out !important;
  cursor: zoom-in !important;
  touch-action: none; /* Prevent scroll when touching the image inside modal */
  transform-origin: center center !important;
}

.product-media-modal__content img.is-zoomed {
  transform: scale(2.4) translate(var(--pan-x, 0px), var(--pan-y, 0px)) !important;
  cursor: zoom-out !important;
  z-index: 10 !important;
  position: relative !important;
}
