/** Shopify CDN: Minification failed

Line 611:11 Expected identifier but found whitespace
Line 611:20 Unexpected ";"

**/
/* ============================================================
   ALBATRO GOLF — GOD MODE V3
   Tokens reales del sitio: --alb-green/gold/bone/black
   ============================================================ */

:root {
  --ag-green:      #1A3D2E;
  --ag-green-dark: #102618;
  --ag-gold:       #C9A84C;
  --ag-gold-dim:   #8a722d;
  --ag-bone:       #F8F6F1;
  --ag-black:      #0A0A0A;
  --ag-gray:       #6B6B6B;
  --ease-expo:     cubic-bezier(0.16, 1, 0.3, 1);
  --ease-bounce:   cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

/* ─── LENIS smooth scroll setup ────────────────────── */
html.lenis { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

/* ─── SCROLL PROGRESS BAR ───────────────────────── */
#ag-progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--ag-green), var(--ag-gold), var(--ag-gold));
  transform-origin: left;
  transform: scaleX(0);
  z-index: 9997;
  pointer-events: none;
}

/* ─── CURSOR PERSONALIZADO ───────────────────── */
@media (hover: hover) and (pointer: fine) {
  body, a, button, .alb-col-card, [class*="card"] { cursor: none; }

  #ag-cursor {
    position: fixed; top: 0; left: 0;
    pointer-events: none;
    z-index: 9998;
  }
  #ag-cursor-dot {
    width: 18px; height: 18px;
    background: none;
    border-radius: 0;
    transform: translate(-50%, -50%);
    transition: width 260ms var(--ease-expo), height 260ms var(--ease-expo);
    will-change: transform;
  }
  #ag-cursor-dot svg { display: block; width: 100%; height: 100%; }
  #ag-cursor-circle {
    position: absolute; top: 0; left: 0;
    width: 30px; height: 30px;
    border: 1.5px solid rgba(201,168,76,0.5);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 400ms var(--ease-expo), height 400ms var(--ease-expo), opacity 250ms;
  }
  body.ag-hovering #ag-cursor-dot   { width: 22px; height: 22px; }
  body.ag-hovering #ag-cursor-circle{ opacity: 0; }
}

/* ─── HERO: Spotlight + Ken Burns + Animaciones ───────── */
.alb-hero {
  position: relative;
  overflow: hidden !important;
}

/* Ken Burns infinito en la imagen de fondo */
.alb-hero .alb-hero-bg {
  animation: agKenBurns 28s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes agKenBurns {
  0%   { transform: scale(1.0)  translate(0, 0); }
  100% { transform: scale(1.12) translate(-2%, -1.5%); }
}

/* Spotlight que sigue al cursor */
.alb-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(
    600px circle at var(--mx, 50%) var(--my, 50%),
    rgba(201,168,76,0.18) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 400ms;
}
.alb-hero.ag-mouse-in::before { opacity: 1; }

/* Línea dorada decorativa en hero */
.ag-hero-line {
  position: absolute;
  top: 50%; right: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--ag-gold) 30%, var(--ag-gold));
  z-index: 1;
  animation: agDrawLine 1.6s var(--ease-expo) 0.4s forwards;
}
@keyframes agDrawLine {
  to { width: 35%; }
}

