


:root {
  --collections-pad-x: clamp(18px, 4vw, 54px);
  --collections-pad-y: clamp(18px, 3vh, 32px);
  --collections-header-top: clamp(20px, 4vh, 42px);
  --collections-radius: clamp(20px, 2vw, 30px);
  --collections-cover-w: min(72vw, 980px);
  --collections-cover-h: min(72vh, 820px);
  --collections-shadow: 0 32px 100px rgba(0,0,0,.38);
}


.league-gothic-<uniquifier> {
                    font-family: "League Gothic", sans-serif;
                    font-optical-sizing: auto;
                    font-weight: 400;
                    font-style: normal;
                    font-variation-settings:
                            "wdth" 100;
                }

html, body {
  height: 100%;
  overflow: hidden;
  background: #060606;
  overscroll-behavior: none;
}

body.collections-page {
  color: var(--fg, #f0ece4);
}

.collections-bg,
.collections-bg-overlay,
.collections-matte {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.collections-bg {
  z-index: 0;
  background: #090909;
}

.collections-bg canvas {
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.collections-bg canvas.is-ready {
  opacity: 1;
}

.collections-bg-overlay {
  z-index: 1;
  background:
    radial-gradient(1200px 720px at 50% 12%, rgba(255,255,255,.08), transparent 58%),
    linear-gradient(to bottom, rgba(0,0,0,.56), rgba(0,0,0,.16) 34%, rgba(0,0,0,.72)),
    center / cover no-repeat;
  opacity: .9;
  transition: opacity .35s ease;
}

.collections-matte {
  z-index: 100;
  background: #000000;
  opacity: 1;
}

.collections-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  padding: clamp(16px, 3vh, 24px) var(--collections-pad-x);
  align-items: center;
  gap: clamp(14px, 3vw, 24px);
  pointer-events: auto;
}

.collections-header__logo-link {
  flex-shrink: 0;
  pointer-events: auto;
}

.collections-header__logo {
    padding-top: 12px;
    width: min(28vw, 340px);
    max-width: 386px;
  display: block;
  opacity: .9;
  transition: opacity .3s ease;
}

.collections-header__logo-link:hover .collections-header__logo {
  opacity: 1;
}

.collections-header__title {
  margin: 0;
  font-family: Doto;
  font-style: normal;
  font-weight: 600;
  letter-spacing: -.05em;
  line-height: 1;
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  color: rgba(240,236,228,.9);
    padding-top: 10px;
    padding-left: 10px;
}

/* ============================================================
   2-COLUMN LAYOUT (STAGE | NAV RAIL)
============================================================ */
.collections-layout {
  position: fixed;
  inset: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: 1fr;
}

.collections-stage {
  position: relative;
  overflow: hidden;
  z-index: 10;
}

/* ============================================================
   DESKTOP NAVIGATION RAIL (RIGHT SIDE)
   Timeline + Controls unified in one vertical column
============================================================ */
.collections-nav-rail {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: clamp(20px, 3vh, 32px);
  padding: 0 clamp(18px, 3vw, 40px);
  z-index: 12;
  height: 100%;
}

.collections-nav-rail__timeline {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: 0 0 auto;
}

.collections-nav-rail__controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  flex: 0 0 auto;
}

.collection-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: center;
  padding: calc(110px + var(--collections-pad-y)) var(--collections-pad-x) calc(96px + var(--collections-pad-y));
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 1;
}

.collection-slide.is-current,
.collection-slide.is-outgoing,
.collection-slide.is-incoming {
  visibility: visible;
  opacity: 1;
}

.collection-slide.is-current {
  pointer-events: auto;
}

/* z-index is set dynamically in JS to ensure incoming is always on top */

.collection-slide__shell {
  position: relative;
  width: min(1200px, 100%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 3vh, 32px);
}

/* ============================================================
   FRAMED COLLECTION COVER REBUILD
   Real DOM structure: stacked rear frames + main frame + controlled fake3D
============================================================ */

.collection-slide__media {
  position: relative;
  width: 100%;
  cursor: pointer;
  /* Stacking context for explicit z-index control */
  isolation: isolate;
  /* Allow rear frames to extend beyond */
  overflow: visible;
  /* VERTICAL TRANSITION: Removed transition - conflicts with GSAP animations */
  /* Hover transforms still work via :hover pseudo-class */
}

