/* ===== MAGNARA — Power Woman Jewelry Brand ===== */

:root {
  --marquee-h: 34px;
  --nav-h: 76px;
  --top-bar: calc(var(--marquee-h) + var(--nav-h));

  --black: #0a0908;
  --black-soft: #141210;
  --gold: #c9a962;
  --gold-light: #e8d5a3;
  --gold-dark: #8b7340;
  --cream: #f5f0e6;
  --cream-muted: #b8b0a0;
  --burgundy: #3d1528;
  --burgundy-light: #5c2340;
  --whatsapp: #25d366;
  --whatsapp-dark: #1da851;

  --font-display: 'Oswald', sans-serif;
  --font-serif: 'Cormorant Garamond', serif;
  --font-body: 'Inter', sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --transition: 0.6s var(--ease-out);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  padding-top: var(--top-bar);
}

main section[id] {
  scroll-margin-top: calc(var(--top-bar) + 1rem);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: min(1200px, 92vw);
  margin-inline: auto;
}

/* ===== Scroll progress ===== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  z-index: 10001;
  transition: width 0.1s linear;
}

/* ===== Cursor & particles ===== */
.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 169, 98, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s;
}

body:hover .cursor-glow { opacity: 1; }

.particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  background: var(--gold);
  border-radius: 50%;
  animation: particle-float linear infinite;
}

@keyframes particle-float {
  0% { transform: translateY(0) translateX(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-120vh) translateX(30px); opacity: 0; }
}

/* ===== Marquee ===== */
.marquee {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  height: var(--marquee-h);
  display: flex;
  align-items: center;
  background: rgba(10, 9, 8, 0.98);
  border-bottom: 1px solid rgba(201, 169, 98, 0.15);
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 2rem;
  animation: marquee 25s linear infinite;
  white-space: nowrap;
}

.marquee-track span {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

.marquee-dot { opacity: 0.4; }

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: var(--marquee-h);
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0;
  overflow: visible;
  transition: background var(--transition), backdrop-filter var(--transition);
}

.header .nav {
  padding-block: 0.5rem;
}

.header.scrolled {
  background: rgba(10, 9, 8, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 169, 98, 0.1);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  color: var(--cream);
}

.logo span { color: var(--gold); }

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream-muted);
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s var(--ease-out);
}

.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
  transition: transform 0.3s;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.4s var(--ease-out), box-shadow 0.4s, color 0.3s, border-color 0.3s;
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
}

.btn-primary:hover {
  background: var(--gold-light);
  box-shadow: 0 12px 40px rgba(201, 169, 98, 0.3);
}

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(201, 169, 98, 0.4);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
}

.btn-whatsapp:hover {
  background: var(--whatsapp-dark);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.35);
}

.btn-large { padding: 1.25rem 3rem; font-size: 0.85rem; }
.btn-full { width: 100%; }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: calc(100vh - var(--top-bar));
  display: flex;
  align-items: center;
  padding: 3rem 0 5rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(61, 21, 40, 0.45) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(201, 169, 98, 0.1) 0%, transparent 50%),
    linear-gradient(180deg, var(--black) 0%, var(--black-soft) 100%);
}

.hero-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(201, 169, 98, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(201, 169, 98, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(180deg, black 20%, transparent 90%);
  animation: grid-shift 20s linear infinite;
}

@keyframes grid-shift {
  0% { background-position: 0 0; }
  100% { background-position: 80px 80px; }
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  animation: orb-pulse 6s ease-in-out infinite;
}

.hero-orb--1 {
  width: 300px;
  height: 300px;
  background: rgba(61, 21, 40, 0.5);
  top: 20%;
  right: 15%;
}

.hero-orb--2 {
  width: 200px;
  height: 200px;
  background: rgba(201, 169, 98, 0.15);
  bottom: 30%;
  left: 10%;
  animation-delay: -3s;
}

@keyframes orb-pulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.15); opacity: 1; }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
}

.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 0.95;
  margin-bottom: 2rem;
}

.hero-title-line {
  display: block;
  font-size: clamp(3rem, 11vw, 7.5rem);
  letter-spacing: 0.02em;
  color: var(--cream);
}

.hero-title-accent {
  color: transparent;
  -webkit-text-stroke: 1px var(--gold);
}

.char-animate {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px);
}

.char-animate.char-visible {
  animation: char-in 0.7s var(--ease-out) forwards;
}

@keyframes char-in {
  to { opacity: 1; transform: translateY(0); }
}

.hero-subtitle {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-weight: 300;
  line-height: 1.7;
  color: var(--cream-muted);
  max-width: 480px;
  margin-bottom: 2rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.hero-shipping {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--gold-dark);
  text-transform: uppercase;
}

.hero-shipping svg { color: var(--gold); }

.hero-visual {
  position: absolute;
  right: 3%;
  top: 52%;
  z-index: 1;
  width: min(42vw, 480px);
}

.hero-image-wrap {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid rgba(201, 169, 98, 0.2);
  animation: float 7s ease-in-out infinite;
}

