/* ============================================================
   AR TECH EDUKIT — style.css
   Matching the reference brand design
   Font: Nunito (Google Fonts)
   Colors: Cream bg, dark charcoal text, dark teal primary,
           warm gold accent, deep teal footer
============================================================ */

/* ── Custom Properties ── */
:root {
  --bg:           #FAFAF4;
  --bg-section:   #F5F3ED;
  --white:        #FFFFFF;
  --border:       #E8E3D8;
  --border-light: #F0EBE0;

  --charcoal:     #1C2B2E;
  --charcoal-mid: #4A5568;
  --charcoal-lt:  #718096;

  --teal:         #1E4048;
  --teal-mid:     #2C5F62;
  --teal-light:   #4A7C7E;
  --teal-footer:  #1A3A3D;

  --gold:         #C9923F;
  --gold-light:   #D4A24E;
  --gold-pale:    #F5E6C8;

  --red-badge:    #E53E3E;

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

  --shadow-sm:  0 1px 4px rgba(0,0,0,0.06);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg:  0 8px 32px rgba(0,0,0,0.10);
  --shadow-xl:  0 16px 48px rgba(0,0,0,0.13);

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Nunito', 'Segoe UI', Arial, sans-serif;
  background: var(--bg);
  color: var(--charcoal);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Layout ── */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: all 0.22s var(--ease);
  white-space: nowrap;
  cursor: pointer;
  font-family: inherit;
}
.btn--primary {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(30,64,72,0.3);
}
.btn--primary:hover {
  background: var(--teal-mid);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30,64,72,0.35);
}
.btn--outline {
  background: transparent;
  color: var(--teal);
  border: 2px solid var(--teal);
}
.btn--outline:hover {
  background: var(--teal);
  color: var(--white);
  transform: translateY(-2px);
}
.btn--sm {
  padding: 8px 20px;
  font-size: 0.82rem;
}
.btn--white {
  background: var(--white);
  color: var(--teal);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.btn--white:hover {
  background: var(--bg);
  transform: translateY(-2px);
}
.btn--gold {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(201,146,63,0.35);
}
.btn--gold:hover {
  background: #b67e30;
  transform: translateY(-2px);
}
.btn--full { width: 100%; }

/* Small cart button on product cards */
.btn--cart-sm {
  display: block;
  width: 100%;
  padding: 9px 14px;
  border-radius: 50px;
  background: var(--teal);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  font-family: inherit;
  text-align: center;
  margin-top: 10px;
  transition: background 0.2s, transform 0.2s;
  cursor: pointer;
  border: none;
}
.btn--cart-sm:hover {
  background: var(--teal-mid);
  transform: translateY(-1px);
}

/* ============================================================
   ANNOUNCEMENT BAR
============================================================ */
.announcement-bar {
  background: var(--teal-footer);
  color: var(--white);
  text-align: center;
  padding: 10px 24px;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.announcement-bar__icon { font-size: 1rem; }
.announcement-bar__link {
  color: var(--gold-light);
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-left: 6px;
  transition: color 0.2s;
}
.announcement-bar__link:hover { color: var(--white); }

/* ============================================================
   HEADER
============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(250, 250, 244, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-light);
  transition: box-shadow 0.3s;
}
.header.scrolled { box-shadow: var(--shadow-md); }

.header__inner {
  display: flex;
  align-items: center;
  height: 68px;
  gap: 20px;
}

/* Logo */
.header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 10px;
}
.header__logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
}
.logo-fallback {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-text-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-line {
  font-size: 0.88rem;
  font-weight: 900;
  color: var(--charcoal);
  letter-spacing: 0.06em;
}

/* Nav */
.header__nav { flex: 1; }
.nav__list {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav__link {
  display: inline-block;
  padding: 6px 11px;
  font-size: 0.855rem;
  font-weight: 600;
  color: var(--charcoal-mid);
  border-radius: var(--radius-sm);
  transition: all 0.18s;
}
.nav__link:hover { color: var(--teal); background: rgba(30,64,72,0.06); }
.nav__link.active { color: var(--gold); font-weight: 700; }

/* Header icons */
.header__icons {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}
.icon-btn {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--charcoal);
  transition: all 0.18s;
}
.icon-btn:hover { background: var(--bg-section); color: var(--teal); }

/* Cart badge */
.cart-btn { position: relative; }
.cart-badge {
  position: absolute;
  top: 1px;
  right: 1px;
  min-width: 17px;
  height: 17px;
  padding: 0 4px;
  background: var(--red-badge);
  color: var(--white);
  font-size: 0.62rem;
  font-weight: 800;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--bg);
  line-height: 1;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
}
.hamburger:hover { background: var(--bg-section); }
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all 0.28s var(--ease);
}

