/* ============================================
   SPADA — Premium Sparkling Water Shop
   Design: Luxury/Refined — Navy + Ice Blue + Gold
   ============================================ */

/* --- TOKENS --- */
:root {
  --navy:       #0A1628;
  --navy-mid:   #112240;
  --navy-light: #1B3A6B;
  --ice:        #A8D8EA;
  --ice-light:  #D6EEF7;
  --ice-pale:   #EEF7FB;
  --gold:       #C9A84C;
  --gold-light: #E8C97A;
  --white:      #F8FAFB;
  --off-white:  #EFF3F6;
  --text:       #0A1628;
  --text-mid:   #3D5A80;
  --text-light: #7A9BB5;
  --raspberry:  #C0392B;
  --raspberry-light: #E8A09A;
  --lemon:      #7CB518;
  --lemon-light:#C5E384;

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

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  --shadow-sm:  0 2px 8px rgba(10,22,40,0.08);
  --shadow-md:  0 8px 32px rgba(10,22,40,0.12);
  --shadow-lg:  0 20px 60px rgba(10,22,40,0.18);

  --transition: 0.3s 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: var(--font-body);
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* --- CONTAINER --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10, 22, 40, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(168, 216, 234, 0.12);
}
.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--white);
  text-transform: uppercase;
}
.nav__links {
  display: flex;
  gap: 36px;
}
.nav__links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(248,250,251,0.7);
  transition: color var(--transition);
}
.nav__links a:hover { color: var(--ice); }
.nav__cart {
  position: relative;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border: 1px solid rgba(168,216,234,0.3);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: all var(--transition);
}
.nav__cart:hover {
  background: rgba(168,216,234,0.1);
  border-color: var(--ice);
}
.nav__cart-count {
  background: var(--gold);
  color: var(--navy);
  font-size: 0.65rem;
  font-weight: 700;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 24px 60px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* Animated bubbles */
.bubble {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(168,216,234,0.25), rgba(168,216,234,0.04));
  border: 1px solid rgba(168,216,234,0.15);
  animation: floatBubble linear infinite;
}
.bubble--1 { width: 80px; height: 80px; left: 8%; bottom: -80px; animation-duration: 12s; animation-delay: 0s; }
.bubble--2 { width: 50px; height: 50px; left: 22%; bottom: -50px; animation-duration: 9s; animation-delay: 2s; }
.bubble--3 { width: 120px; height: 120px; left: 55%; bottom: -120px; animation-duration: 15s; animation-delay: 1s; }
.bubble--4 { width: 35px; height: 35px; left: 75%; bottom: -35px; animation-duration: 8s; animation-delay: 3s; }
.bubble--5 { width: 65px; height: 65px; left: 88%; bottom: -65px; animation-duration: 11s; animation-delay: 0.5s; }

@keyframes floatBubble {
  0%   { transform: translateY(0) scale(1); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 0.6; }
  100% { transform: translateY(-110vh) scale(0.8); opacity: 0; }
}

