/* ========================================
   FAGIN GROUP — PREMIUM ECOMMERCE STYLES
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ── CSS VARIABLES ─────────────────────── */
:root {
  --navy:       #0B1426;
  --navy-mid:   #121E35;
  --navy-light: #1A2B47;
  --gold:       #C8A96E;
  --gold-light: #D9BC8A;
  --gold-pale:  #F5EDD8;
  --white:      #FFFFFF;
  --off-white:  #F8F6F2;
  --grey-light: #E8E4DC;
  --grey-mid:   #B0A898;
  --grey-dark:  #6B6357;
  --text:       #1A1410;
  --text-mid:   #3D3630;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;

  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  16px;
  --radius-xl:  24px;

  --shadow-sm:  0 2px 8px rgba(11,20,38,0.08);
  --shadow-md:  0 8px 32px rgba(11,20,38,0.12);
  --shadow-lg:  0 24px 64px rgba(11,20,38,0.18);
  --shadow-gold: 0 8px 32px rgba(200,169,110,0.25);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1280px;
}

/* ── RESET ─────────────────────────────── */
*, *::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(--off-white);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { border: none; cursor: pointer; font-family: var(--font-body); }

/* ── TYPOGRAPHY ────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.15;
  font-weight: 400;
}
h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.25rem; font-weight: 500; }
p  { font-size: 1rem; line-height: 1.75; }

.label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── LAYOUT ────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}
.section { padding: 7rem 0; }
.section--dark {
  background: var(--navy);
  color: var(--white);
}
.section--cream { background: var(--gold-pale); }

/* ── BUTTONS ───────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}
.btn:hover::before { transform: translateX(0); }

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(200,169,110,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn-outline-dark:hover {
  background: var(--navy);
  color: var(--white);
}
.btn-lg { padding: 1.1rem 2.5rem; font-size: 0.95rem; }

/* ── NAVIGATION ────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(11, 20, 38, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(200,169,110,0.15);
  transition: var(--transition);
}
.nav--scrolled {
  background: rgba(11, 20, 38, 0.98);
  border-bottom-color: rgba(200,169,110,0.3);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
}
.nav__logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav__logo-main {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
}
.nav__logo-sub {
  font-size: 0.55rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav__link {
  color: rgba(255,255,255,0.75);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: var(--transition);
}
.nav__link:hover, .nav__link.active { color: var(--gold); }
.nav__link:hover::after, .nav__link.active::after { transform: scaleX(1); }
.nav__actions { display: flex; align-items: center; gap: 1rem; }
.nav__cart-btn {
  position: relative;
  background: transparent;
  color: var(--white);
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  font-size: 1.2rem;
}
.nav__cart-btn:hover { color: var(--gold); }
.cart-count {
  position: absolute;
  top: -4px; right: -4px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.6rem;
  font-weight: 700;
  width: 16px; height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}
.cart-count.visible { display: flex; }

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile nav */
.nav__mobile {
  display: none;
  position: absolute;
  top: 72px;
  left: 0; right: 0;
  background: var(--navy);
  border-top: 1px solid rgba(200,169,110,0.2);
  padding: 1.5rem 2rem;
  flex-direction: column;
  gap: 1.25rem;
}
.nav__mobile.open { display: flex; }
.nav__mobile .nav__link { font-size: 1rem; }

/* ── HERO ──────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(200,169,110,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 10% 80%, rgba(200,169,110,0.05) 0%, transparent 50%);
}
.hero__grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200,169,110,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,169,110,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.hero__label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}
.hero__label::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
}
.hero__title {
  color: var(--white);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.4s forwards;
}
.hero__title em {
  font-style: italic;
  color: var(--gold);
}
.hero__subtitle {
  color: rgba(255,255,255,0.65);
  font-size: 1.1rem;
  max-width: 520px;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.6s forwards;
  line-height: 1.7;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 0.8s forwards;
}
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}
.hero__accent {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 45%;
  max-width: 550px;
  opacity: 0.06;
  pointer-events: none;
}

/* ── STATS BAR ─────────────────────────── */
.stats-bar {
  background: var(--gold);
  padding: 1.25rem 0;
}
.stats-bar__inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.stat {
  text-align: center;
}
.stat__number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1;
}
.stat__label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy-light);
  margin-top: 2px;
}