/* Search bar */
.search-bar {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 12px 0;
  display: none;
}
.search-bar.visible { display: block; }
.search-bar__inner { display: flex; align-items: center; gap: 12px; }
.search-input {
  flex: 1;
  padding: 10px 20px;
  border: 2px solid var(--border);
  border-radius: 50px;
  font-size: 0.92rem;
  font-family: inherit;
  background: var(--bg);
  color: var(--charcoal);
  outline: none;
  transition: border-color 0.2s;
}
.search-input:focus { border-color: var(--teal); }
.search-close {
  font-size: 1rem;
  color: var(--charcoal-lt);
  padding: 6px 10px;
  border-radius: 6px;
  transition: background 0.2s;
}
.search-close:hover { background: var(--bg-section); }

/* ============================================================
   HERO SECTION
============================================================ */
.hero {
  background: var(--bg);
  padding: 64px 0 56px;
  overflow: hidden;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 56px;
}

/* Left content */
.hero__label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.hero__title {
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 900;
  color: var(--charcoal);
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}
.hero__desc {
  font-size: 1rem;
  color: var(--charcoal-mid);
  max-width: 440px;
  line-height: 1.75;
  margin-bottom: 32px;
}
.hero__cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Right visual */
.hero__visual {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.hero__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
}
/* When image fails to load, hide the broken img */
.hero__img.img-missing { display: none; }
.hero__img.img-missing ~ .hero__img-placeholder { display: flex; }

.hero__img-placeholder {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #EDE8DF 0%, #D8D0C0 100%);
  border-radius: var(--radius-xl);
  color: var(--charcoal-lt);
  text-align: center;
  padding: 24px;
}
.hero__img-placeholder span { font-size: 4rem; }
.hero__img-placeholder p { font-size: 0.85rem; }
.hero__img-placeholder code {
  font-size: 0.8rem;
  background: rgba(0,0,0,0.1);
  padding: 2px 8px;
  border-radius: 4px;
}

/* ============================================================
   TRUST BAR (below hero)
============================================================ */
.trust-bar {
  background: var(--white);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 24px 0;
}
.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  flex: 1;
}
.trust-item__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  flex-shrink: 0;
}
.trust-item__text strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: 2px;
}
.trust-item__text span {
  font-size: 0.78rem;
  color: var(--charcoal-lt);
  line-height: 1.4;
}
.trust-bar__divider {
  width: 1px;
  height: 48px;
  background: repeating-linear-gradient(
    to bottom,
    var(--border) 0px,
    var(--border) 4px,
    transparent 4px,
    transparent 8px
  );
  flex-shrink: 0;
}

/* ============================================================
   SECTION TITLE STYLES
============================================================ */
/* Lined style — centered with decorative line on each side */
.section-title--lined {
  text-align: center;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  letter-spacing: -0.01em;
}
.section-title--lined::before,
.section-title--lined::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
  max-width: 100px;
}

/* Sub text under section title */
.section-sub {
  text-align: center;
  font-size: 0.95rem;
  color: var(--charcoal-mid);
  max-width: 480px;
  margin: -28px auto 40px;
  line-height: 1.65;
}