/* SVG golf ball decorativo flotante */
.ag-floating-ball {
  position: absolute;
  top: 18%; right: 8%;
  width: 90px; height: 90px;
  z-index: 1;
  opacity: 0.18;
  animation: agFloat 6s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes agFloat {
  0%   { transform: translate(0, 0) rotate(0deg); }
  100% { transform: translate(-30px, 20px) rotate(15deg); }
}
@media (max-width: 768px) { .ag-floating-ball { display: none; } }

/* Hero: H1 split por palabras */
.alb-hero h1 .ag-hword {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
}
.alb-hero h1 .ag-hword > span {
  display: inline-block;
  transform: translateY(120%);
  opacity: 0;
  transition: transform 1s var(--ease-expo), opacity 1s;
}
.alb-hero.ag-in h1 .ag-hword > span {
  transform: translateY(0);
  opacity: 1;
}
.alb-hero h1 .ag-hword:nth-child(2) > span { transition-delay: 0.12s; }
.alb-hero h1 .ag-hword:nth-child(3) > span { transition-delay: 0.24s; }
.alb-hero h1 .ag-hword:nth-child(4) > span { transition-delay: 0.36s; }
.alb-hero h1 em.ag-hword > span            { transition-delay: 0.48s; }

/* Eyebrow desliza desde izquierda */
.alb-hero .alb-hero-eyebrow {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 800ms, transform 800ms var(--ease-expo);
}
.alb-hero.ag-in .alb-hero-eyebrow { opacity: 1; transform: translateX(0); }

/* Sub texto fade-up */
.alb-hero .alb-hero-sub,
.alb-hero .alb-hero-actions,
.alb-hero .alb-hero-stats {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 900ms, transform 900ms var(--ease-expo);
}
.alb-hero.ag-in .alb-hero-sub     { transition-delay: 0.6s;  opacity: 1; transform: translateY(0); }
.alb-hero.ag-in .alb-hero-actions { transition-delay: 0.8s;  opacity: 1; transform: translateY(0); }
.alb-hero.ag-in .alb-hero-stats   { transition-delay: 1.0s;  opacity: 1; transform: translateY(0); }

/* Counter underline animado */
.alb-stat-num {
  position: relative;
  display: inline-block !important;
}
.alb-stat-num::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 0;
  width: 0;
  height: 2px;
  background: var(--ag-gold);
  transition: width 800ms var(--ease-expo);
}
.alb-hero.ag-in .alb-stat-num::after {
  width: 60%;
  transition-delay: 1.4s;
}

/* Botones del hero — shine de paso */
.alb-btn-gold, .alb-btn-ghost-white {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.alb-btn-gold::after, .alb-btn-ghost-white::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
    transparent 30%,
    rgba(255,255,255,0.25) 50%,
    transparent 70%
  );
  transform: translateX(-100%) skewX(-15deg);
  transition: transform 0ms;
  pointer-events: none;
  z-index: 1;
}
.alb-btn-gold:hover::after,
.alb-btn-ghost-white:hover::after {
  transform: translateX(200%) skewX(-15deg);
  transition: transform 700ms var(--ease-expo);
}

/* ─── COLLECTION CARDS — Hover GOD ───────────────── */
.alb-col-card {
  position: relative;
  overflow: hidden;
  transition: transform 400ms var(--ease-expo), box-shadow 400ms;
  will-change: transform;
}
.alb-col-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  height: 2px;
  background: var(--ag-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 500ms var(--ease-expo);
}
.alb-col-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 22px 45px rgba(26,61,46,0.18) !important;
}
.alb-col-card:hover::before { transform: scaleX(1); }
.alb-col-card .alb-col-img-wrap img {
  transition: transform 700ms var(--ease-expo);
}
.alb-col-card:hover .alb-col-img-wrap img {
  transform: scale(1.15) rotate(-3deg);
}

/* ─── PRODUCT CARDS TILT + REVEAL ────────────────── */
.card-wrapper, .product-card-wrapper, [class*="card--product"] {
  transform-style: preserve-3d;
  will-change: transform;
  transition: box-shadow 400ms;
}
.ag-tilt-shine {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transition: opacity 300ms;
  z-index: 2;
  mix-blend-mode: overlay;
}

/* ─── SCROLL REVEAL GENÉRICO ───────────────────── */
.ag-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-expo), transform 0.9s var(--ease-expo);
}
.ag-reveal.ag-in {
  opacity: 1;
  transform: translateY(0);
}