.hero__content {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ice);
  margin-bottom: 16px;
  grid-column: 1;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 6rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  grid-column: 1;
  margin-bottom: 24px;
}
.hero__title em {
  font-style: italic;
  color: var(--ice);
}
.hero__sub {
  font-size: 1rem;
  color: rgba(248,250,251,0.65);
  line-height: 1.7;
  grid-column: 1;
  margin-bottom: 40px;
  max-width: 420px;
}
.hero__cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  grid-column: 1;
}
.hero__visual {
  grid-column: 2;
  grid-row: 1 / 6;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Can stack visual */
.can-stack {
  position: relative;
  width: 200px;
  height: 340px;
}
.can {
  position: absolute;
  width: 90px;
  height: 200px;
  border-radius: 12px 12px 8px 8px;
  background: linear-gradient(160deg, #1B3A6B 0%, #0A1628 60%, #112240 100%);
  border: 1px solid rgba(168,216,234,0.3);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), inset 0 1px 0 rgba(168,216,234,0.2);
}
.can::before {
  content: 'SPADA';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.25em;
  color: rgba(168,216,234,0.8);
  writing-mode: vertical-rl;
  text-orientation: mixed;
}
.can::after {
  content: '';
  position: absolute;
  top: 8px; left: 8px; right: 8px;
  height: 40%;
  background: linear-gradient(180deg, rgba(168,216,234,0.15) 0%, transparent 100%);
  border-radius: 8px 8px 0 0;
}
.can--1 { left: 0; top: 60px; transform: rotate(-8deg); z-index: 1; }
.can--2 { left: 55px; top: 20px; z-index: 3; animation: canFloat 4s ease-in-out infinite; }
.can--3 { right: 0; top: 80px; transform: rotate(6deg); z-index: 2; }

@keyframes canFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 100px;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: var(--ice);
  color: var(--navy);
}
.btn--primary:hover {
  background: var(--ice-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(168,216,234,0.3);
}
.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(248,250,251,0.3);
}
.btn--ghost:hover {
  border-color: var(--ice);
  color: var(--ice);
  background: rgba(168,216,234,0.06);
}
.btn--add {
  width: 100%;
  background: var(--navy);
  color: var(--white);
  border: 1px solid rgba(10,22,40,0.15);
  margin-top: 16px;
}
.btn--add:hover {
  background: var(--navy-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn--sm {
  padding: 8px 18px;
  font-size: 0.72rem;
  background: var(--navy);
  color: var(--white);
  border-radius: 100px;
}
.btn--sm:hover {
  background: var(--navy-light);
}
.btn--gold {
  background: var(--gold);
  color: var(--navy);
}
.btn--gold:hover {
  background: var(--gold-light);
}
.btn--sub {
  width: 100%;
  background: rgba(168,216,234,0.12);
  color: var(--white);
  border: 1px solid rgba(168,216,234,0.25);
  margin-top: 20px;
}
.btn--sub:hover {
  background: rgba(168,216,234,0.2);
  border-color: var(--ice);
}
.btn--sub-featured {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn--sub-featured:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}
.btn--full { width: 100%; }

/* ============================================
   FLAVOUR TABS
   ============================================ */
.flavours {
  background: var(--navy);
  padding: 0 0 40px;
  border-bottom: 1px solid rgba(168,216,234,0.1);
}
.flavours__tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
}
.flavour-tab {
  padding: 10px 28px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(248,250,251,0.5);
  border: 1px solid rgba(168,216,234,0.15);
  transition: all var(--transition);
}
.flavour-tab:hover,
.flavour-tab.active {
  background: rgba(168,216,234,0.12);
  color: var(--ice);
  border-color: var(--ice);
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: 100px 0;
}
.section--alt {
  background: var(--off-white);
}
.section--dark {
  background: var(--navy);
}
.section__header {
  text-align: center;
  margin-bottom: 60px;
}
.section__label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 12px;
}
.section__label--light { color: rgba(168,216,234,0.6); }
.section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 16px;
}
.section__title--light { color: var(--white); }
.section__desc {
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 480px;
  margin: 0 auto;
}
.section__desc--light { color: rgba(248,250,251,0.6); }
.section__header--light .section__label { color: rgba(168,216,234,0.6); }

/* ============================================
   PRODUCT CARDS (Singles)
   ============================================ */
.products-grid {
  display: grid;
  gap: 28px;
}
.products-grid--3 { grid-template-columns: repeat(3, 1fr); }
.products-grid--2 { grid-template-columns: repeat(2, 1fr); }