/* ── ABOUT STRIP ───────────────────────── */
.about-strip {
  padding: 6rem 0;
  background: var(--off-white);
}
.about-strip__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.about-strip__eyebrow {
  margin-bottom: 1.25rem;
}
.about-strip__title { margin-bottom: 1.25rem; }
.about-strip__text {
  color: var(--text-mid);
  margin-bottom: 2rem;
}
.about-strip__features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
.about-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-mid);
}
.about-feature__icon {
  width: 28px;
  height: 28px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 0.75rem;
}
.about-strip__visual {
  position: relative;
}
.about-strip__card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 3rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.about-strip__card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(200,169,110,0.2) 0%, transparent 70%);
  border-radius: 50%;
}
.about-card__quote {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}
.about-card__quote::before {
  content: '"';
  font-size: 4rem;
  color: var(--gold);
  line-height: 0.5;
  display: block;
  margin-bottom: 0.5rem;
  opacity: 0.5;
}
.about-card__sig {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  position: relative;
  z-index: 1;
}

/* ── BENEFITS ──────────────────────────── */
.benefits { background: var(--off-white); }
.benefits__header {
  text-align: center;
  margin-bottom: 4rem;
}
.benefits__header .label { margin-bottom: 1rem; }
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.benefit-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--grey-light);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.benefit-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: var(--transition);
}
.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.benefit-card:hover::after { transform: scaleX(1); }
.benefit-card__icon {
  width: 56px;
  height: 56px;
  background: var(--navy);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
}
.benefit-card__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  color: var(--navy);
}
.benefit-card__text {
  font-size: 0.9rem;
  color: var(--grey-dark);
  line-height: 1.7;
}

/* ── PRODUCTS ──────────────────────────── */
.products-section { background: var(--off-white); }
.products-section .section__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--grey-light);
  transition: var(--transition);
  cursor: pointer;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.product-card__image {
  aspect-ratio: 4/3;
  background: var(--navy);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-card__image-inner {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-card__image-placeholder {
  font-size: 3rem;
  opacity: 0.4;
}
.product-card__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 2px;
}
.product-card__body { padding: 1.5rem; }
.product-card__category {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.product-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
  line-height: 1.25;
}
.product-card__desc {
  font-size: 0.85rem;
  color: var(--grey-dark);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.product-card__price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--navy);
  font-weight: 600;
}
.product-card__price span {
  font-size: 0.8rem;
  font-family: var(--font-body);
  color: var(--grey-mid);
  font-weight: 400;
}
.product-card__btn {
  background: var(--navy);
  color: var(--white);
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 500;
  transition: var(--transition);
  white-space: nowrap;
}
.product-card__btn:hover {
  background: var(--gold);
  color: var(--navy);
}

/* Skeleton Loader */
.skeleton {
  animation: shimmer 1.5s infinite;
  background: linear-gradient(90deg, var(--grey-light) 25%, var(--grey-pale, #f0ece4) 50%, var(--grey-light) 75%);
  background-size: 200% 100%;
  border-radius: var(--radius-md);
}
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
.skeleton-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--grey-light);
}
.skeleton-image { height: 210px; }
.skeleton-body { padding: 1.5rem; }
.skeleton-line {
  height: 12px;
  margin-bottom: 0.75rem;
  border-radius: 4px;
}
.skeleton-line--short { width: 40%; }
.skeleton-line--med { width: 70%; }
.skeleton-line--full { width: 100%; }
.skeleton-price { height: 24px; width: 60px; }

