/* ============================================================
   SURPPO™ — Official Website Stylesheet
   BRITLYN LTD | Company No. 16624400
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

/* ─── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Brand */
  --navy:        #1A1A6E;
  --navy-dark:   #0D0D42;
  --navy-mid:    #2323A8;
  --navy-pale:   #ECEEFF;
  --silver:      #7B7CA8;
  --star-blue:   #4A4AFF;

  /* Neutrals */
  --bg:          #F7F8FF;
  --white:       #FFFFFF;
  --dark:        #08081A;
  --mid:         #2D2D4E;
  --gray:        #5A5B78;
  --light-gray:  #DDE0F0;
  --very-light:  #F0F1FA;

  /* Actions */
  --amazon:      #FF9900;
  --amazon-dark: #E08800;
  --success:     #22C55E;

  /* Fonts */
  --ff-head: 'Sora', -apple-system, sans-serif;
  --ff-body: 'Inter', -apple-system, sans-serif;

  /* Shadows */
  --sh-xs: 0 1px 4px rgba(26,26,110,.06);
  --sh-sm: 0 2px 10px rgba(26,26,110,.08);
  --sh-md: 0 6px 24px rgba(26,26,110,.11);
  --sh-lg: 0 16px 52px rgba(26,26,110,.15);
  --sh-xl: 0 28px 72px rgba(26,26,110,.20);

  /* Radii */
  --r-sm: 6px;
  --r:    12px;
  --r-lg: 20px;
  --r-xl: 32px;

  /* Motion */
  --ease:   cubic-bezier(0.22, 1, 0.36, 1);
  --t:      0.3s var(--ease);
  --t-lg:   0.6s var(--ease);

  /* Layout */
  --max-w: 1260px;
  --px:    clamp(20px, 4vw, 56px);
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--ff-body);
  background: var(--bg);
  color: var(--mid);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a   { text-decoration: none; color: inherit; transition: color var(--t); }
button { cursor: pointer; font-family: var(--ff-body); border: none; background: none; }
ul, ol { list-style: none; }

/* ─── Layout helpers ─────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--px); }
.section    { padding: 96px 0; }
.section-sm { padding: 60px 0; }
.section-lg { padding: 128px 0; }

/* ─── Header ─────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background var(--t), box-shadow var(--t), padding var(--t);
}
.site-header.scrolled {
  background: rgba(247,248,255,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--light-gray);
  padding: 12px 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
}
.logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mid);
  position: relative;
  padding-bottom: 3px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: width var(--t);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 12px; }
.btn-cart {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--navy);
  color: var(--white);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  transition: background var(--t), transform var(--t);
}
.btn-cart:hover { background: var(--navy-mid); transform: translateY(-1px); }
.cart-count {
  background: var(--amazon);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  min-width: 17px;
  height: 17px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}
.cart-count.has-items { display: flex; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 5px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--mid);
  border-radius: 2px;
  transition: transform var(--t), opacity var(--t);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy-dark);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--ff-head);
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  transition: color var(--t);
}
.mobile-menu a:hover { color: var(--star-blue); }
.mobile-close {
  position: absolute;
  top: 22px; right: var(--px);
  font-size: 28px;
  color: rgba(255,255,255,0.5);
}

/* ─── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 100px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--t);
  white-space: nowrap;
}
.btn-primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-primary:hover {
  background: var(--navy-mid);
  border-color: var(--navy-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(26,26,110,.28);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.4);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.08);
  transform: translateY(-2px);
}
.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--light-gray);
}
.btn-outline-dark:hover {
  border-color: var(--navy);
  transform: translateY(-2px);
}
.btn-amazon {
  background: var(--amazon);
  color: var(--dark);
  border-color: var(--amazon);
  font-weight: 700;
}
.btn-amazon:hover {
  background: var(--amazon-dark);
  border-color: var(--amazon-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,153,0,.35);
}
.btn-sm { padding: 10px 20px; font-size: 12px; }
.btn-lg { padding: 17px 40px; font-size: 15px; }
.btn-full { width: 100%; justify-content: center; }

/* ─── Section headers ─────────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 64px; }
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 14px;
}
.section-tag::before, .section-tag::after {
  content: '';
  display: block;
  width: 20px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
}
.section-title {
  font-family: var(--ff-head);
  font-size: clamp(28px, 4.5vw, 52px);
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.section-title em { font-style: normal; color: var(--navy); }
.section-title .highlight {
  position: relative;
  display: inline-block;
}
.section-title .highlight::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 4px;
  background: var(--star-blue);
  border-radius: 2px;
  opacity: 0.3;
}
.section-sub {
  font-size: 16px;
  color: var(--gray);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ─── Hero ───────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, #2525C0 100%);
  min-height: 100vh;
  padding-top: 80px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
}

/* Animated star field background */
.hero-stars {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-stars::before, .hero-stars::after {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74,74,255,0.18) 0%, transparent 70%);
}
.hero-stars::before { top: -200px; right: -100px; }
.hero-stars::after  { bottom: -200px; left: -100px; animation: pulse 6s ease-in-out infinite alternate; }