/* Gold star style for bundles */
.section-title--gold {
  text-align: center;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.gold-star {
  color: var(--gold);
  font-size: 1.1rem;
}

/* ============================================================
   EXPLORE BY CATEGORY — Compact chip row
============================================================ */
.categories {
  padding: 60px 0 52px;
  background: var(--bg);
}
.cat-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.cat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 22px 20px 18px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  min-width: 140px;
  text-align: center;
  cursor: pointer;
  transition: all 0.22s var(--ease);
  color: var(--charcoal);
}
.cat-card:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.cat-card__icon {
  font-size: 2.2rem;
  line-height: 1;
}
.cat-card span {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.3;
}

/* ============================================================
   EXPLORE LEARNING COLLECTIONS — 2-col grid with book images
============================================================ */
.collections {
  padding: 60px 0;
  background: var(--white);
}
.collections__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.collection-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--bg);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 20px;
  transition: all 0.22s var(--ease);
}
.collection-card:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.collection-card__img {
  flex-shrink: 0;
  width: 110px;
  height: 140px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-section);
  display: flex;
  align-items: center;
  justify-content: center;
}
.collection-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Placeholder when image missing */
.col-placeholder {
  background: linear-gradient(135deg, var(--bg-section), var(--border)) !important;
}
.col-placeholder::after {
  content: '📚';
  font-size: 2.5rem;
  opacity: 0.35;
}
.collection-card__body { flex: 1; }
.collection-card__body h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.collection-card__body p {
  font-size: 0.85rem;
  color: var(--charcoal-mid);
  line-height: 1.6;
  margin-bottom: 14px;
}

/* ============================================================
   PRODUCTS — Curated Learning Essentials
============================================================ */
.products {
  padding: 60px 0;
  background: var(--bg-section);
}
.products__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Product card */
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border-light);
  overflow: hidden;
  transition: all 0.25s var(--ease);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.product-card__img {
  position: relative;
  background: var(--bg-section);
  aspect-ratio: 3/4;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s var(--ease);
}
.product-card:hover .product-card__img img { transform: scale(1.04); }

/* Missing image placeholder */
.prd-placeholder {
  background: linear-gradient(135deg, var(--bg-section), var(--border)) !important;
}
.prd-placeholder::after {
  content: '📚';
  font-size: 2.8rem;
  opacity: 0.3;
}

/* Badges */
.prd-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--teal);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 800;
  padding: 3px 9px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.prd-badge--new { background: var(--gold); }

/* Product info */
.product-card__info {
  padding: 14px 14px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.prd-title {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--charcoal);
  line-height: 1.3;
  margin-bottom: 4px;
  flex: 1;
}
.prd-age {
  font-size: 0.74rem;
  color: var(--charcoal-lt);
  font-weight: 600;
  margin-bottom: 4px;
}
.prd-price {
  font-size: 1rem;
  font-weight: 900;
  color: var(--teal);
  margin-bottom: 4px;
}
.prd-stars {
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 1px;
  margin-bottom: 2px;
}
.prd-stars span {
  color: var(--charcoal-lt);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0;
}

/* ============================================================
   BUNDLES — Best Combo Learning Packs
============================================================ */
.bundles {
  padding: 64px 0;
  background: var(--white);
}
.bundles__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.bundle-card {
  background: var(--bg);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.25s var(--ease);
  display: flex;
  flex-direction: column;
}
.bundle-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
/* Highlighted bundle (most popular) */
.bundle-card--featured {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(30,64,72,0.12);
}
.bundle-card--featured .bundle-price { color: var(--gold); }

.bundle-card__img {
  background: var(--bg-section);
  aspect-ratio: 4/3;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bundle-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s;
}
.bundle-card:hover .bundle-card__img img { transform: scale(1.04); }

