/* ==============================================
   The Exalted Breed — Stylesheet
   ============================================== */

:root {
  --bg: #0a0a0b;
  --bg-alt: #131315;
  --bg-card: #17171a;
  --line: rgba(255,255,255,0.09);

  --gold-light: #ecd48a;
  --gold: #c9a24a;
  --gold-dark: #8a6c28;
  --orange: #d9772e;

  --text: #f3efe6;
  --text-muted: #a9a49a;
  --text-dim: #706c63;

  --serif: 'Cormorant Garamond', Georgia, serif;
  --script: 'Caveat', cursive;
  --sans: 'Jost', 'Helvetica Neue', Arial, sans-serif;

  --radius: 2px;
  --header-h: 76px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.section-eyebrow {
  font-family: var(--script);
  color: var(--gold);
  font-size: 1.5rem;
  margin: 0 0 0.25rem;
  letter-spacing: 0.02em;
}
.section-eyebrow.center { text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 0.95rem 2.1rem;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: all 0.25s ease;
  text-align: center;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 60%, var(--gold-dark));
  color: #171308;
  font-weight: 600;
}
.btn-gold:hover { filter: brightness(1.08); transform: translateY(-1px); }
.btn-gold:disabled { opacity: 0.4; cursor: not-allowed; transform: none; filter: none; }
.btn-ghost {
  border-color: rgba(255,255,255,0.35);
  color: var(--text);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-light); }
.btn-block { display: block; width: 100%; }