/* Desktop hover: lift entire stack */
@media (hover:hover) {
  .collection-slide__media:hover {
    transform: translateY(-4px);
    transition: transform .4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  /* REFINEMENT: Enhanced spread on hover (from enhanced base offsets) */
  .collection-slide__media:hover .collection-slide__stack--rear {
    transform: translate(-32px, -14px) rotate(-3.8deg) scale(0.985);
  }
  .collection-slide__media:hover .collection-slide__stack--mid {
    transform: translate(26px, -11px) rotate(2.8deg) scale(0.992);
  }
  /* Enhanced main frame shadow */
  .collection-slide__media:hover .collection-slide__frame {
    box-shadow:
      0 38px 115px rgba(0,0,0,.50),
      0 18px 45px rgba(0,0,0,.36),
      inset 0 3px 6px rgba(255,255,255,.15),
      inset 0 -3px 8px rgba(0,0,0,.75),
      inset 3px 0 6px rgba(0,0,0,.55),
      inset -3px 0 6px rgba(255,255,255,.11),
      inset 0 0 0 1px rgba(80,70,60,.38);
  }
}

/* ============================================================
   REAR STACKED FRAMES (real DOM elements, not pseudo-hacks)
============================================================ */

.collection-slide__stack {
  position: absolute;
  inset: 0;
  pointer-events: none;
  /* Dark frame background (no image content) */
  background: linear-gradient(145deg, #0e0d0c 0%, #000000 100%);
  /* Gallery-style frame shadows */
  box-shadow:
    0 20px 60px rgba(0,0,0,.32),
    0 8px 22px rgba(0,0,0,.20),
    inset 0 2px 5px rgba(255,255,255,.07),
    inset 0 -2px 6px rgba(0,0,0,.55),
    inset 3px 0 5px rgba(0,0,0,.42),
    inset -3px 0 5px rgba(255,255,255,.07),
    inset 0 0 0 1px rgba(60,55,50,.22);
  transition: transform .4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* REFINEMENT: Rear frame (farthest back) - enhanced depth */
.collection-slide__stack--rear {
  z-index: 1;
  /* Increased spatial offset for stronger depth perception */
  transform: translate(-26px, -12px) rotate(-3.2deg) scale(0.985);
  opacity: .92;
  /* Stronger shadow to emphasize depth separation */
  box-shadow:
    0 28px 82px rgba(0,0,0,.42),
    0 12px 32px rgba(0,0,0,.26),
    inset 0 2px 5px rgba(255,255,255,.06),
    inset 0 -2px 6px rgba(0,0,0,.58),
    inset 3px 0 5px rgba(0,0,0,.45),
    inset -3px 0 5px rgba(255,255,255,.06),
    inset 0 0 0 1px rgba(60,55,50,.20);
}

/* REFINEMENT: Mid frame - enhanced depth progression */
.collection-slide__stack--mid {
  z-index: 2;
  /* Increased offset with subtle scale variation */
  transform: translate(20px, -9px) rotate(2.2deg) scale(0.992);
  opacity: .95;
  background: linear-gradient(148deg, #0f0e0d 0%, #020202 100%);
  /* Differentiated shadow (between rear and main) */
  box-shadow:
    0 26px 74px rgba(0,0,0,.38),
    0 11px 28px rgba(0,0,0,.24),
    inset 0 2px 5px rgba(255,255,255,.07),
    inset 0 -2px 6px rgba(0,0,0,.57),
    inset 3px 0 5px rgba(0,0,0,.46),
    inset -3px 0 5px rgba(255,255,255,.07),
    inset 0 0 0 1px rgba(60,55,50,.22);
}

/* ============================================================
   MAIN FRAME (wraps the artwork)
============================================================ */

.collection-slide__frame {
  position: relative;
  z-index: 3;
  width: 100%;
  height: var(--collections-cover-h);
  min-height: 420px;
  margin: 0;
  /* Premium gallery frame treatment */
  background: linear-gradient(145deg, #11100f 0%, #000000 100%);
  box-shadow:
    /* External elevation */
    0 32px 95px rgba(0,0,0,.46),
    0 14px 36px rgba(0,0,0,.30),
    /* Internal beveling (gallery aesthetic) */
    inset 0 3px 6px rgba(255,255,255,.12),
    inset 0 -3px 8px rgba(0,0,0,.70),
    inset 3px 0 6px rgba(0,0,0,.50),
    inset -3px 0 6px rgba(255,255,255,.09),
    inset 0 0 0 1px rgba(80,70,60,.33);
  /* Very subtle perspective */
  transform: perspective(2400px) rotateY(0.2deg) rotateX(-0.1deg);
  transform-origin: 52% 48%;
  transition: transform .4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow .4s ease;
  /* Prevent frame overflow issues */
  overflow: hidden;
}

/* Inner frame border detail */
.collection-slide__frame-inner {
  position: absolute;
  inset: clamp(10px, 1.8vw, 18px);
  z-index: 10;
  border: 1px solid rgba(240,236,228,.12);
  pointer-events: none;
  transition: border-color .35s ease;
}

@media (hover:hover) {
  .collection-slide__media:hover .collection-slide__frame-inner {
    border-color: rgba(201,169,97,.30);
  }
}

/* ============================================================
   ARTWORK VIEWPORT (fake3D host, clipped inside frame)
============================================================ */

.collection-slide__cover {
  position: absolute;
  inset: clamp(10px, 1.8vw, 18px);
  z-index: 5;
  overflow: hidden;
  background: #080808;
  /* Strict containment for fake3D canvas */
  isolation: isolate;
  /* Force clipping boundary */
  contain: paint;
  /* Artwork sits inside the frame border */
}

/* Artwork overlay (for legibility) */
.collection-slide__cover::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    linear-gradient(to top, rgba(0,0,0,.60), rgba(0,0,0,.10) 40%, rgba(0,0,0,0) 75%),
    linear-gradient(to right, rgba(0,0,0,.12), rgba(0,0,0,0) 34%);
  pointer-events: none;
}

/* Desktop: lighter overlay */
@media (min-width: 960px) {
  .collection-slide__cover::before {
    background:
      linear-gradient(to top, rgba(0,0,0,.24), rgba(0,0,0,.05) 40%, rgba(0,0,0,0) 70%),
      linear-gradient(to right, rgba(0,0,0,.05), rgba(0,0,0,0) 30%);
  }
}

/* ============================================================
   ARTWORK IMAGE (fallback, always present)
============================================================ */

.collection-slide__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 1;
  /* Keep visible until fake3D is ready */
  opacity: 1;
  /* PHASE 3: Removed transition - conflicts with GSAP animations */
}

/* Only hide when fake3D is confirmed ready */
.collection-slide__cover.has-fake3d .collection-slide__img {
  opacity: 0;
  pointer-events: none;
}

/* ============================================================
   FAKE3D CANVAS (clipped inside artwork viewport)
============================================================ */

.collection-slide__cover canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 2;
  /* Start hidden, fade in when ready */
  opacity: 0;
  /* PHASE 3: Removed transition - conflicts with GSAP animations */
  /* Ensure canvas respects parent bounds strictly */
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}

.collection-slide__cover canvas.is-ready {
  opacity: 1;
}

/* ============================================================
   MICRO-CTA LABEL (subtle affordance hint)
============================================================ */

.collection-slide__cover-cta {
  position: absolute;
  bottom: clamp(18px, 2.8vh, 28px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 14px 20px;
  border-radius: 999px;
  font-family: -apple-system, 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  line-height: 1.2;
  color: rgba(240,236,228,.88);
  background: rgba(0,0,0,.62);
  border: 1px solid rgba(255,255,255,.15);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  pointer-events: none;
  /* Desktop: subtle base visibility */
  opacity: .8;
  transition: opacity .35s ease, transform .35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.collection-slide__cover-cta::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--slide-accent, #c9a961);
  opacity: .85;
  flex-shrink: 0;
}

/* Desktop: enhance CTA on hover */
@media (hover:hover) {
  .collection-slide__media:hover .collection-slide__cover-cta {
    opacity: .95;
    transform: translateX(-50%) translateY(-3px);
  }
}

/* Mobile: compact size, always visible */
@media (max-width: 959px) {
    .collection-slide__cover-cta {
        /* --- AJOUTS POUR LA LARGEUR --- */
        width: 180px;           /* Définit la largeur fixe */
        justify-content: center; /* Centre le texte et le point à l'intérieur */
        box-sizing: border-box;  /* S'assure que le padding ne fait pas déborder */

        /* --- TES STYLES EXISTANTS --- */
        opacity: .75;
        font-size: 0.60rem;
        letter-spacing: 0.11em;
        padding: 8px 11px;       /* Un peu plus de padding vertical pour l'équilibre */
        gap: 6px;
    }

    .collection-slide__cover-cta::before {
        width: 3px;
        height: 3px;
        flex-shrink: 0; /* Empêche le point de s'écraser si le texte est long */
    }
}

.collection-slide__editorial {
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 1.2vh, 16px);
}

.collection-slide__eyebrow {
  margin: 0 0 .5rem;
  font-size: .8rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(240,236,228,.58);
    text-shadow: 1px 1px 1px black;
}

.collection-slide__title {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -.04em;
  line-height: .95;
  font-size: clamp(2rem, 5vw, 4.8rem);
  max-width: 12ch;
}

.collection-slide__desc {
  margin: .85rem 0 0;
  max-width: 44ch;
  font-size: clamp(.96rem, 1.2vw, 1.08rem);
  line-height: 1.65;
  color: rgba(240,236,228,.84);
}

.collection-slide__pills {
  margin-top: .95rem;
  display: flex;
  gap: .55rem;
  flex-wrap: wrap;
}

.collection-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: .46rem .82rem;
  border-radius: 999px;
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(240,236,228,.86);
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(0, 0, 0, 0.09);
}

.collection-slide__actions {
  display: flex;
  gap: .8rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.collections-btn {
  -webkit-appearance: none;
  appearance: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: .74rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 600;
  transition: transform .22s ease, border-color .22s ease, opacity .22s ease, background .22s ease;
}

.collections-btn--primary {
  color: #080808;
  background: var(--slide-accent, #c9a961);
  box-shadow: 0 10px 28px color-mix(in srgb, var(--slide-accent, #c9a961) 26%, transparent);
}

.collections-btn--ghost {
  color: rgba(240,236,228,.88);
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.02);
}

/* Phase 6.5: 2-column grid layout with unified right-side nav rail */

.collections-counter {
  /* Now integrated into nav rail */
  font-size: 1.7rem;
    font-weight: 400;
    font-family: "League Gothic", sans-serif;
  letter-spacing: 0em;
  text-transform: uppercase;
  color: rgba(240, 236, 228, 0.84);
  pointer-events: none;
  text-align: center;
  flex: 0 0 auto;
    text-shadow: 1px 1px 1px black;
}

/* ============================================================
   DESKTOP VERTICAL SEGMENTED PAGINATION
   Compact premium capsules - not page-spanning
============================================================ */
.collections-timeline__track {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  /* Auto height - compact stack based on item count */
  position: relative;
  pointer-events: none;
}

/* No vertical line - clean segmented pagination */

.collections-timeline__marker {
  /* Rounded capsule - inactive state */
  width: 8px;
  height: 35px;
  border-radius: 999px;
  background: rgba(225, 217, 195, 0.75);
  border: none;
  position: relative;
  z-index: 1;
  transition: all .4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.collections-timeline__marker.is-active {
  /* Active capsule - longer, brighter, accent color */
  width: 28px;
  height: 5px;
  background: var(--accent, #c9a961);
  box-shadow: 0 0 14px rgba(201,169,97,.28);
}

.collections-nav__btn {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: rgba(240,236,228,.9);
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.28);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  transition: transform .22s ease, border-color .22s ease, opacity .22s ease;
  pointer-events: auto;
}

.collections-nav__btn:disabled {
  opacity: .34;
  cursor: default;
  pointer-events: none;
}

@media (hover:hover) {
  .collections-btn:hover,
  .collections-nav__btn:not(:disabled):hover {
    transform: translateY(-1px);
  }
  .collections-btn--ghost:hover,
  .collections-nav__btn:not(:disabled):hover {
    border-color: rgba(255,255,255,.28);
  }
}

/* Desktop two-column layout */
@media (min-width: 960px) {
  .collection-slide__shell {
    flex-direction: row;
    align-items: center;
    gap: clamp(40px, 5vw, 80px);
    max-width: 1400px;
  }

  .collection-slide__media {
    flex: 0 0 62%;
  }

  .collection-slide__editorial {
    flex: 1;
    align-self: stretch;
    justify-content: center;
    gap: clamp(14px, 1.8vh, 24px);

  }

  .collection-slide__title {
    font-size: clamp(2.6rem, 4vw, 5.2rem);
    max-width: 14ch;
      text-shadow: 2px 2px 2px black;
  }

  .collection-slide__desc {
    font-size: clamp(1.6rem, 1.1vw, 1.12rem);
    line-height: 1.5;
    max-width: 46ch;
      text-shadow: 2px 2px 8px black;
  }

  .collection-slide__pills {
    margin-top: clamp(8px, 1vh, 14px);
  }

  .collection-slide__actions {
    margin-top: clamp(12px, 1.5vh, 20px);
  }
}

/* ============================================================
   MOBILE: BOTTOM-RIGHT CONTROLS ONLY (NO TIMELINE)
============================================================ */
@media (max-width: 959px) {
  :root {
    --collections-cover-w: 100%;
    --collections-cover-h: min(58vh, 540px);
  }

  .collection-slide {
    padding-top: calc(76px + var(--collections-pad-y));
    padding-bottom: calc(100px + var(--collections-pad-y));
  }

  .collections-header__logo {
      width: min(50vw, 237px);
      padding: 4px;
  }

  .collection-slide__eyebrow {
    display: none;
  }

  .collection-slide__title {
    font-size: clamp(1.85rem, 9vw, 3rem);
  }

  .collection-slide__desc {
    display: none;
  }

  .collection-slide__pills {
    display: none;
  }

  .collection-slide__actions {
    display: none;
  }

  .collections-counter {
    /* Show on mobile, styled for compact presentation */
      font-size: 1.1rem;
      letter-spacing: 0.1em;
      margin-bottom: 6px;
      position: absolute;
      top: 50%;
      left: -80%;
      opacity: 0.7;
  }

  /* Mobile: full-width stage, nav rail repositioned bottom-right */
  .collections-layout {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
  }

  .collections-nav-rail {
    position: fixed;
    bottom: -20px;
    right: 0;
    height: auto;
    padding: 0 clamp(16px, 4vw, 24px) calc(env(safe-area-inset-bottom, 0px) + clamp(20px, 5vh, 32px));
    justify-content: flex-end;
    gap: 10px;
    z-index: 15;
  }

  /* Hide timeline on mobile */
  .collections-nav-rail__timeline {
    display: none;
  }

  .collections-nav-rail__controls {
    gap: 4px;
  }

  .collections-nav__btn {
    width: 50px;
    height: 50px;
  }

  /* Mobile: simplified framed stack (only 1 rear frame, tighter composition) */
  .collection-slide__stack--rear {
    /* Hide rear frame on mobile */
    display: none;
  }

  .collection-slide__stack--mid {
    /* REFINEMENT: Enhanced offset on mobile for better depth */
    transform: translate(-10px, -6px) rotate(-1.6deg) scale(0.992);
    box-shadow:
      0 20px 54px rgba(0,0,0,.34),
      0 8px 20px rgba(0,0,0,.20),
      inset 0 2px 4px rgba(255,255,255,.06),
      inset 0 -2px 5px rgba(0,0,0,.54),
      inset 2px 0 4px rgba(0,0,0,.42),
      inset -2px 0 4px rgba(255,255,255,.06),
      inset 0 0 0 1px rgba(60,55,50,.22);
  }

  .collection-slide__frame {
    /* Reduce frame shadows on mobile for cleaner presentation */
    box-shadow:
      0 24px 72px rgba(0,0,0,.40),
      0 11px 28px rgba(0,0,0,.26),
      inset 0 2px 5px rgba(255,255,255,.10),
      inset 0 -2px 6px rgba(0,0,0,.64),
      inset 2px 0 5px rgba(0,0,0,.46),
      inset -2px 0 5px rgba(255,255,255,.08),
      inset 0 0 0 1px rgba(80,70,60,.30);
    /* Minimal perspective on mobile */
    transform: perspective(3200px) rotateY(0deg) rotateX(0deg);
  }

  .collection-slide__frame-inner {
    /* Tighter inner border on mobile */
    inset: clamp(8px, 2vw, 12px);
  }

  /* Mobile tap state (subtle) - explicit transition for tap feedback */
  .collection-slide__media:active {
    transform: translateY(-1px) scale(0.995);
    transition: transform .15s ease;
  }
}

/* Mobile navigation hint */
.collections-nav-hint {
  position: fixed;
  bottom: calc(72px + var(--collections-pad-y));
  left: 50%;
  transform: translateX(-50%);
  z-index: 25;
  font-size: .7rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(240,236,228,.6);
  text-align: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity .4s ease;
  display: none;
}

.collections-nav-hint__icon {
  display: block;
  width: 32px;
  height: 32px;
  margin: 0 auto 8px;
  opacity: .5;
  animation: hintPulse 2s ease-in-out infinite;
}

@keyframes hintPulse {
  0%, 100% { transform: translateY(0); opacity: .5; }
  50% { transform: translateY(-4px); opacity: .8; }
}

@media (max-width: 959px) {
  .collections-nav-hint {
    display: block;
  }

  .collections-nav-hint.is-visible {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .collections-btn,
  .collections-nav__btn,
  .collections-bg-overlay,
  .collections-timeline__marker {
    transition: none;
  }

  .collections-nav-hint__icon {
    animation: none;
  }
}