/* ─── MARQUEE ────────────────────────────────── */
.ag-marquee {
  overflow: hidden;
  background: var(--ag-green-dark);
  padding: 13px 0;
  position: relative;
}
.ag-marquee__track {
  display: inline-flex;
  animation: agScroll 32s linear infinite;
  white-space: nowrap;
  will-change: transform;
}
.ag-marquee:hover .ag-marquee__track { animation-play-state: paused; }
.ag-marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 0 40px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(248,246,241,0.85);
  font-family: 'Inter', sans-serif;
}
.ag-marquee__sep {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--ag-gold);
}
@keyframes agScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── BIG WORD SCROLL REVEAL ────────────────────── */
.ag-bigword-section {
  position: relative;
  padding: 100px 24px;
  background: var(--ag-bone);
  overflow: hidden;
  text-align: center;
}
.ag-bigword {
  font-family: 'Fraunces', 'Georgia', serif;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(60px, 14vw, 220px);
  line-height: 1;
  color: var(--ag-green);
  margin: 0;
  letter-spacing: -0.03em;
}
.ag-bigword .ag-bigword-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(40%) rotate(8deg);
  transition: opacity 700ms var(--ease-expo), transform 800ms var(--ease-expo);
}
.ag-bigword.ag-in .ag-bigword-char {
  opacity: 1;
  transform: translateY(0) rotate(0);
}
.ag-bigword-sub {
  margin-top: 28px;
  font-size: 13px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ag-gray);
  font-weight: 600;
}

/* ─── STICKY ATC ───────────────────────────────── */
.ag-atc-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(10,10,10,0.94);
  backdrop-filter: blur(18px) saturate(1.6);
  -webkit-backdrop-filter: blur(18px) saturate(1.6);
  border-top: 1px solid rgba(201,168,76,0.25);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px clamp(16px, 5vw, 56px);
  transform: translateY(100%);
  transition: transform 450ms var(--ease-expo);
}
.ag-atc-bar.visible { transform: translateY(0); }
.ag-atc-bar__name { color:#fff; font-size:0.9rem; font-weight:600; }
.ag-atc-bar__price { color: var(--ag-gold); font-size:0.8rem; font-weight:700; }
.ag-atc-bar__btn {
  background: var(--ag-gold);
  color: var(--ag-black);
  border: none;
  padding: 12px 30px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 200ms;
}
.ag-atc-bar__btn:hover { opacity: 0.85; }
@media (max-width: 600px) {
  .ag-atc-bar { flex-direction: column; align-items: stretch; text-align: center; }
}

/* ─── BACK TO TOP ──────────────────────────────── */
#ag-top {
  position: fixed;
  bottom: 28px; right: 24px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--ag-green);
  border: 1px solid var(--ag-gold);
  display: grid;
  place-items: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px) scale(0.8);
  transition: opacity 350ms, transform 350ms, background 200ms;
  z-index: 190;
  pointer-events: none;
}
#ag-top.visible { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
#ag-top:hover { background: var(--ag-gold); }
#ag-top:hover svg { stroke: var(--ag-black); }
#ag-top svg { width: 18px; height: 18px; stroke: #fff; transition: stroke 200ms; }

/* ─── BALL TRAJECTORY ⛳ ─────────────────────────── */
#ag-traj-svg { mix-blend-mode: screen; }
#ag-traj-ball { will-change: cx, cy; }

/* ─── 3D DEPTH SECTIONS 🌐 ────────────────────────── */
.shopify-section {
  transform-style: preserve-3d;
  perspective: 1200px;
}

/* Hide animated elements on mobile/tablet */
@media (max-width: 899px) {
  #ag-traj-svg       { display: none !important; }
}

/* ─── ACCESSIBILITY ──────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .ag-marquee__track { animation: none; }
  .alb-hero .alb-hero-bg { animation: none; }
  .ag-floating-ball { animation: none; }
}
:focus-visible {
  outline: 2px solid var(--ag-gold);
  outline-offset: 3px;
}


/* ─── GOLF SWING SPRITE IMAGE (data-URI) ──────────────── */