.hero-jewelry-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  filter: brightness(0.9) contrast(1.05);
  transition: transform 1.2s var(--ease-out);
}

.hero-visual:hover .hero-jewelry-img {
  transform: scale(1.05);
}

.hero-image-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 255, 255, 0.08) 50%,
    transparent 60%
  );
  animation: shine 4s ease-in-out infinite;
}

@keyframes shine {
  0%, 100% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
}

.hero-ring {
  position: absolute;
  inset: -15%;
  pointer-events: none;
}

.ring-outer {
  position: absolute;
  inset: 5%;
  border: 1px solid rgba(201, 169, 98, 0.25);
  border-radius: 50%;
  animation: spin 40s linear infinite;
}

.ring-inner {
  position: absolute;
  inset: 20%;
  border: 1px solid rgba(201, 169, 98, 0.4);
  border-radius: 50%;
  animation: spin 25s linear infinite reverse;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  z-index: 2;
}

.hero-scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cream-muted);
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}

@keyframes spin { to { transform: rotate(360deg); } }

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ===== Reveal ===== */
[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

[data-reveal="left"] {
  transform: translateX(-40px);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translate(0);
}

/* ===== Sections ===== */
.section-num {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--gold-dark);
  display: block;
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream);
}

.section-desc {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--cream-muted);
  margin-top: 0.5rem;
}

.section-header {
  margin-bottom: 3.5rem;
  padding-top: 1rem;
}

.shop .section-header {
  padding-top: 2rem;
}

/* ===== Manifesto ===== */
.manifesto {
  padding: 8rem 0;
  border-top: 1px solid rgba(201, 169, 98, 0.1);
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem 6rem;
  align-items: start;
}

.manifesto-label { position: sticky; top: 8rem; }

.manifesto-lead {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  line-height: 1.4;
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.manifesto-text p {
  color: var(--cream-muted);
  margin-bottom: 1.25rem;
}

.manifesto-text em { color: var(--gold); font-style: italic; }

.manifesto-quote {
  margin-top: 2.5rem;
  padding-left: 1.5rem;
  border-left: 2px solid var(--gold);
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--cream);
}

.manifesto-quote cite {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.85rem;
  font-style: normal;
  color: var(--cream-muted);
}

.manifesto-stats {
  grid-column: 1 / -1;
  display: flex;
  gap: 4rem;
  list-style: none;
  padding-top: 3rem;
  border-top: 1px solid rgba(201, 169, 98, 0.15);
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold);
  display: inline;
}

.stat-suffix {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
}

.stat-label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-muted);
  margin-top: 0.25rem;
}

/* ===== Shop / Products ===== */
.shop {
  padding: 6rem 0 8rem;
  background: var(--black-soft);
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.product-card {
  transition: transform 0.5s var(--ease-out);
}

.product-visual {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(201, 169, 98, 0.12);
  background: var(--black);
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out), filter 0.5s;
}

.product-card:hover .product-img {
  transform: scale(1.08);
  filter: brightness(1.05);
}

.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 9, 8, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
}

.product-card:hover .product-overlay { opacity: 1; }

.product-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--black);
  padding: 0.35rem 0.65rem;
  z-index: 2;
  animation: badge-pulse 2s ease-in-out infinite;
}

@keyframes badge-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201, 169, 98, 0.4); }
  50% { box-shadow: 0 0 0 6px rgba(201, 169, 98, 0); }
}

.product-collection {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  display: block;
  margin-bottom: 0.25rem;
}

.product-info h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.product-material {
  font-size: 0.78rem;
  color: var(--cream-muted);
  line-height: 1.4;
  margin-bottom: 0.75rem;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-price {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--gold);
}

.product-buy-link {
  background: none;
  border: none;
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream-muted);
  cursor: pointer;
  transition: color 0.3s, letter-spacing 0.3s;
}

.product-buy-link:hover {
  color: var(--whatsapp);
  letter-spacing: 0.2em;
}

.btn-buy {
  transform: translateY(10px);
  transition: transform 0.4s var(--ease-out);
}

.product-card:hover .btn-buy { transform: translateY(0); }

/* ===== Collections ===== */
.collections {
  padding: 6rem 0 8rem;
}

.collections-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.5rem;
}

.collection-card {
  position: relative;
  min-height: 320px;
  border-radius: 2px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.5s var(--ease-out);
}

.collection-card--featured {
  grid-row: span 2;
  min-height: 100%;
}

.collection-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-out);
}

.collection-card:hover .collection-img { transform: scale(1.08); }

.collection-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 9, 8, 0.92) 0%, rgba(61, 21, 40, 0.4) 50%, transparent 100%);
  transition: opacity 0.5s;
}

.collection-card-overlay--velvet {
  background: linear-gradient(0deg, rgba(10, 9, 8, 0.9) 0%, rgba(92, 35, 64, 0.5) 100%);
}