.product-card {
  background: var(--white);
  border: 1px solid rgba(10,22,40,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  position: relative;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(168,216,234,0.4);
}
.product-card--featured {
  border-color: var(--ice);
  box-shadow: 0 0 0 1px var(--ice), var(--shadow-md);
}
.product-card__badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--navy);
  color: var(--ice);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  z-index: 2;
}
.product-card__badge--raspberry {
  background: var(--raspberry);
  color: #fff;
}
.product-card__badge--lemon {
  background: var(--lemon);
  color: #fff;
}
.product-card__visual {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.product-card__visual--zero {
  background: linear-gradient(135deg, #EEF7FB 0%, #D6EEF7 100%);
}
.product-card__visual--raspberry {
  background: linear-gradient(135deg, #FDF0EF 0%, #F5D0CE 100%);
}
.product-card__visual--lemon {
  background: linear-gradient(135deg, #F4FAE8 0%, #DFF0B0 100%);
}

/* Product can illustration */
.product-can {
  width: 70px;
  height: 150px;
  border-radius: 10px 10px 7px 7px;
  background: linear-gradient(160deg, #1B3A6B 0%, #0A1628 70%);
  border: 1px solid rgba(168,216,234,0.4);
  box-shadow: 0 12px 40px rgba(10,22,40,0.25), inset 0 1px 0 rgba(168,216,234,0.3);
  position: relative;
  z-index: 2;
}
.product-can::before {
  content: 'SPADA';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: rgba(168,216,234,0.9);
  writing-mode: vertical-rl;
}
.product-can--raspberry {
  background: linear-gradient(160deg, #7B1A14 0%, #C0392B 70%);
  border-color: rgba(232,160,154,0.4);
}
.product-can--raspberry::before { color: rgba(255,220,218,0.9); }
.product-can--lemon {
  background: linear-gradient(160deg, #3D6B0A 0%, #5A9E12 70%);
  border-color: rgba(197,227,132,0.4);
}
.product-can--lemon::before { color: rgba(220,245,160,0.9); }

/* Floating bubbles on card */
.product-bubbles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.product-bubbles span {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  animation: productBubble ease-in infinite;
}
.product-bubbles span:nth-child(1) { width: 8px; height: 8px; left: 20%; bottom: 10%; animation-duration: 3s; animation-delay: 0s; }
.product-bubbles span:nth-child(2) { width: 5px; height: 5px; left: 40%; bottom: 5%; animation-duration: 2.5s; animation-delay: 0.8s; }
.product-bubbles span:nth-child(3) { width: 10px; height: 10px; left: 65%; bottom: 15%; animation-duration: 3.5s; animation-delay: 0.3s; }
.product-bubbles span:nth-child(4) { width: 6px; height: 6px; left: 80%; bottom: 8%; animation-duration: 2.8s; animation-delay: 1.2s; }

@keyframes productBubble {
  0%   { transform: translateY(0); opacity: 0.8; }
  100% { transform: translateY(-120px); opacity: 0; }
}

.product-card__body {
  padding: 24px;
}
.product-card__name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 4px;
}
.product-card__sku {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-bottom: 16px;
}
.product-card__pricing {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.product-card__price {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--navy);
}
.product-card__unit {
  font-size: 0.78rem;
  color: var(--text-light);
}

/* ============================================
   BUNDLE CARDS
   ============================================ */
.bundle-card {
  background: var(--white);
  border: 1px solid rgba(10,22,40,0.08);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transition: all var(--transition);
}
.bundle-card:hover {
  border-color: rgba(168,216,234,0.5);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.bundle-card__left { flex: 1; }
.bundle-card__tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  background: var(--ice-pale);
  color: var(--text-mid);
  margin-bottom: 10px;
}
.bundle-card__tag--save {
  background: rgba(201,168,76,0.15);
  color: #8B6914;
}
.bundle-card__name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 4px;
}
.bundle-card__desc {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 12px;
}
.bundle-card__flavours {
  display: flex;
  gap: 6px;
}
.flavour-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  display: inline-block;
}
.flavour-dot--zero     { background: var(--ice); border: 1px solid rgba(10,22,40,0.2); }
.flavour-dot--raspberry { background: var(--raspberry); }
.flavour-dot--lemon    { background: var(--lemon); }

.bundle-card__right {
  text-align: right;
  flex-shrink: 0;
}
.bundle-card__pricing { margin-bottom: 12px; }
.bundle-card__price {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--navy);
  display: block;
}
.bundle-card__was {
  font-size: 0.78rem;
  color: var(--text-light);
  text-decoration: line-through;
}

/* ============================================
   BULK TABLE
   ============================================ */
.bulk-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid rgba(10,22,40,0.08);
  box-shadow: var(--shadow-sm);
}
.bulk-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  font-size: 0.9rem;
}
.bulk-table thead {
  background: var(--navy);
  color: rgba(248,250,251,0.7);
}
.bulk-table thead th {
  padding: 16px 20px;
  text-align: left;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}
.bulk-table tbody tr {
  border-bottom: 1px solid rgba(10,22,40,0.06);
  transition: background var(--transition);
}
.bulk-table tbody tr:last-child { border-bottom: none; }
.bulk-table tbody tr:hover { background: var(--ice-pale); }
.bulk-table tbody td {
  padding: 18px 20px;
  color: var(--text);
  vertical-align: middle;
}
.bulk-table__highlight {
  background: rgba(201,168,76,0.04);
}
.saving { color: var(--text-light); }
.saving--green { color: #2E7D32; font-weight: 600; }
.saving--gold  { color: #8B6914; font-weight: 600; }

/* ============================================
   SUBSCRIPTION TOGGLE
   ============================================ */
.sub-toggle {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 48px;
}
.sub-toggle__btn {
  padding: 10px 28px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(248,250,251,0.5);
  border: 1px solid rgba(168,216,234,0.15);
  transition: all var(--transition);
}
.sub-toggle__btn:hover,
.sub-toggle__btn.active {
  background: rgba(168,216,234,0.12);
  color: var(--ice);
  border-color: var(--ice);
}

/* ============================================
   SUBSCRIPTION PLANS
   ============================================ */
.sub-plans { display: none; }
.sub-plans.active { display: block; }

.sub-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.sub-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(168,216,234,0.15);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  transition: all var(--transition);
}
.sub-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(168,216,234,0.35);
  transform: translateY(-4px);
}
.sub-card--featured {
  background: rgba(168,216,234,0.06);
  border-color: var(--ice);
  box-shadow: 0 0 0 1px rgba(168,216,234,0.3), var(--shadow-lg);
}
.sub-card__ribbon {
  position: absolute;
  top: -1px; right: 24px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 0 0 8px 8px;
}
.sub-card__header { margin-bottom: 24px; }
.sub-card__tier {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ice);
  opacity: 0.7;
  display: block;
  margin-bottom: 8px;
}
.sub-card__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 6px;
}
.sub-card__contents {
  font-size: 0.82rem;
  color: rgba(248,250,251,0.5);
}
.sub-card__price-block {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(168,216,234,0.1);
}
.sub-card__price {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--white);
}
.sub-card__period {
  font-size: 0.85rem;
  color: rgba(248,250,251,0.5);
  margin-left: 4px;
}
.sub-card__monthly {
  display: block;
  font-size: 0.78rem;
  color: rgba(168,216,234,0.6);
  margin-top: 4px;
}
.sub-card__perks li {
  font-size: 0.85rem;
  color: rgba(248,250,251,0.65);
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
}
.sub-card__perks li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--ice);
  font-size: 0.75rem;
}