/* ---------- Announcement bar ---------- */
.announce-bar {
  background: var(--orange);
  color: #1a0f04;
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  font-weight: 500;
}
.announce-bar p { margin: 0; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(10,10,11,0.7);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap {
  max-width: 1280px;
  margin: 0 auto;
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0 1.5rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-right: auto;
}
.logo img { height: 42px; width: auto; }
.logo-word {
  font-family: var(--serif);
  letter-spacing: 0.12em;
  font-size: 0.95rem;
  color: var(--gold-light);
  display: none;
}
@media (min-width: 640px) { .logo-word { display: inline-block; } }

.main-nav {
  display: none;
  gap: 2rem;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.main-nav a { position: relative; padding: 0.3rem 0; }
.main-nav a::after {
  content: '';
  position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width 0.25s ease;
}
.main-nav a:hover::after { width: 100%; }
@media (min-width: 900px) { .main-nav { display: flex; } }

.hamburger {
  background: none; border: none; padding: 0.5rem;
  display: flex; flex-direction: column; gap: 5px;
}
@media (min-width: 900px) { .hamburger { display: none; } }
.hamburger span { width: 22px; height: 1.5px; background: var(--text); display: block; }

.cart-btn {
  position: relative;
  background: none; border: none; color: var(--text);
  padding: 0.5rem;
}
.cart-btn:hover { color: var(--gold); }
.cart-count {
  position: absolute; top: -2px; right: -2px;
  background: var(--orange); color: #1a0f04;
  font-size: 0.62rem; font-weight: 700;
  width: 16px; height: 16px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

/* mobile nav */
@media (max-width: 899px) {
  .main-nav {
    position: fixed; top: var(--header-h); left: 0; right: 0;
    background: var(--bg-alt);
    flex-direction: column; gap: 0;
    border-bottom: 1px solid var(--line);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.2s ease;
  }
  .main-nav.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .main-nav a { padding: 1rem 1.5rem; border-bottom: 1px solid var(--line); }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 6rem 1.5rem 4rem;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(201,162,74,0.16), transparent 60%),
    radial-gradient(ellipse at 20% 100%, rgba(217,119,46,0.10), transparent 55%),
    linear-gradient(180deg, #0a0a0b 0%, #101012 100%);
}
.hero-content { position: relative; max-width: 760px; }
.eyebrow {
  font-family: var(--script);
  color: var(--gold);
  font-size: 1.6rem;
  margin: 0 0 0.5rem;
}
.hero-logo {
  height: 96px;
  width: auto;
  margin: 0 auto 1.5rem;
  display: block;
}
@media (min-width: 640px) { .hero-logo { height: 130px; } }
.hero-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  line-height: 1.08;
  margin: 0 0 1.25rem;
  letter-spacing: 0.01em;
}
.hero-title span {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto 2.25rem;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.scroll-cue {
  position: absolute; bottom: 1.75rem; left: 50%; transform: translateX(-50%);
  color: var(--gold); font-size: 1.3rem;
  animation: bob 1.8s ease-in-out infinite;
}
@keyframes bob { 0%,100% { transform: translate(-50%,0); } 50% { transform: translate(-50%,8px); } }

/* ---------- Marquee ---------- */
.marquee-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-alt);
  overflow: hidden;
  padding: 1.1rem 0;
}
.marquee-track {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  width: max-content;
  animation: scroll-left 32s linear infinite;
}
.marquee-track span {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}
.marquee-track span::after { content: '✦'; color: var(--gold); margin-left: 3rem; font-size: 0.8rem; }
@keyframes scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Story ---------- */
.story { padding: 6rem 1.5rem; }
.story-inner { max-width: 720px; margin: 0 auto; text-align: center; }
.story-title {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  font-weight: 500;
  margin: 0 0 1.25rem;
}
.story-text { color: var(--text-muted); font-size: 1.02rem; margin-bottom: 2.75rem; }
.story-badges {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  text-align: left;
}
.badge {
  border: 1px solid var(--line);
  padding: 1.25rem;
  border-radius: var(--radius);
}
.badge strong { display: block; color: var(--gold-light); font-size: 0.95rem; margin-bottom: 0.35rem; }
.badge span { color: var(--text-dim); font-size: 0.85rem; }

/* ---------- Shop ---------- */
.shop { padding: 5rem 1.5rem 6rem; max-width: 1280px; margin: 0 auto; }
.shop-title {
  font-family: var(--serif);
  text-align: center;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 500;
  margin: 0 0 3rem;
}
.product-carousel-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.product-grid {
  display: flex;
  gap: 1.75rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  flex: 1;
  padding: 0.5rem 0.25rem 1rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.product-grid::-webkit-scrollbar { display: none; }
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.25s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
  scroll-snap-align: start;
  flex: 0 0 240px;
}
@media (min-width: 480px) { .product-card { flex: 0 0 260px; } }
@media (min-width: 900px) { .product-card { flex: 0 0 280px; } }
.product-card.skeleton { flex: 0 0 240px; }
.product-card:hover { transform: translateY(-4px); border-color: rgba(201,162,74,0.4); }
.product-card .thumb {
  position: relative;
  aspect-ratio: 3/4;
  background: #1c1c1f;
  overflow: hidden;
}
.product-card .thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: opacity 0.35s ease, transform 0.5s ease;
}
.product-card .thumb img.img-alt { position: absolute; inset: 0; opacity: 0; }
.product-card:hover .thumb img.img-alt { opacity: 1; }
.product-card:hover .thumb img.img-main { transform: scale(1.03); }
.product-card .info { padding: 1rem 1.1rem 1.25rem; display: flex; flex-direction: column; gap: 0.4rem; flex: 1; }
.product-card .p-title { font-size: 0.92rem; letter-spacing: 0.01em; }
.product-card .p-price { color: var(--gold-light); font-size: 0.92rem; }
.product-card .p-price .compare { color: var(--text-dim); text-decoration: line-through; margin-right: 0.5rem; font-size: 0.82rem; }
.product-card .quick-add {
  margin-top: auto;
  background: none;
  border: 1px solid var(--line);
  color: var(--text-muted);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.6rem;
  transition: all 0.2s ease;
}
.product-card .quick-add:hover { border-color: var(--gold); color: var(--gold-light); }
.badge-soldout {
  position: absolute; top: 0.6rem; left: 0.6rem;
  background: rgba(10,10,11,0.85); color: var(--text-muted);
  font-size: 0.62rem; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.3rem 0.55rem; border: 1px solid var(--line);
}