.bundle-card__body {
  padding: 16px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.bundle-card__body h3 {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--charcoal);
  line-height: 1.3;
}
.bundle-age {
  font-size: 0.78rem;
  color: var(--charcoal-lt);
  font-weight: 600;
}
.bundle-pricing {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 4px 0 8px;
}
.bundle-original {
  font-size: 0.82rem;
  color: #aaa;
  text-decoration: line-through;
  font-weight: 600;
}
.bundle-price {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--teal);
}
.bundle-add { margin-top: auto; }

/* ============================================================
   BOTTOM TRUST STRIP
============================================================ */
.trust-strip {
  background: var(--bg);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 32px 0;
}
.trust-strip__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-around;
  gap: 24px;
  flex-wrap: wrap;
}
.strip-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  max-width: 220px;
  text-align: left;
}
.strip-item__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  flex-shrink: 0;
}
.strip-item strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: 4px;
}
.strip-item p {
  font-size: 0.78rem;
  color: var(--charcoal-lt);
  line-height: 1.5;
}

/* ============================================================
   TESTIMONIALS
============================================================ */
.testimonials {
  padding: 64px 0;
  background: var(--bg-section);
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1.5px solid var(--border-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  transition: all 0.25s var(--ease);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
/* Circular avatar */
.testimonial-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--white);
  flex-shrink: 0;
  overflow: hidden;
}
/* If using actual <img> inside avatar, it fills the circle */
.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.testimonial-avatar--a { background: var(--teal-mid); }
.testimonial-avatar--b { background: var(--gold); }
.testimonial-avatar--c { background: #7B6E9E; }

.testimonial-quote {
  font-size: 0.9rem;
  color: var(--charcoal-mid);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
}
.testimonial-author {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--charcoal);
}

/* ============================================================
   FINAL CTA SECTION
============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-footer) 100%);
  padding: 80px 0;
}
.cta-section__inner {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.cta-section__inner h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.18;
}
.cta-section__inner p {
  font-size: 0.98rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  line-height: 1.7;
}
.cta-section__btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: var(--teal-footer);
  padding-top: 64px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 2fr;
  gap: 40px;
  padding-bottom: 52px;
}

/* Footer col headers */
.footer__col h4 {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col ul a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.18s;
}
.footer__col ul a:hover { color: var(--white); }
.footer__col ul li:not(:has(a)) {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
}

/* Brand column */
.footer__brand { display: flex; flex-direction: column; gap: 16px; }

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.footer__logo-text span {
  font-size: 0.88rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.06em;
}

.footer__tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  max-width: 240px;
}

/* Social icons */
.footer__social {
  display: flex;
  gap: 10px;
}
.footer__social--lg { flex-wrap: wrap; }
.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.8);
  transition: all 0.2s;
}
.social-icon:hover {
  background: var(--teal-light);
  color: var(--white);
  transform: translateY(-2px);
}

/* Newsletter */
.footer__follow { display: flex; flex-direction: column; gap: 20px; }
.footer__newsletter p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 12px;
  margin-top: -10px;
  line-height: 1.5;
}
.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.newsletter-input {
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-size: 0.875rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-input:focus { border-color: var(--teal-light); }

/* Footer bottom */
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 18px 0;
}
.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__bottom-inner > p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}

/* Payment icons */
.payment-icons {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}
.pay-icon {
  background: var(--white);
  color: var(--charcoal);
  font-size: 0.65rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 6px;
  letter-spacing: 0.02em;
}

/* ============================================================
   CART SIDEBAR
============================================================ */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 990;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.cart-overlay.visible { opacity: 1; visibility: visible; }

.cart-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 380px;
  max-width: 95vw;
  height: 100dvh;
  background: var(--white);
  z-index: 995;
  transform: translateX(110%);
  transition: transform 0.32s var(--ease);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-xl);
}
.cart-sidebar.open { transform: translateX(0); }