.collection-card-overlay--noir {
  background: linear-gradient(0deg, rgba(10, 9, 8, 0.95) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.collection-card-content {
  position: relative;
  z-index: 1;
  height: 100%;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
}

.collection-tag {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.collection-card h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.collection-card p {
  font-size: 0.9rem;
  color: var(--cream-muted);
  max-width: 280px;
  margin-bottom: 1rem;
}

.collection-link {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  transition: letter-spacing 0.3s;
}

.collection-card:hover .collection-link { letter-spacing: 0.25em; }

/* ===== Shipping ===== */
.shipping {
  padding: 6rem 0;
  border-top: 1px solid rgba(201, 169, 98, 0.1);
}

.shipping-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.shipping-card {
  padding: 2rem;
  border: 1px solid rgba(201, 169, 98, 0.15);
  background: var(--black-soft);
  transition: border-color 0.4s, transform 0.4s var(--ease-out);
}

.shipping-card:hover {
  border-color: rgba(201, 169, 98, 0.4);
  transform: translateY(-6px);
}

.shipping-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.shipping-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.shipping-card p {
  font-size: 0.9rem;
  color: var(--cream-muted);
  line-height: 1.5;
}

.shipping-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--gold-dark);
  letter-spacing: 0.05em;
}

/* ===== Power banner ===== */
.power-banner {
  padding: 6rem 0;
  background:
    linear-gradient(90deg, var(--burgundy) 0%, transparent 50%),
    var(--black);
  border-block: 1px solid rgba(201, 169, 98, 0.15);
  overflow: hidden;
}

.power-banner-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.power-banner-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.05em;
}

.power-banner-title span { color: var(--gold); }

.power-banner-title--shimmer span {
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}

@keyframes shimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* ===== Contact ===== */
.contact { padding: 8rem 0; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-lead {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--cream-muted);
  margin: 1.5rem 0 2.5rem;
  line-height: 1.6;
}

.contact-details { list-style: none; }

.contact-details li { margin-bottom: 1.5rem; }

.contact-label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.25rem;
}

.contact-details a { transition: color 0.3s; }
.contact-details a:hover { color: var(--gold); }

.contact-whatsapp-box {
  border: 1px solid rgba(37, 211, 102, 0.25);
  background: rgba(37, 211, 102, 0.05);
  padding: 2.5rem;
}

.whatsapp-box-inner { text-align: center; }

.whatsapp-icon-large {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.5rem;
  color: var(--whatsapp);
}

.whatsapp-icon-large svg { width: 100%; height: 100%; }

.contact-whatsapp-box h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.order-steps {
  text-align: left;
  list-style: none;
  counter-reset: steps;
  margin-bottom: 2rem;
}

.order-steps li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  color: var(--cream-muted);
  counter-increment: steps;
}

.order-steps li::before {
  content: counter(steps);
  position: absolute;
  left: 0;
  width: 1.25rem;
  height: 1.25rem;
  background: var(--whatsapp);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.order-steps strong { color: var(--cream); }

/* ===== WhatsApp FAB ===== */
.whatsapp-fab {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9998;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.4);
  opacity: 0;
  transform: translateY(20px) scale(0.9);
  transition: opacity 0.4s, transform 0.4s var(--ease-out), background 0.3s;
  pointer-events: none;
}

.whatsapp-fab.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.whatsapp-fab:hover {
  background: var(--whatsapp-dark);
  transform: scale(1.08);
}

.whatsapp-fab svg {
  width: 30px;
  height: 30px;
  color: #fff;
}

.whatsapp-fab-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--whatsapp);
  animation: fab-pulse 2s ease-out infinite;
}

@keyframes fab-pulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ===== Footer ===== */
.footer {
  padding: 3rem 0;
  border-top: 1px solid rgba(201, 169, 98, 0.1);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo--footer { font-size: 1.25rem; }

.footer-tagline {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.footer-copy {
  width: 100%;
  text-align: center;
  font-size: 0.75rem;
  color: var(--cream-muted);
  margin-top: 1rem;
  opacity: 0.6;
}

/* ===== Mobile ===== */
.nav.open .nav-links { display: flex; }

.nav.open .nav-toggle span:first-child {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav.open .nav-toggle span:last-child {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 1024px) {
  .shop-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-visual { opacity: 0.5; right: -5%; width: 50vw; }
  .collections-grid { grid-template-columns: 1fr; }
  .collection-card--featured { grid-row: span 1; }
  .shipping-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root {
    --marquee-h: 0px;
    --nav-h: 64px;
  }

  .marquee { display: none; }

  .header { top: 0; }

  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    background: rgba(10, 9, 8, 0.98);
    z-index: -1;
  }

  .nav-links a { font-size: 1rem; }
  .nav-toggle { display: flex; z-index: 1; }
  .hero-visual { display: none; }

  .manifesto-grid { grid-template-columns: 1fr; gap: 2rem; }
  .manifesto-label { position: static; }
  .manifesto-stats { flex-direction: column; gap: 2rem; }

  .contact-grid { grid-template-columns: 1fr; }
  .power-banner-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .shop-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