/* ── HOW IT WORKS ──────────────────────── */
.how-it-works { background: var(--navy); }
.how-it-works .section__header {
  text-align: center;
  margin-bottom: 4rem;
}
.how-it-works .section__header .label { margin-bottom: 1rem; }
.how-it-works h2 { color: var(--white); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 2rem;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,169,110,0.3), transparent);
}
.step-card {
  text-align: center;
  position: relative;
  padding-top: 1rem;
}
.step-card__number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 300;
  color: rgba(200,169,110,0.2);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.step-card__icon {
  width: 64px;
  height: 64px;
  background: rgba(200,169,110,0.1);
  border: 1px solid rgba(200,169,110,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
  color: var(--gold);
}
.step-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.step-card__text {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

/* ── TESTIMONIALS ──────────────────────── */
.testimonials { background: var(--gold-pale); }
.testimonials .section__header {
  text-align: center;
  margin-bottom: 4rem;
}
.testimonials .section__header .label { margin-bottom: 1rem; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(200,169,110,0.15);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.testimonial-card__stars {
  color: var(--gold);
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}
.testimonial-card__quote {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--navy);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1rem;
  flex-shrink: 0;
}
.testimonial-card__name {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--navy);
}
.testimonial-card__role {
  font-size: 0.75rem;
  color: var(--grey-mid);
}

/* ── CTA BANNER ────────────────────────── */
.cta-banner {
  background: var(--navy);
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 100%, rgba(200,169,110,0.1) 0%, transparent 60%);
}
.cta-banner__content { position: relative; z-index: 1; }
.cta-banner h2 {
  color: var(--white);
  margin-bottom: 1rem;
}
.cta-banner p {
  color: rgba(255,255,255,0.6);
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto 2.5rem;
}
.cta-banner__actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── FOOTER ────────────────────────────── */
.footer {
  background: var(--navy);
  border-top: 1px solid rgba(200,169,110,0.15);
  padding: 4rem 0 2rem;
  color: rgba(255,255,255,0.6);
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer__brand-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 0.25rem;
}
.footer__brand-sub {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer__desc {
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
}
.footer__contact-item svg {
  width: 14px;
  height: 14px;
  color: var(--gold);
  flex-shrink: 0;
}
.footer__col-title {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  font-weight: 600;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer__link {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
}
.footer__link:hover { color: var(--gold); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer__copy { font-size: 0.8rem; }
.footer__legal {
  display: flex;
  gap: 1.5rem;
}
.footer__legal a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  transition: var(--transition);
}
.footer__legal a:hover { color: var(--gold); }

/* ── PRODUCTS PAGE ─────────────────────── */
.page-hero {
  background: var(--navy);
  padding: 8rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 50% 80%, rgba(200,169,110,0.08) 0%, transparent 60%);
}
.page-hero__content { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-hero p {
  color: rgba(255,255,255,0.6);
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto;
}

/* Filters */
.filters {
  padding: 2rem 0;
  border-bottom: 1px solid var(--grey-light);
  margin-bottom: 2.5rem;
}
.filters__inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border: 1.5px solid var(--grey-light);
  background: transparent;
  color: var(--grey-dark);
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover {
  border-color: var(--navy);
  color: var(--navy);
}
.filter-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}
.filters__label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-mid);
  font-weight: 600;
  margin-right: 0.5rem;
}

/* ── PRODUCT DETAIL ────────────────────── */
.product-detail {
  padding: 6rem 0;
}
.product-detail__breadcrumb {
  font-size: 0.8rem;
  color: var(--grey-mid);
  margin-bottom: 2.5rem;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.product-detail__breadcrumb a { color: var(--gold); }
.product-detail__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.product-detail__image-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--navy);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.product-detail__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-detail__image-placeholder {
  font-size: 5rem;
  opacity: 0.3;
}
.product-detail__badge {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 2px;
}
.product-detail__category {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.product-detail__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--navy);
  margin-bottom: 1.25rem;
  line-height: 1.15;
}
.product-detail__price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.product-detail__price sup { font-size: 1.25rem; vertical-align: top; margin-top: 0.5rem; display: inline-block; }
.product-detail__desc {
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 2rem;
  font-size: 0.95rem;
}
.product-detail__features {
  background: var(--off-white);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-bottom: 2rem;
}
.product-detail__features-title {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 1rem;
}
.product-detail__feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--text-mid);
  padding: 0.4rem 0;
}
.product-detail__feature-item::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  font-size: 0.8rem;
}
.product-detail__cta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.btn-buy {
  background: var(--gold);
  color: var(--navy);
  padding: 1.1rem 2rem;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 600;
  width: 100%;
  transition: var(--transition);
  box-shadow: var(--shadow-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.btn-buy:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(200,169,110,0.4);
}
.btn-buy:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.product-detail__guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--grey-mid);
  padding: 0.75rem;
}
.product-detail__guarantee::before { content: '🔒'; }

/* ── ABOUT PAGE ────────────────────────── */
.about-section { padding: 5rem 0; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  border: 1px solid var(--grey-light);
  transition: var(--transition);
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.team-card__avatar {
  width: 80px;
  height: 80px;
  background: var(--navy);
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 2rem;
}
.team-card__name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 0.25rem;
}
.team-card__role {
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}