/* skeleton loading */
.product-card.skeleton { aspect-ratio: 3/5; background: linear-gradient(100deg, #17171a 30%, #1e1e22 50%, #17171a 70%); background-size: 200% 100%; animation: shimmer 1.4s infinite; cursor: default; }
@keyframes shimmer { from { background-position: 200% 0; } to { background-position: -200% 0; } }

.shop-error { text-align: center; color: var(--text-muted); margin-top: 2rem; }

/* ---------- Newsletter ---------- */
.newsletter {
  background: linear-gradient(135deg, #171308, #100c05);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 4.5rem 1.5rem;
  text-align: center;
}
.newsletter-inner { max-width: 520px; margin: 0 auto; }
.newsletter h3 { font-family: var(--serif); font-size: 1.9rem; font-weight: 500; color: var(--gold-light); margin: 0 0 0.5rem; }
.newsletter p { color: var(--text-muted); margin: 0 0 1.75rem; }
.newsletter-form { display: flex; gap: 0.75rem; flex-wrap: wrap; justify-content: center; }
.newsletter-form input {
  flex: 1; min-width: 220px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line);
  color: var(--text);
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius);
  font-family: inherit;
}
.newsletter-form input:focus { outline: none; border-color: var(--gold); }
.newsletter-note { color: var(--gold-light); margin-top: 1rem; }

/* ---------- Footer ---------- */
.site-footer { padding: 4.5rem 1.5rem 2rem; }
.footer-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 2.5rem;
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
.footer-brand img { height: 46px; margin-bottom: 1rem; }
.footer-brand p { color: var(--text-dim); font-size: 0.88rem; max-width: 260px; }
.footer-col h4 { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-light); margin: 0 0 1rem; }
.footer-col a { display: block; color: var(--text-muted); font-size: 0.88rem; margin-bottom: 0.65rem; }
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom {
  max-width: 1280px; margin: 3rem auto 0;
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
  color: var(--text-dim);
  font-size: 0.78rem;
  text-align: center;
}

/* ---------- Product Modal ---------- */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.7);
  display: none; align-items: center; justify-content: center;
  z-index: 100; padding: 1.5rem;
}
.modal-overlay.open { display: flex; }
.product-modal {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  max-width: 920px; width: 100%;
  max-height: 88vh; overflow-y: auto;
  position: relative;
  border-radius: var(--radius);
}
.modal-close {
  position: absolute; top: 0.75rem; right: 0.9rem;
  background: none; border: none; color: var(--text-muted);
  font-size: 1.6rem; line-height: 1; z-index: 5;
}
.modal-close:hover { color: var(--gold); }
.modal-body { display: grid; grid-template-columns: 1fr; }
@media (min-width: 720px) { .modal-body { grid-template-columns: 1fr 1fr; } }

