/** Shopify CDN: Minification failed

Line 446:0 Unexpected "}"

**/
/* ============================================================
   LUXURY PRODUCT — luxury-product.css
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
  --lp-bg:                  #080808;
  --lp-accent:              #c9a84c;
  --lp-border:              #1f1f1f;
  --lp-text-primary:        #f5f0e8;
  --lp-text-muted:          #9e9a94;
  --lp-btn-cart-border:     #c9a84c;
  --lp-btn-cart-text:       #c9a84c;
  --lp-btn-cart-hover-bg:   #c9a84c;
  --lp-btn-cart-hover-text: #000;
  --lp-btn-buy-bg:          #f5f0e8;
  --lp-btn-buy-text:        #000;
  --lp-btn-buy-hover-bg:    #080808;
  --lp-btn-buy-hover-text:  #f5f0e8;
  --lp-font-title:          'Barlow', sans-serif;
  --lp-font-body:           'Barlow', sans-serif;
  --lp-intro-weight:        700;
  --lp-ease:                cubic-bezier(0.76, 0, 0.24, 1);
  /* Altura del header del tema — ajusta si tu header es diferente */
  --lp-header-h:            60px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { background: var(--lp-bg); color: var(--lp-text-primary); }

/* ─────────────────────────────────────────
   INTRO
───────────────────────────────────────── */
.lp-intro {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  overflow: hidden;
}
.lp-intro__bg { position: absolute; inset: 0; background: #000; }

.lp-intro__name {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 40px;
  overflow: hidden;
}

.lp-intro__name-text {
  display: block;
  font-family: var(--lp-font-title);
  font-size: clamp(22px, 4.5vw, 66px);
  font-weight: var(--lp-intro-weight, 700);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #fff;
  transform: translateY(110%);
  opacity: 0;
  text-shadow: none;
  transition:
    transform 1s var(--lp-ease) 0.15s,
    opacity   1s ease           0.15s;
}

/* Glow dorado que se expande elegantemente alrededor del texto */
@keyframes lp-glow-expand {
  0%   { text-shadow: 0 0 0px   rgba(201,168,76,0); }
  25%  { text-shadow: 0 0 8px   rgba(201,168,76,0.18); }
  60%  { text-shadow:
           0 0 16px  rgba(201,168,76,0.38),
           0 0 40px  rgba(201,168,76,0.16); }
  100% { text-shadow:
           0 0 12px  rgba(201,168,76,0.32),
           0 0 36px  rgba(201,168,76,0.14),
           0 0 80px  rgba(201,168,76,0.06); }
}

.lp-intro.is-name-visible .lp-intro__name-text {
  transform: translateY(0);
  opacity: 1;
  /* Glow arranca 0.7s después del slide-up, dura 1.8s */
  animation: lp-glow-expand 1.8s ease-out 0.7s forwards;
}

.lp-intro__reveal {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: #fff;
  opacity: 0;
  pointer-events: none;
  backdrop-filter: blur(0px);
  transition: opacity 0.9s ease, backdrop-filter 0.9s ease;
}
.lp-intro.is-revealing .lp-intro__reveal {
  opacity: 1;
  backdrop-filter: blur(24px);
}
.lp-intro.is-revealing.is-fading .lp-intro__reveal {
  opacity: 0;
  backdrop-filter: blur(0px);
}
.lp-intro.is-done .lp-intro__bg { opacity: 0; transition: opacity 0.4s ease; }
.lp-intro.is-done .lp-intro__name-text { opacity: 0; transition: opacity 0.2s ease; }
.lp-intro.is-gone { display: none; }

/* ─────────────────────────────────────────
   DESKTOP WRAPPER (3 cols)
───────────────────────────────────────── */
.lp-wrapper {
  display: grid;
  grid-template-columns: 28% 42% 30%;
  min-height: 100vh;
  background: var(--lp-bg);
  opacity: 0;
  transition: opacity 0.5s ease;
}
.lp-wrapper.is-visible { opacity: 1; }

.lp-info {
  position: sticky; top: 0; height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 60px 44px 60px 56px;
  border-right: 1px solid var(--lp-border);
}
.lp-info__vendor {
  font-size: 10px; font-weight: 500; letter-spacing: 0.4em;
  text-transform: uppercase; color: var(--lp-accent); margin-bottom: 20px;
}
.lp-info__title {
  font-family: var(--lp-font-title);
  line-height: 1.1; letter-spacing: 0.04em;
  color: var(--lp-text-primary); margin-bottom: 28px; text-transform: uppercase;
}
.lp-info__divider {
  width: 40px; height: 1px;
  background: linear-gradient(90deg, var(--lp-accent), transparent);
  margin-bottom: 24px;
}
.lp-info__desc {
  font-family: var(--lp-font-body); line-height: 1.85;
  color: var(--lp-text-muted); max-height: 38vh;
  overflow-y: auto; scrollbar-width: none; letter-spacing: 0.02em;
}
.lp-info__desc::-webkit-scrollbar { display: none; }
.lp-info__desc p { margin-bottom: 10px; }
.lp-info__sku {
  margin-top: 32px; font-size: 9px; letter-spacing: 0.35em;
  text-transform: uppercase; color: var(--lp-text-muted); opacity: 0.5;
}

/* ── CENTER REEL ── */
.lp-reel-outer { position: relative; }
.lp-reel-sticky { position: sticky; top: 0; height: 100vh; overflow: hidden; }
.lp-reel { position: relative; width: 100%; height: 100%; }

.lp-reel__slide {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  transform: translateY(100%);
  transition: transform 0.85s var(--lp-ease);
}
.lp-reel__slide[data-index="0"] { transform: translateY(0%); }
.lp-reel__slide.is-current { transform: translateY(0%);    z-index: 2; }
.lp-reel__slide.is-above   { transform: translateY(-100%); z-index: 1; }
.lp-reel__slide.is-below   { transform: translateY(100%);  z-index: 1; }

.lp-reel__slide img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.88); transition: filter 0.5s ease; }
.lp-reel__slide.is-current img { filter: brightness(1); }