/* ── CONTACT PAGE ──────────────────────── */
.contact-section { padding: 5rem 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}
.contact-info__title {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 1rem;
}
.contact-info__text {
  color: var(--text-mid);
  margin-bottom: 2rem;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--grey-light);
}
.contact-detail__icon {
  width: 44px;
  height: 44px;
  background: var(--navy);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-detail__label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-mid);
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.contact-detail__value {
  font-size: 0.9rem;
  color: var(--navy);
}
.contact-detail__value a { transition: var(--transition); }
.contact-detail__value a:hover { color: var(--gold); }

/* Form */
.contact-form {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 3rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--grey-light);
}
.contact-form__title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--navy);
  margin-bottom: 2rem;
}
.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--grey-light);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--off-white);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(200,169,110,0.12);
}
.form-group textarea { height: 130px; resize: vertical; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-msg {
  padding: 1rem;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  margin-top: 1rem;
  display: none;
}
.form-msg--success {
  background: rgba(34,197,94,0.1);
  color: #166534;
  border: 1px solid rgba(34,197,94,0.3);
}
.form-msg--error {
  background: rgba(239,68,68,0.1);
  color: #991b1b;
  border: 1px solid rgba(239,68,68,0.3);
}

/* ── FAQ ───────────────────────────────── */
.faq-section { padding: 5rem 0; max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--grey-light);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--navy);
  gap: 1rem;
  transition: var(--transition);
  background: transparent;
  width: 100%;
  text-align: left;
}
.faq-question:hover { color: var(--gold); }
.faq-question__icon {
  width: 28px;
  height: 28px;
  background: var(--grey-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition);
  flex-shrink: 0;
  color: var(--navy);
}
.faq-item.open .faq-question__icon {
  background: var(--gold);
  color: var(--navy);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 300px; padding-bottom: 1.5rem; }
.faq-answer p {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ── SUCCESS / CANCEL PAGES ────────────── */
.result-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}
.result-page__icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}
.result-page__icon--success { background: rgba(34,197,94,0.1); }
.result-page__icon--cancel  { background: rgba(239,68,68,0.1); }
.result-page__title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--navy);
  margin-bottom: 1rem;
}
.result-page__text {
  color: var(--text-mid);
  max-width: 440px;
  margin: 0 auto 2rem;
}

/* ── LEGAL PAGES ───────────────────────── */
.legal-section {
  padding: 5rem 0;
  max-width: 800px;
  margin: 0 auto;
}
.legal-section h2 {
  font-size: 1.5rem;
  color: var(--navy);
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}
.legal-section p, .legal-section li {
  color: var(--text-mid);
  font-size: 0.925rem;
  line-height: 1.85;
  margin-bottom: 0.75rem;
}
.legal-section ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.legal-section strong { color: var(--navy); }

/* ── NOTIFICATIONS ─────────────────────── */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--navy);
  color: var(--white);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  transform: translateY(100px);
  opacity: 0;
  transition: var(--transition);
  max-width: 320px;
}
.toast.show {
  transform: translateY(0);
  opacity: 1;
}
.toast--success { border-left: 4px solid #22c55e; }
.toast--error   { border-left: 4px solid #ef4444; }

/* ── LOADING ───────────────────────────── */
.loading-spinner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem;
  gap: 0.75rem;
  color: var(--grey-mid);
  font-size: 0.875rem;
}
.spinner {
  width: 24px;
  height: 24px;
  border: 2px solid var(--grey-light);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Error state */
.error-state {
  text-align: center;
  padding: 4rem 2rem;
}
.error-state h3 {
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.error-state p {
  color: var(--grey-mid);
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

/* ── ANIMATIONS ────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(-8px); }
}
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ────────────────────────── */
@media (max-width: 1024px) {
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .about-strip__inner { grid-template-columns: 1fr; gap: 3rem; }
  .product-detail__inner { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .nav__actions .btn { display: none; }
  .hero__accent { display: none; }
  .steps-grid::before { display: none; }
  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; }
  .about-strip__inner { gap: 2rem; }
  .contact-form { padding: 2rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .section { padding: 4rem 0; }
  .benefits-grid { grid-template-columns: 1fr; }
  .stats-bar__inner { gap: 1rem; }
}