.pm-gallery { background: #101012; }
.pm-gallery-main { aspect-ratio: 3/4; overflow: hidden; }
.pm-gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.pm-thumbs { display: flex; gap: 0.5rem; padding: 0.75rem; overflow-x: auto; }
.pm-thumbs img { width: 56px; height: 56px; object-fit: cover; border: 1px solid var(--line); cursor: pointer; opacity: 0.6; }
.pm-thumbs img.active { opacity: 1; border-color: var(--gold); }

.pm-details { padding: 2rem; display: flex; flex-direction: column; gap: 1.1rem; }
.pm-title { font-family: var(--serif); font-size: 1.7rem; margin: 0; }
.pm-price { color: var(--gold-light); font-size: 1.15rem; }
.pm-desc { color: var(--text-muted); font-size: 0.9rem; max-height: 140px; overflow-y: auto; }
.pm-option { margin-bottom: 0.25rem; }
.pm-option-label { display: block; font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 0.5rem; }
.pm-option-values { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.pm-swatch {
  border: 1px solid var(--line); background: none; color: var(--text-muted);
  padding: 0.5rem 0.9rem; font-size: 0.82rem; border-radius: var(--radius);
}
.pm-swatch.active { border-color: var(--gold); color: var(--gold-light); }
.pm-swatch:disabled { opacity: 0.3; text-decoration: line-through; cursor: not-allowed; }
.pm-qty { display: flex; align-items: center; gap: 0.75rem; }
.pm-qty button { width: 32px; height: 32px; border: 1px solid var(--line); background: none; color: var(--text); }
.pm-qty span { min-width: 20px; text-align: center; }
.pm-stock { font-size: 0.8rem; color: var(--text-dim); }
.pm-actions { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 0.5rem; }

/* ---------- Cart Drawer ---------- */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.6);
  display: none; z-index: 90;
}
.cart-overlay.open { display: block; }
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(420px, 100%);
  background: var(--bg-alt);
  border-left: 1px solid var(--line);
  z-index: 95;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.cart-drawer.open { transform: translateX(0); }
.cart-drawer-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--line);
}
.cart-drawer-header h3 { font-family: var(--serif); margin: 0; font-size: 1.4rem; }
.cart-lines { flex: 1; overflow-y: auto; padding: 1rem 1.5rem; }
.cart-empty { color: var(--text-dim); text-align: center; margin-top: 2rem; }
.cart-line { display: flex; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--line); }
.cart-line img { width: 68px; height: 84px; object-fit: cover; background: #1c1c1f; }
.cart-line-info { flex: 1; display: flex; flex-direction: column; gap: 0.35rem; }
.cart-line-title { font-size: 0.88rem; }
.cart-line-variant { color: var(--text-dim); font-size: 0.78rem; }
.cart-line-row { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.cart-line-qty { display: flex; align-items: center; gap: 0.5rem; }
.cart-line-qty button { width: 24px; height: 24px; border: 1px solid var(--line); background: none; color: var(--text); font-size: 0.8rem; }
.cart-line-remove { background: none; border: none; color: var(--text-dim); font-size: 0.75rem; text-decoration: underline; }
.cart-footer { border-top: 1px solid var(--line); padding: 1.25rem 1.5rem 1.5rem; }
.cart-subtotal { display: flex; justify-content: space-between; margin-bottom: 1rem; font-size: 1rem; }
.cart-note { color: var(--text-dim); font-size: 0.75rem; margin: 0.75rem 0 0; text-align: center; }

/* ---------- Toast ---------- */
.toast {
  position: fixed; bottom: 1.5rem; left: 50%;
  transform: translate(-50%, 20px);
  background: var(--gold-light); color: #171308;
  padding: 0.85rem 1.5rem; border-radius: var(--radius);
  font-size: 0.85rem; font-weight: 500;
  opacity: 0; pointer-events: none;
  transition: all 0.3s ease;
  z-index: 200;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }

/* ---------- Language switch ---------- */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  margin-left: 0.25rem;
}
.lang-switch button {
  background: none;
  border: none;
  color: var(--text-dim);
  padding: 0.25rem 0.15rem;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  transition: color 0.2s ease;
}
.lang-switch button.active { color: var(--gold-light); font-weight: 600; }
.lang-switch button:hover { color: var(--gold); }
.lang-switch span { color: var(--line); }

/* ---------- Philosophy section ---------- */
.philosophy {
  padding: 6rem 1.5rem;
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.pillars-carousel-wrap {
  max-width: 480px;
  margin: 2.75rem auto 0;
  text-align: left;
}
.pillars-carousel { display: flex; align-items: center; gap: 0.85rem; }
.pillars-track-wrap { flex: 1; overflow: hidden; }
.pillars-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.65, 0, 0.35, 1);
  will-change: transform;
}
.pillar-slide { flex: 0 0 100%; max-width: 100%; box-sizing: border-box; }