/* ─── SCROLL EXPAND MEDIA HERO (V5) ──────────────────── */
html.ag-sxm-lock,
html.ag-sxm-lock body { overflow: hidden !important; }

#ag-sxm {
  position: relative;
  width: 100%;
  min-height: 100dvh;
  overflow: hidden;
  background: var(--ag-black, #0a0a0a);
  isolation: isolate;
}

.ag-sxm-bgwrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  transition: opacity 0.1s linear;
  will-change: opacity;
}
.ag-sxm-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.ag-sxm-bg-tint {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.10);
  pointer-events: none;
}

.ag-sxm-stage {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ag-sxm-media {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 400px;
  max-width: 95vw;
  max-height: 85vh;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.35), 0 0 30px rgba(201, 168, 76, 0.12);
  z-index: 0;
  will-change: width, height;
}
.ag-sxm-media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ag-sxm-media-tint {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.30);
  pointer-events: none;
}
.ag-sxm-sublabels {
  position: absolute;
  bottom: 14px;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 2;
  pointer-events: none;
}
.ag-sxm-date {
  margin: 0 0 4px;
  font-family: 'Jost', sans-serif;
  font-size: clamp(14px, 1.4vw, 22px);
  color: #cfe2ff;
  text-shadow: 0 2px 6px rgba(0,0,0,0.55);
  letter-spacing: 0.02em;
  will-change: transform;
}
.ag-sxm-cta {
  margin: 0;
  font-family: 'Jost', sans-serif;
  font-size: clamp(11px, 0.9vw, 14px);
  color: #cfe2ff;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-shadow: 0 2px 6px rgba(0,0,0,0.6);
  font-weight: 500;
  will-change: transform;
}

.ag-sxm-title {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  mix-blend-mode: difference;
}
.ag-sxm-title h1 {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  font-weight: 700;
  font-style: italic;
  color: #cfe2ff;
  letter-spacing: -0.01em;
  line-height: 1;
  text-align: center;
}
.ag-sxm-w1, .ag-sxm-w2 {
  display: block;
  font-size: clamp(2.5rem, 7vw, 6rem);
  will-change: transform;
}

.ag-sxm-hint {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-size: 22px;
  color: rgba(201, 168, 76, 0.85);
  animation: ag-sxm-bounce 1.8s ease-in-out infinite;
  pointer-events: none;
}
@keyframes ag-sxm-bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50%      { transform: translate(-50%, 10px); }
}

@media (max-width: 767px) {
  .ag-sxm-w1, .ag-sxm-w2 { font-size: clamp(2rem, 10vw, 3.5rem); }
}

/* ─── CINEMATIC HERO (V6) ──────────────────────────── */
#ag-cine {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100dvh;
  min-height: 600px;
  overflow: hidden;
  background: #050505;
  isolation: isolate;
  z-index: 9999;
}
#ag-cine.ag-cine-exit {
  transform: translateY(-100%);
  transition: transform 0.85s cubic-bezier(0.76, 0, 0.24, 1);
  pointer-events: none;
}
  position: absolute;
  inset: -8% -4%;          /* slight overflow so ken-burns/parallax never expose edge */
  z-index: 0;
  will-change: transform;
}
.ag-cine-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  display: block;
  transform: scale(1.06) translate(0, 0);
  animation: ag-cine-kenburns 22s ease-in-out infinite alternate;
  opacity: 0;
  transition: opacity 1.6s cubic-bezier(0.22, 1, 0.36, 1);
}
#ag-cine.ag-cine-in .ag-cine-img { opacity: 1; }

@keyframes ag-cine-kenburns {
  0%   { transform: scale(1.06) translate(0%, 0%); }
  50%  { transform: scale(1.14) translate(-1.5%, -1%); }
  100% { transform: scale(1.10) translate(1.5%, 1%); }
}

/* Vignette: dark edges, lighter center */
.ag-cine-vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 55%, rgba(0,0,0,0) 0%, rgba(0,0,0,0.25) 55%, rgba(0,0,0,0.65) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.20) 0%, rgba(0,0,0,0) 30%, rgba(0,0,0,0) 65%, rgba(0,0,0,0.45) 100%);
}