.lp-reel__video-wrap { position: absolute; inset: 0; }
.lp-reel__video, .lp-reel__iframe { width: 100%; height: 100%; object-fit: cover; border: none; }
.lp-placeholder-img { width: 100%; height: 100%; object-fit: cover; opacity: 0.1; }

.lp-reel__dots {
  position: absolute; right: 18px; top: 50%; transform: translateY(-50%);
  z-index: 10; display: flex; flex-direction: column; gap: 7px;
}
.lp-reel__dot {
  width: 2px; height: 18px; border: none;
  background: rgba(255,255,255,0.18); cursor: pointer; padding: 0;
  transition: background 0.3s ease, height 0.3s ease;
}
.lp-reel__dot.is-active { background: var(--lp-accent); height: 30px; }

.lp-reel__counter {
  position: absolute; bottom: 24px; left: 24px; z-index: 10;
  font-family: var(--lp-font-body); font-size: 10px; letter-spacing: 0.22em;
  color: rgba(255,255,255,0.4); display: flex; align-items: center; gap: 6px;
}
#lp-reel-current { color: var(--lp-accent); font-weight: 500; }
.lp-reel__counter-sep { opacity: 0.35; }

/* ── RIGHT BUY ── */
.lp-buy {
  position: sticky; top: 0; height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 60px 56px 60px 44px;
  border-left: 1px solid var(--lp-border);
}
.lp-buy__price-wrap { margin-bottom: 36px; padding-bottom: 28px; border-bottom: 1px solid var(--lp-border); }
.lp-buy__label { font-family: var(--lp-font-body); letter-spacing: 0.35em; text-transform: uppercase; color: var(--lp-text-muted); margin-bottom: 6px; }
.lp-buy__price { font-family: var(--lp-font-title); color: var(--lp-text-primary); line-height: 1; margin-bottom: 6px; }
.lp-buy__compare { font-size: 13px; color: var(--lp-text-muted); text-decoration: line-through; opacity: 0.55; }
.lp-buy__variants { margin-bottom: 32px; }
.lp-buy__option   { margin-bottom: 18px; }
.lp-buy__option-name { font-family: var(--lp-font-body); font-size: 9px; letter-spacing: 0.35em; text-transform: uppercase; color: var(--lp-text-muted); margin-bottom: 9px; }
.lp-buy__option-values { display: flex; flex-wrap: wrap; gap: 7px; }
.lp-buy__opt-btn {
  background: transparent; border: 1px solid var(--lp-border);
  color: var(--lp-text-primary); font-family: var(--lp-font-body);
  font-size: 11px; letter-spacing: 0.1em; padding: 7px 14px; cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.lp-buy__opt-btn:hover { border-color: var(--lp-accent); color: var(--lp-accent); }
.lp-buy__opt-btn.is-active { background: var(--lp-accent); border-color: var(--lp-accent); color: #000; font-weight: 600; }
.lp-buy__actions { display: flex; flex-direction: column; gap: 10px; }
.lp-buy__btn {
  width: 100%; padding: 15px 20px; border: none; cursor: pointer;
  font-family: var(--lp-font-body); letter-spacing: 0.22em; text-transform: uppercase;
  font-weight: 500; position: relative; overflow: hidden; transition: color 0.35s var(--lp-ease);
}
.lp-buy__btn-inner { display: flex; align-items: center; justify-content: center; gap: 9px; position: relative; z-index: 1; }
.lp-buy__btn--cart { background: transparent; border: 1px solid var(--lp-btn-cart-border); color: var(--lp-btn-cart-text); }
.lp-buy__btn--cart::before {
  content: ''; position: absolute; inset: 0;
  background: var(--lp-btn-cart-hover-bg); transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--lp-ease);
}
.lp-buy__btn--cart:hover::before { transform: scaleX(1); }
.lp-buy__btn--cart:hover { color: var(--lp-btn-cart-hover-text); }
.lp-buy__btn--buy {
  background: var(--lp-btn-buy-bg); color: var(--lp-btn-buy-text); border: 1px solid var(--lp-btn-buy-bg);
  transition: background 0.35s var(--lp-ease), color 0.35s var(--lp-ease), border-color 0.35s var(--lp-ease);
}
.lp-buy__btn--buy:hover { background: var(--lp-btn-buy-hover-bg); color: var(--lp-btn-buy-hover-text); border-color: var(--lp-btn-buy-hover-text); }
.lp-buy__guarantee { margin-top: 20px; font-size: 9px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--lp-text-muted); text-align: center; opacity: 0.5; }
#lp-reel-spacer { background: var(--lp-bg); }