.carousel-arrow {
  flex-shrink: 0;
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--bg-card);
  color: var(--gold-light);
  font-size: 1.5rem;
  line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s ease;
}
.carousel-arrow:hover { border-color: var(--gold); background: rgba(201,162,74,0.14); transform: scale(1.06); }
.carousel-arrow.is-disabled { opacity: 0.3; pointer-events: none; }

.pillars-dots { display: flex; justify-content: center; gap: 0.5rem; margin-top: 1.5rem; }
.pillars-dots button {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--line); border: none; padding: 0;
  transition: background 0.25s ease, transform 0.25s ease;
}
.pillars-dots button.active { background: var(--gold); transform: scale(1.3); }

.pillar {
  position: relative;
  border: 1px solid var(--line);
  padding: 2rem 1.75rem;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.pillar::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(201,162,74,0.14), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.pillar:hover {
  border-color: rgba(201,162,74,0.5);
  box-shadow: 0 12px 28px rgba(0,0,0,0.35), 0 0 0 1px rgba(201,162,74,0.15);
}
.pillar:hover::before { opacity: 1; }
.pillar strong { position: relative; display: block; color: var(--gold-light); font-family: var(--serif); font-size: 1.3rem; margin-bottom: 0.6rem; }
.pillar span { position: relative; display: block; color: var(--text-dim); font-size: 0.9rem; }

/* ---------- Hero title shimmer ---------- */
@media (prefers-reduced-motion: no-preference) {
  .hero-title span {
    background-image: linear-gradient(110deg, var(--gold-dark), var(--gold-light) 35%, var(--gold) 50%, var(--gold-light) 65%, var(--gold-dark));
    background-size: 300% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: shine-text 7s ease-in-out infinite;
  }
}
@keyframes shine-text {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ---------- Button shine sweep ---------- */
.btn { position: relative; overflow: hidden; }
.btn::after {
  content: '';
  position: absolute; top: 0; left: -60%;
  width: 35%; height: 100%;
  background: linear-gradient(115deg, transparent, rgba(255,255,255,0.55), transparent);
  transform: skewX(-20deg);
  transition: left 0.65s ease;
  pointer-events: none;
}
.btn:hover::after { left: 130%; }

/* ---------- Product card: idle float + holographic tilt ---------- */
@media (prefers-reduced-motion: no-preference) {
  .product-card:not(.skeleton) {
    animation: card-float 5.5s ease-in-out infinite;
    animation-delay: calc(var(--i, 0) * 0.22s);
  }
  .product-card:not(.skeleton):hover { animation-play-state: paused; }
  @keyframes card-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
  }
}
.product-card:hover { border-color: rgba(201,162,74,0.4); }

.product-card .thumb {
  --rx: 0deg; --ry: 0deg; --mx: 50%; --my: 50%;
  transition: transform 0.15s ease-out;
  transform: perspective(900px) rotateX(var(--ry)) rotateY(var(--rx));
}

/* holographic foil sheen layers, cursor-tracked */
.product-card .thumb::before,
.product-card .thumb::after {
  content: '';
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.product-card .thumb::before {
  background: repeating-linear-gradient(115deg,
    rgba(255,60,180,0.16) 0%,
    rgba(255,210,60,0.16) 8%,
    rgba(60,255,210,0.16) 16%,
    rgba(140,80,255,0.16) 24%,
    rgba(255,60,180,0.16) 32%);
  background-size: 250% 250%;
  background-position: var(--mx) var(--my);
  mix-blend-mode: color-dodge;
  z-index: 2;
}
.product-card .thumb::after {
  background: radial-gradient(circle at var(--mx) var(--my), rgba(255,255,255,0.55), rgba(201,162,74,0.35) 30%, transparent 65%);
  mix-blend-mode: overlay;
  z-index: 3;
}
.product-card:hover .thumb::before { opacity: 0.45; }
.product-card:hover .thumb::after { opacity: 0.85; }