/* Light sweep: diagonal golden shimmer every ~9s */
.ag-cine-sweep {
  position: absolute;
  inset: -20% -50%;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    115deg,
    transparent 35%,
    rgba(201, 168, 76, 0.10) 47%,
    rgba(255, 230, 170, 0.18) 50%,
    rgba(201, 168, 76, 0.10) 53%,
    transparent 65%
  );
  transform: translateX(-120%);
  animation: ag-cine-sweep 9s ease-in-out 3s infinite;
  mix-blend-mode: screen;
}
@keyframes ag-cine-sweep {
  0%   { transform: translateX(-120%); }
  55%  { transform: translateX(120%); }
  100% { transform: translateX(120%); }
}

/* Content (title, sub, CTAs) */
.ag-cine-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 6vw;
  will-change: transform, opacity;
}
.ag-cine-title {
  margin: 0;
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #ffffff;
  font-size: clamp(2.8rem, 8vw, 7rem);
  line-height: 0.95;
  text-shadow: 0 6px 32px rgba(0, 0, 0, 0.55), 0 2px 8px rgba(0, 0, 0, 0.4);
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1.1s 0.25s cubic-bezier(0.22, 1, 0.36, 1),
              transform 1.1s 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.ag-cine-sub {
  margin: 1.2rem 0 2rem;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: clamp(0.95rem, 1.2vw, 1.2rem);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(201, 168, 76, 0.95);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.65);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 1.0s 0.55s cubic-bezier(0.22, 1, 0.36, 1),
              transform 1.0s 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.ag-cine-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 1.0s 0.85s cubic-bezier(0.22, 1, 0.36, 1),
              transform 1.0s 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}
#ag-cine.ag-cine-in .ag-cine-title,
#ag-cine.ag-cine-in .ag-cine-sub,
#ag-cine.ag-cine-in .ag-cine-ctas {
  opacity: 1;
  transform: translateY(0);
}

.ag-cine-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 999px;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
              background 0.35s, color 0.35s, box-shadow 0.35s;
  will-change: transform;
}
.ag-cine-btn-gold {
  background: linear-gradient(135deg, #d8b864 0%, #b8923e 100%);
  color: #0a0a0a;
  box-shadow: 0 10px 30px rgba(201, 168, 76, 0.35), inset 0 0 0 1px rgba(255, 255, 255, 0.15);
}
.ag-cine-btn-gold:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 14px 38px rgba(201, 168, 76, 0.5), inset 0 0 0 1px rgba(255, 255, 255, 0.25);
}
.ag-cine-btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, 0.4);
}
.ag-cine-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px) scale(1.02);
  box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, 0.75);
}

/* Scroll hint at bottom */
.ag-cine-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  width: 26px;
  height: 42px;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  border-radius: 13px;
  opacity: 0;
  transition: opacity 1s 1.4s ease;
  pointer-events: none;
}
.ag-cine-scroll-hint span {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 8px;
  background: rgba(201, 168, 76, 0.95);
  border-radius: 2px;
  animation: ag-cine-scroll-dot 1.8s ease-in-out infinite;
}
#ag-cine.ag-cine-in .ag-cine-scroll-hint { opacity: 1; }
@keyframes ag-cine-scroll-dot {
  0%   { transform: translate(-50%, 0);   opacity: 1; }
  60%  { transform: translate(-50%, 14px); opacity: 0; }
  100% { transform: translate(-50%, 0);   opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .ag-cine-img { animation: none; }
  .ag-cine-sweep { display: none; }
  .ag-cine-scroll-hint span { animation: none; }
}

/* ─── QUICK-ADD SIEMPRE VISIBLE EN DESKTOP ─────────────── */
@media screen and (min-width: 750px) {
  .quick-add__button { opacity: 1 !important; }
}