.cart-sidebar__hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-light);
}
.cart-sidebar__hd h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--charcoal);
}
.cart-close-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--charcoal-mid);
  transition: background 0.2s;
}
.cart-close-btn:hover { background: var(--bg-section); }

.cart-sidebar__body {
  flex: 1;
  overflow-y: auto;
  padding: 20px 24px;
}
.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 48px 0;
  text-align: center;
  color: var(--charcoal-mid);
  font-size: 0.95rem;
}

/* Toast */
.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(16px);
  background: var(--charcoal);
  color: var(--white);
  padding: 11px 24px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  z-index: 1500;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
  max-width: 90vw;
  text-align: center;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ============================================================
   SCROLL REVEAL UTILITY
============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE — Tablet (≤ 1024px)
============================================================ */
@media (max-width: 1024px) {
  .header__nav { display: none; }
  .hamburger { display: flex; }

  /* Mobile nav open state */
  .header__nav.mobile-open {
    display: flex;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    z-index: 850;
    overflow-y: auto;
    border-top: 1px solid var(--border-light);
  }
  .header__nav.mobile-open .nav__list { flex-direction: column; gap: 4px; }
  .header__nav.mobile-open .nav__link { font-size: 1.05rem; padding: 12px 16px; display: block; }

  .hero__inner { grid-template-columns: 1fr; gap: 36px; }
  .hero__desc  { max-width: 100%; }
  .hero__title { font-size: 2.6rem; }

  .trust-bar__inner { flex-wrap: wrap; gap: 20px; }
  .trust-item { flex: 1 1 40%; padding: 0; }
  .trust-bar__divider { display: none; }

  .products__grid { grid-template-columns: repeat(4, 1fr); }

  .bundles__grid { grid-template-columns: repeat(2, 1fr); }

  .collections__grid { grid-template-columns: 1fr; }

  .testimonials__grid { grid-template-columns: 1fr; max-width: 540px; margin: 0 auto; }

  .footer__inner { grid-template-columns: repeat(2, 1fr); }
  .footer__brand { grid-column: 1 / -1; }
  .footer__follow { grid-column: 1 / -1; }

  .trust-strip__inner { justify-content: flex-start; gap: 32px; }
}

/* ============================================================
   RESPONSIVE — Mobile (≤ 640px)
============================================================ */
@media (max-width: 640px) {
  .container { padding: 0 16px; }

  .announcement-bar { font-size: 0.78rem; gap: 6px; }
  .announcement-bar__link { display: none; }

  .hero { padding: 40px 0 36px; }
  .hero__title { font-size: 2.1rem; }
  .hero__cta { flex-direction: column; }
  .hero__cta .btn { width: 100%; justify-content: center; }

  .trust-bar { padding: 20px 0; }
  .trust-item { flex: 1 1 100%; }

  .cat-row { gap: 10px; }
  .cat-card { min-width: 110px; padding: 16px 14px 14px; }
  .cat-card__icon { font-size: 1.8rem; }

  .products__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  .bundles__grid { grid-template-columns: 1fr; }

  .collection-card { flex-direction: column; }
  .collection-card__img { width: 100%; height: 180px; }

  .testimonials__grid { grid-template-columns: 1fr; }
  .testimonials { padding: 44px 0; }

  .trust-strip__inner { flex-direction: column; gap: 20px; }
  .strip-item { max-width: 100%; }

  .cta-section { padding: 56px 0; }
  .cta-section__btns { flex-direction: column; align-items: center; }

  .footer__inner { grid-template-columns: 1fr; gap: 28px; }
  .footer__brand,
  .footer__follow { grid-column: auto; }
  .footer__bottom-inner { flex-direction: column; text-align: center; gap: 10px; }
  .payment-icons { justify-content: center; }

  .section-title--lined { font-size: 1.3rem; gap: 12px; }
  .section-title--lined::before,
  .section-title--lined::after { max-width: 40px; }
  .section-title--gold { font-size: 1.3rem; }
}