/* ============================================
   VAT NOTICE
   ============================================ */
.vat-notice {
  background: var(--off-white);
  border-top: 1px solid rgba(10,22,40,0.06);
  padding: 16px 0;
  text-align: center;
}
.vat-notice p {
  font-size: 0.78rem;
  color: var(--text-light);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--navy);
  padding: 60px 0 0;
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(168,216,234,0.1);
}
.footer__logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--white);
  display: block;
  margin-bottom: 12px;
}
.footer__brand p {
  font-size: 0.85rem;
  color: rgba(248,250,251,0.45);
  max-width: 280px;
  line-height: 1.7;
}
.footer__links h4 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(248,250,251,0.4);
  margin-bottom: 16px;
}
.footer__links a {
  display: block;
  font-size: 0.88rem;
  color: rgba(248,250,251,0.6);
  margin-bottom: 10px;
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--ice); }
.footer__bottom {
  padding: 20px 0;
  text-align: center;
}
.footer__bottom p {
  font-size: 0.78rem;
  color: rgba(248,250,251,0.3);
}

/* ============================================
   CART DRAWER
   ============================================ */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,22,40,0.6);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
  backdrop-filter: blur(4px);
}
.cart-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.cart-drawer {
  position: fixed;
  top: 0; right: 0;
  width: 400px;
  max-width: 100vw;
  height: 100vh;
  background: var(--white);
  z-index: 201;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -20px 0 60px rgba(10,22,40,0.2);
}
.cart-drawer.active {
  transform: translateX(0);
}
.cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  border-bottom: 1px solid rgba(10,22,40,0.08);
}
.cart-drawer__header h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
}
.cart-drawer__close {
  font-size: 1.1rem;
  color: var(--text-light);
  padding: 4px 8px;
  transition: color var(--transition);
}
.cart-drawer__close:hover { color: var(--text); }
.cart-drawer__items {
  flex: 1;
  overflow-y: auto;
  padding: 24px 28px;
}
.cart-drawer__empty {
  font-size: 0.9rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 40px;
}
.cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid rgba(10,22,40,0.06);
  gap: 12px;
}
.cart-item__info { flex: 1; }
.cart-item__name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}
.cart-item__price {
  font-size: 0.82rem;
  color: var(--text-mid);
}
.cart-item__remove {
  font-size: 0.8rem;
  color: var(--text-light);
  padding: 4px 8px;
  transition: color var(--transition);
}
.cart-item__remove:hover { color: var(--raspberry); }
.cart-drawer__footer {
  padding: 24px 28px;
  border-top: 1px solid rgba(10,22,40,0.08);
}
.cart-drawer__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  font-weight: 600;
  font-size: 1rem;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .products-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .sub-cards { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .hero__content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero__eyebrow,
  .hero__title,
  .hero__sub,
  .hero__cta-group { grid-column: 1; }
  .hero__cta-group { justify-content: center; }
  .hero__visual { display: none; }
  .products-grid--3,
  .products-grid--2 { grid-template-columns: 1fr; }
  .sub-cards { grid-template-columns: 1fr; }
  .bundle-card { flex-direction: column; align-items: flex-start; }
  .bundle-card__right { width: 100%; text-align: left; }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .cart-drawer { width: 100vw; }
  .sub-toggle { flex-wrap: wrap; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 2.8rem; }
  .section { padding: 60px 0; }
  .bulk-table thead th,
  .bulk-table tbody td { padding: 12px 14px; font-size: 0.8rem; }
}