/* ─────────────────────────────────────────
   MOBILE
───────────────────────────────────────── */
.lp-mob { display: none; }

@media (max-width: 768px) {

  .lp-wrapper,
  #lp-reel-spacer {
    display: none !important;
  }

  .lp-mob {
    display: block;
    position: relative;
    background: var(--lp-bg);
    opacity: 1;
    z-index: 1;
  }

}
  .lp-mob.is-visible { opacity: 1; }

  /* ── Reel móvil ── */
  .lp-mob__reel-outer { position: relative; }

  .lp-mob__reel-sticky {
    position: sticky;
    top: 0;
    height: 100svh;
    width: 100%;
    overflow: hidden;
  }

  .lp-mob__reel { position: relative; width: 100%; height: 100%; }

  .lp-mob__slide {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    transform: translateY(100%);
    transition: transform 0.85s var(--lp-ease);
  }
  .lp-mob__slide[data-index="0"] { transform: translateY(0%); }
  .lp-mob__slide.is-current { transform: translateY(0%);    z-index: 2; }
  .lp-mob__slide.is-above   { transform: translateY(-100%); z-index: 1; }
  .lp-mob__slide.is-below   { transform: translateY(100%);  z-index: 1; }
  .lp-mob__slide img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }

  /* Counter lateral */
  .lp-mob__counter {
    position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
    z-index: 10; font-family: var(--lp-font-body); font-size: 9px;
    letter-spacing: 0.2em; color: rgba(255,255,255,0.4);
    display: flex; flex-direction: column; align-items: center; gap: 3px;
  }
  #lp-mob-current { color: var(--lp-accent); font-weight: 500; }

  /* ── Overlay SUPERIOR — siempre visible, respeta el header ── */
  .lp-mob__top {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 200;
    /* Empuja el contenido hacia abajo para quedar bajo el header del tema.
       var(--lp-header-h) se puede ajustar en :root si el header es diferente. */
    padding-top: calc(var(--lp-header-h) + 12px);
    padding-left: 18px;
    padding-right: 18px;
    padding-bottom: 40px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.84) 30%, transparent 100%);
    pointer-events: none;
  }

  .lp-mob__title {
    font-family: var(--lp-font-title);
    line-height: 1.1; letter-spacing: 0.05em;
    text-transform: uppercase; color: var(--lp-text-primary);
    text-shadow: 0 2px 20px rgba(0,0,0,0.95);
  }

  /* ── Overlay INFERIOR — siempre visible ── */
  .lp-mob__bot {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 200;
    padding: 24px 18px calc(env(safe-area-inset-bottom, 0px) + 14px);
    background: linear-gradient(to top, rgba(0,0,0,0.95) 60%, transparent 100%);
    display: flex; flex-direction: column; gap: 6px;
  }

  /* Descripción — tappable, cortada con fade */
  .lp-mob__desc-trigger {
    display: flex; align-items: flex-end; gap: 6px;
    background: none; border: none; padding: 0;
    cursor: pointer; text-align: left; width: 100%;
  }

  .lp-mob__desc {
    flex: 1;
    font-family: var(--lp-font-body); color: var(--lp-text-muted);
    line-height: 1.5; max-height: 32px; overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, #000 70%, transparent 100%);
    mask-image: linear-gradient(to right, #000 70%, transparent 100%);
  }

  .lp-mob__desc-hint {
    flex-shrink: 0; color: var(--lp-accent); opacity: 0.8;
    display: flex; align-items: center;
  }

  .lp-mob__price-row {
    display: flex; align-items: baseline; gap: 10px;
  }
  .lp-mob__price-label {
    font-family: var(--lp-font-body); letter-spacing: 0.3em;
    text-transform: uppercase; color: var(--lp-text-muted);
  }
  .lp-mob__price {
    font-family: var(--lp-font-title); color: var(--lp-text-primary);
  }

  .lp-mob__variants .lp-buy__option   { margin-bottom: 5px; }
  .lp-mob__variants .lp-buy__option-name { font-size: 8px; margin-bottom: 4px; }
  .lp-mob__variants .lp-buy__opt-btn  { padding: 4px 9px; font-size: 10px; }

  .lp-mob__actions { display: flex; gap: 8px; margin-top: 2px; }
  .lp-mob__actions .lp-buy__btn { flex: 1; padding: 10px 8px; }

  /* ── Modal de descripción completa ── */
  .lp-desc-modal {
    position: fixed; inset: 0; z-index: 500;
    display: flex; align-items: flex-end;
    opacity: 0; pointer-events: none;
    transition: opacity 0.3s ease;
  }
  .lp-desc-modal.is-open {
    opacity: 1; pointer-events: all;
  }

  /* Backdrop con blur */
  .lp-desc-modal__backdrop {
    position: absolute; inset: 0;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }

  /* Cuadro con el texto */
  .lp-desc-modal__box {
    position: relative; z-index: 1;
    width: 100%;
    max-height: 72svh;
    background: #111;
    border-top: 1px solid var(--lp-border);
    border-radius: 16px 16px 0 0;
    padding: 24px 22px 40px;
    display: flex; flex-direction: column; gap: 16px;
    transform: translateY(100%);
    transition: transform 0.4s var(--lp-ease);
    overflow: hidden;
  }
  .lp-desc-modal.is-open .lp-desc-modal__box {
    transform: translateY(0);
  }

  /* Handle decorativo arriba */
  .lp-desc-modal__box::before {
    content: '';
    display: block; width: 36px; height: 3px;
    background: rgba(255,255,255,0.2);
    border-radius: 2px;
    margin: 0 auto 8px;
    flex-shrink: 0;
  }

  .lp-desc-modal__close {
    position: absolute; top: 20px; right: 18px;
    background: none; border: none; cursor: pointer;
    color: var(--lp-text-muted); padding: 4px;
    display: flex; align-items: center; justify-content: center;
  }

  .lp-desc-modal__title {
    font-family: var(--lp-font-title);
    font-size: 13px; font-weight: 600;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--lp-accent); flex-shrink: 0;
  }

  .lp-desc-modal__content {
    font-family: var(--lp-font-body);
    color: var(--lp-text-muted); line-height: 1.75;
    overflow-y: auto; scrollbar-width: none;
  }
  .lp-desc-modal__content::-webkit-scrollbar { display: none; }
  .lp-desc-modal__content p { margin-bottom: 10px; }
}
@media (max-width: 768px) {
  .lp-mob img:not(.lp-mob__slide img) {
    object-fit: cover;
  }
}

/* ── Scrollbar ── */
html { scrollbar-width: thin; scrollbar-color: var(--lp-accent) var(--lp-bg); }
html::-webkit-scrollbar { width: 3px; }
html::-webkit-scrollbar-track { background: var(--lp-bg); }
html::-webkit-scrollbar-thumb { background: var(--lp-accent); 
}

@media screen and (max-width: 768px) {

  .lp-mob__desc-trigger.active .lp-mob__desc,
  .lp-mob__desc-trigger[aria-expanded="true"] .lp-mob__desc {
    max-height: 140px !important;
    overflow-y: auto !important;
    -webkit-mask-image: none !important;
    mask-image: none !important;
  }

}