@keyframes pulse {
  from { transform: scale(1); opacity: 0.5; }
  to   { transform: scale(1.3); opacity: 1; }
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 80px 0;
  width: 100%;
}

/* Hero — left content */
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.9);
  margin-bottom: 24px;
}
.hero-tag .dot {
  width: 6px; height: 6px;
  background: #4AFFA4;
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

.hero h1 {
  font-family: var(--ff-head);
  font-size: clamp(40px, 5.5vw, 76px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--white);
  margin-bottom: 22px;
}
.hero h1 .accent {
  background: linear-gradient(135deg, #6B8FFF, #A78FFF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-lead {
  font-size: 17px;
  color: rgba(255,255,255,.68);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 440px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-badges {
  display: flex;
  gap: 20px;
  margin-top: 52px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,.1);
  flex-wrap: wrap;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  letter-spacing: 0.02em;
}
.hero-badge-icon {
  width: 28px; height: 28px;
  background: rgba(255,255,255,.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

/* Hero — right product mosaic */
.hero-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
  height: 520px;
}
.mosaic-tile {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(8px);
  position: relative;
  transition: transform var(--t), border-color var(--t);
  cursor: pointer;
}
.mosaic-tile:hover {
  transform: scale(1.02) translateY(-3px);
  border-color: rgba(255,255,255,.25);
}
.mosaic-tile img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 16px;
  transition: transform var(--t-lg);
}
.mosaic-tile:hover img { transform: scale(1.06); }
.mosaic-tile-label {
  position: absolute;
  bottom: 12px; left: 12px;
  background: rgba(13,13,66,.7);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.9);
}
.mosaic-tile:nth-child(1) { grid-row: 1 / 3; }

/* ─── Category Cards ──────────────────────────────────────────── */
.categories-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.cat-card {
  border-radius: var(--r-lg);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--t), box-shadow var(--t);
  text-decoration: none;
  display: block;
}
.cat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-xl);
}
.cat-card-kitchen  { background: linear-gradient(135deg, #1A1A6E, #2B2BAF); }
.cat-card-garden   { background: linear-gradient(135deg, #1A5C2E, #2D8A4A); }
.cat-card-sports   { background: linear-gradient(135deg, #1A1A6E, #4A1A8E); }

.cat-card::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
}
.cat-card::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -20px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
}
.cat-icon {
  font-size: 36px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.cat-name {
  font-family: var(--ff-head);
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
  position: relative;
  z-index: 1;
}
.cat-count {
  font-size: 13px;
  color: rgba(255,255,255,.6);
  font-weight: 500;
  position: relative;
  z-index: 1;
}
.cat-arrow {
  position: absolute;
  bottom: 24px; right: 24px;
  width: 36px; height: 36px;
  background: rgba(255,255,255,.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: background var(--t), transform var(--t);
}
.cat-card:hover .cat-arrow {
  background: rgba(255,255,255,.25);
  transform: translateX(3px);
}

/* ─── Product Cards ───────────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.product-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-xs);
  border: 1.5px solid var(--light-gray);
  display: flex;
  flex-direction: column;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--sh-xl);
  border-color: var(--navy-pale);
}
.product-img-wrap {
  position: relative;
  aspect-ratio: 1;
  background: var(--very-light);
  overflow: hidden;
}
.product-img-wrap img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 20px;
  transition: transform var(--t-lg);
}
.product-card:hover .product-img-wrap img { transform: scale(1.07); }
.product-placeholder {
  position: absolute; inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(145deg, var(--very-light), #dde0f5);
  color: var(--navy);
}
.product-placeholder svg { opacity: 0.4; }
.product-placeholder span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray);
}

.badge {
  position: absolute;
  top: 14px; left: 14px;
  padding: 4px 11px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 1;
}
.badge-seller  { background: var(--navy); color: var(--white); }
.badge-popular { background: #22C55E; color: var(--white); }
.badge-value   { background: #8B5CF6; color: var(--white); }
.badge-new     { background: var(--amazon); color: var(--dark); }

.product-body {
  padding: 20px 20px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-cat {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 6px;
}
.product-name {
  font-family: var(--ff-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.product-desc {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 16px;
}
.product-price {
  font-family: var(--ff-head);
  font-size: 24px;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.product-price small {
  font-size: 12px;
  font-weight: 400;
  color: var(--gray);
  font-family: var(--ff-body);
  letter-spacing: 0;
}
.product-actions { display: flex; gap: 8px; }
.product-actions .btn {
  flex: 1;
  padding: 10px 12px;
  font-size: 11.5px;
}

/* ─── Trust Strip ──────────────────────────────────────────────── */
.trust-strip {
  background: var(--navy-dark);
}
.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.trust-item { text-align: center; }
.trust-icon-bg {
  width: 60px; height: 60px;
  margin: 0 auto 18px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: background var(--t), border-color var(--t);
}
.trust-item:hover .trust-icon-bg {
  background: rgba(74,74,255,.2);
  border-color: rgba(74,74,255,.4);
}
.trust-name {
  font-family: var(--ff-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 7px;
}
.trust-desc {
  font-size: 13px;
  color: rgba(255,255,255,.48);
  line-height: 1.6;
}

/* ─── About Section ───────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.about-product-tile {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-md);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--t);
}
.about-product-tile:hover { transform: scale(1.03); }
.about-product-tile img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 16px;
}
.about-badge {
  position: absolute;
  bottom: -18px; right: -18px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--r-xl);
  padding: 22px 26px;
  text-align: center;
  box-shadow: var(--sh-xl);
}
.about-badge-num {
  font-family: var(--ff-head);
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -0.03em;
}
.about-badge-lbl {
  font-size: 11px;
  color: rgba(255,255,255,.7);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.4;
}
.about-content { padding: 20px 0 40px; }
.about-content .section-tag,
.about-content .section-title { text-align: left; }
.about-content .section-tag::before { display: none; }
.about-content .section-title { margin-bottom: 18px; }
.about-p {
  font-size: 15.5px;
  color: var(--gray);
  line-height: 1.85;
  margin-bottom: 14px;
}
.about-bullets {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 28px 0 36px;
}
.about-bullet {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  color: var(--mid);
  line-height: 1.5;
}
.bullet-icon {
  width: 22px; height: 22px;
  background: var(--navy-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 11px;
  color: var(--navy);
  font-weight: 700;
}
.tm-notice {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy-pale);
  border: 1px solid var(--navy);
  border-radius: var(--r);
  padding: 10px 16px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--navy);
  margin-top: 12px;
}

/* ─── Amazon CTA ──────────────────────────────────────────────── */
.amazon-cta {
  background: linear-gradient(135deg, #0D0D42 0%, #1A1A6E 60%, #2323A0 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.amazon-cta::before {
  content: '★';
  position: absolute;
  top: -60px; left: 50%;
  transform: translateX(-50%);
  font-size: 400px;
  color: rgba(255,255,255,.015);
  pointer-events: none;
  font-family: var(--ff-head);
}
.amazon-cta-inner { max-width: 640px; margin: 0 auto; position: relative; z-index: 1; }
.amazon-cta h2 {
  font-family: var(--ff-head);
  font-size: clamp(30px, 4.5vw, 56px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 18px;
}
.amazon-cta h2 span { color: var(--amazon); }
.amazon-cta p {
  font-size: 16px;
  color: rgba(255,255,255,.6);
  line-height: 1.78;
  margin-bottom: 36px;
}
.amazon-footer-note {
  font-size: 12px;
  color: rgba(255,255,255,.28);
  margin-top: 20px;
  letter-spacing: 0.04em;
}

/* ─── Footer ──────────────────────────────────────────────────── */
.site-footer {
  background: var(--dark);
  color: var(--white);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 52px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  margin-bottom: 28px;
}
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-logo {
  display: inline-block;
  background: rgba(255,255,255,0.95);
  border-radius: 10px;
  padding: 7px 12px;
}
.footer-logo img {
  height: 32px;
  filter: none;
  opacity: 1;
}
.footer-tagline {
  font-size: 13.5px;
  color: rgba(255,255,255,.4);
  line-height: 1.75;
  max-width: 260px;
}
.footer-contact-links { display: flex; flex-direction: column; gap: 9px; margin-top: 4px; }
.footer-contact-links a {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color var(--t);
}
.footer-contact-links a:hover { color: var(--star-blue); }
.footer-reg {
  font-size: 11.5px;
  color: rgba(255,255,255,.25);
  line-height: 1.6;
  margin-top: 8px;
}
.footer-col h5 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-size: 13.5px;
  color: rgba(255,255,255,.54);
  transition: color var(--t);
}
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,.22); }
.footer-legal { display: flex; gap: 22px; }
.footer-legal a {
  font-size: 12px;
  color: rgba(255,255,255,.26);
  transition: color var(--t);
}
.footer-legal a:hover { color: rgba(255,255,255,.7); }
.footer-uk-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: rgba(255,255,255,.25);
}

/* ─── Animations ─────────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.fade-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.fade-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.scale-in {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.fade-up.is-visible,
.fade-left.is-visible,
.fade-right.is-visible,
.scale-in.is-visible {
  opacity: 1;
  transform: none;
}
.d-1 { transition-delay: 0.08s; }
.d-2 { transition-delay: 0.16s; }
.d-3 { transition-delay: 0.24s; }
.d-4 { transition-delay: 0.32s; }
.d-5 { transition-delay: 0.40s; }
.d-6 { transition-delay: 0.48s; }
.d-7 { transition-delay: 0.56s; }

/* ─── Toast ───────────────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 28px; right: 28px;
  background: var(--navy-dark);
  color: var(--white);
  padding: 14px 20px;
  border-radius: var(--r);
  font-size: 13.5px;
  font-weight: 500;
  box-shadow: var(--sh-xl);
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  transform: translateY(80px);
  opacity: 0;
  transition: transform var(--t), opacity var(--t);
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast-check {
  width: 20px; height: 20px;
  background: var(--success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ─── Page Hero (inner pages) ─────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  padding: 156px 0 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 50px 50px;
}
.page-hero h1 {
  font-family: var(--ff-head);
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.page-hero p {
  font-size: 16px;
  color: rgba(255,255,255,.6);
  position: relative;
  z-index: 1;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: rgba(255,255,255,.45);
  margin-bottom: 14px;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.breadcrumb a { color: rgba(255,255,255,.6); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { opacity: 0.4; }

/* ─── Cart Page ───────────────────────────────────────────────── */
.cart-page { min-height: 80vh; padding-top: 80px; }
.cart-page-head {
  padding: 60px 0 44px;
  border-bottom: 1px solid var(--light-gray);
}
.cart-page-head h1 {
  font-family: var(--ff-head);
  font-size: clamp(26px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--dark);
}
.cart-page-head .sub {
  font-size: 14px;
  color: var(--gray);
  margin-top: 6px;
}
.cart-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: start;
  padding: 48px 0 100px;
}
.cart-items-list { display: flex; flex-direction: column; gap: 14px; }
.cart-item {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 20px;
  align-items: start;
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 20px;
  box-shadow: var(--sh-xs);
  border: 1.5px solid transparent;
  transition: box-shadow var(--t), border-color var(--t);
}
.cart-item:hover { box-shadow: var(--sh-md); border-color: var(--light-gray); }
.cart-item-img {
  width: 100px; height: 100px;
  background: var(--very-light);
  border-radius: var(--r);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart-item-img img { width: 100%; height: 100%; object-fit: contain; padding: 8px; }
.cart-item-cat {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 5px;
}
.cart-item-name {
  font-family: var(--ff-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.qty-row { display: flex; align-items: center; gap: 14px; }
.qty-ctrl {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--light-gray);
  border-radius: 100px;
}
.qty-btn {
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--mid);
  transition: background var(--t);
}
.qty-btn:hover { background: var(--very-light); }
.qty-val {
  padding: 0 12px;
  font-size: 14px;
  font-weight: 700;
  min-width: 34px;
  text-align: center;
  color: var(--dark);
}
.remove-item {
  font-size: 12px;
  color: var(--gray);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--t);
}
.remove-item:hover { color: #EF4444; }
.cart-item-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.cart-item-price {
  font-family: var(--ff-head);
  font-size: 22px;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.02em;
}
.cart-amz-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--amazon);
  color: var(--dark);
  border-radius: 100px;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: background var(--t), transform var(--t);
}
.cart-amz-btn:hover { background: var(--amazon-dark); transform: translateY(-1px); }

/* Cart summary */
.cart-summary {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 32px;
  box-shadow: var(--sh-md);
  position: sticky;
  top: 100px;
}
.cart-summary h3 {
  font-family: var(--ff-head);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--light-gray);
}
.summary-rows { display: flex; flex-direction: column; gap: 13px; margin-bottom: 20px; }
.summary-row { display: flex; justify-content: space-between; align-items: center; font-size: 14px; }
.summary-row .lbl { color: var(--gray); }
.summary-row .val { font-weight: 600; color: var(--dark); }
.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  border-top: 1px solid var(--light-gray);
  border-bottom: 1px solid var(--light-gray);
  margin-bottom: 24px;
}
.summary-total .lbl { font-family: var(--ff-head); font-size: 16px; font-weight: 700; }
.summary-total .val { font-family: var(--ff-head); font-size: 28px; font-weight: 800; letter-spacing: -0.02em; }
.checkout-note { font-size: 12px; color: var(--gray); text-align: center; margin-top: 14px; line-height: 1.6; }

.cart-empty { text-align: center; padding: 80px 20px; display: none; }
.cart-empty.show { display: block; }
.cart-empty-icon { font-size: 64px; margin-bottom: 20px; opacity: 0.2; }
.cart-empty h3 { font-family: var(--ff-head); font-size: 28px; font-weight: 800; margin-bottom: 10px; letter-spacing: -0.02em; }
.cart-empty p { font-size: 15px; color: var(--gray); margin-bottom: 28px; }

/* ─── Policy Pages ────────────────────────────────────────────── */
.policy-wrap { max-width: 760px; margin: 0 auto; padding: 72px var(--px) 100px; }
.policy-wrap h2 {
  font-family: var(--ff-head);
  font-size: 24px;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.02em;
  margin: 48px 0 14px;
}
.policy-wrap h2:first-of-type { margin-top: 0; }
.policy-wrap p { font-size: 15px; color: var(--gray); line-height: 1.85; margin-bottom: 16px; }
.policy-wrap ul, .policy-wrap ol { margin: 12px 0 18px 20px; display: flex; flex-direction: column; gap: 8px; }
.policy-wrap li { font-size: 15px; color: var(--gray); line-height: 1.7; }
.policy-wrap a { color: var(--navy); text-decoration: underline; text-decoration-color: transparent; transition: text-decoration-color var(--t); }
.policy-wrap a:hover { text-decoration-color: var(--navy); }
.policy-callout {
  background: var(--navy-pale);
  border-left: 3px solid var(--navy);
  padding: 18px 22px;
  border-radius: 0 var(--r) var(--r) 0;
  margin: 22px 0;
}
.policy-callout p { margin: 0; font-size: 14px; font-style: italic; color: var(--navy); }

/* ─── Contact Grid ────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 820px;
  margin: 0 auto;
}
.contact-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 32px;
  text-align: center;
  box-shadow: var(--sh-sm);
  border: 1.5px solid var(--light-gray);
  transition: box-shadow var(--t), transform var(--t);
}
.contact-card:hover { box-shadow: var(--sh-md); transform: translateY(-4px); }
.contact-card-icon {
  width: 52px; height: 52px;
  background: var(--navy-pale);
  border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-size: 22px;
}
.contact-card-title {
  font-family: var(--ff-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}
.contact-card-detail {
  font-size: 13px;
  color: var(--navy);
  line-height: 1.6;
}
.contact-card-detail a { color: var(--navy); }

/* ─── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-row { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { max-width: 520px; margin: 0 auto; }
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-mosaic { order: -1; height: 280px; }
  .categories-row { grid-template-columns: repeat(2, 1fr); }
  .cart-layout { grid-template-columns: 1fr; }
  .cart-summary { position: static; }
  .contact-grid { grid-template-columns: 1fr 1fr; max-width: 560px; }
}
@media (max-width: 768px) {
  :root { --px: 18px; }
  .section { padding: 56px 0; }
  .section-sm { padding: 44px 0; }
  .section-lg { padding: 72px 0; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-row { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cart-item { grid-template-columns: 80px 1fr; }
  .cart-item-right { grid-column: 1/-1; flex-direction: row; justify-content: space-between; align-items: center; }
  .categories-row { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .hero-badges { gap: 14px; }
  .contact-grid { grid-template-columns: 1fr; max-width: 400px; }
  .about-product-grid { max-width: 380px; margin: 0 auto; }
  .hero-tag { font-size: 10px; }
}
@media (max-width: 480px) {
  :root { --px: 16px; }
  .hero { padding-top: 70px; }
  .hero h1 { font-size: 34px; }
  .hero-inner { gap: 28px; padding: 48px 0 40px; }
  .hero-mosaic { height: 200px; gap: 10px; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; text-align: center; justify-content: center; }
  .hero-badges { flex-direction: column; gap: 10px; padding-top: 24px; margin-top: 28px; }
  .products-grid { grid-template-columns: 1fr; }
  .trust-row { grid-template-columns: 1fr; }
  .section-title { font-size: 26px; }
  .about-badge { right: 0; bottom: -12px; padding: 16px 20px; }
  .about-badge-num { font-size: 26px; }
  .cart-page-head h1 { font-size: 28px; }
  .cart-item { grid-template-columns: 72px 1fr; gap: 14px; padding: 16px; }
  .page-hero { padding: 130px 0 56px; }
  .page-hero h1 { font-size: 32px; }
  .footer-grid { gap: 24px; }
  .btn-lg { padding: 14px 28px; font-size: 14px; }
}
