/*
 * AmmaWater - Premium Mineral Water
 * Ultra-Premium Luxury Stylesheet
 * Location: Thiruvananthapuram, Kerala
 * URL: water.caretechmobile.com
 */

/* ========================================
   1. CSS VARIABLES & ROOT
   ======================================== */
:root {
  /* Primary Colors */
  --color-primary: #0EA5E9;
  --color-primary-dark: #0284C7;
  --color-primary-light: #38BDF8;

  /* Neutral Colors */
  --color-white: #FFFFFF;
  --color-frost: #F8FAFC;
  --color-silver: #94A3B8;
  --color-silver-light: #CBD5E1;
  --color-dark: #0F172A;
  --color-dark-soft: #1E293B;

  /* Gradients */
  --gradient-hero: linear-gradient(135deg, #F8FAFC 0%, #E0F2FE 50%, #BAE6FD 100%);
  --gradient-primary: linear-gradient(135deg, #0EA5E9 0%, #0284C7 100%);
  --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);

  /* Typography */
  --font-primary: 'Montserrat', sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
  --font-size-5xl: 3rem;
  --font-size-6xl: 3.75rem;
  --font-size-7xl: 4.5rem;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  --shadow-glass: 0 8px 32px rgba(14, 165, 233, 0.15);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 500ms ease;

  /* Z-Index */
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-fixed: 300;
  --z-modal: 400;
}

/* ========================================
   2. RESET & BASE STYLES
   ======================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--color-dark);
  background-color: var(--color-frost);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul,
ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ========================================
   3. TYPOGRAPHY
   ======================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-dark);
}

h1 {
  font-size: var(--font-size-5xl);
}

h2 {
  font-size: var(--font-size-4xl);
}

h3 {
  font-size: var(--font-size-3xl);
}

h4 {
  font-size: var(--font-size-2xl);
}

h5 {
  font-size: var(--font-size-xl);
}

h6 {
  font-size: var(--font-size-lg);
}

p {
  color: var(--color-silver);
  margin-bottom: var(--space-4);
}

.text-primary {
  color: var(--color-primary);
}

.text-silver {
  color: var(--color-silver);
}

.text-dark {
  color: var(--color-dark);
}

.text-white {
  color: var(--color-white);
}

.text-center {
  text-align: center;
}

.text-uppercase {
  text-transform: uppercase;
}

.font-bold {
  font-weight: 700;
}

.font-medium {
  font-weight: 500;
}

/* ========================================
   4. LAYOUT UTILITIES
   ======================================== */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.container-fluid {
  width: 100%;
  padding: 0 var(--space-6);
}

.section {
  padding: var(--space-24) 0;
}

.section-lg {
  padding: var(--space-32) 0;
}

.flex {
  display: flex;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.flex-column {
  flex-direction: column;
}

.gap-2 {
  gap: var(--space-2);
}

.gap-4 {
  gap: var(--space-4);
}

.gap-6 {
  gap: var(--space-6);
}

.gap-8 {
  gap: var(--space-8);
}

.grid {
  display: grid;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.grid-7 {
  grid-template-columns: repeat(7, 1fr);
}

/* ========================================
   5. GLASSMORPHISM EFFECTS
   ======================================== */
.glass {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: var(--shadow-glass);
}

.glass-dark {
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.glass-primary {
  background: rgba(14, 165, 233, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* ========================================
   6. BUTTONS
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-8);
  font-size: var(--font-size-base);
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  cursor: pointer;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--color-white);
  box-shadow: 0 4px 14px rgba(14, 165, 233, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(14, 165, 233, 0.5);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--color-primary);
  border: 1px solid rgba(14, 165, 233, 0.3);
}

.btn-glass:hover {
  background: var(--color-white);
  border-color: var(--color-primary);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn-outline:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.btn-lg {
  padding: var(--space-5) var(--space-10);
  font-size: var(--font-size-lg);
}

.btn-sm {
  padding: var(--space-2) var(--space-4);
  font-size: var(--font-size-sm);
}

/* ========================================
   7. HEADER & NAVIGATION
   ======================================== */

/* Header Wrapper */
.header-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-fixed);
  transition: all var(--transition-base);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: var(--space-4) 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.header-wrapper.scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md);
  padding: var(--space-2) 0;
}

/* Top Bar */
.header-topbar {
  background: var(--color-dark);
  padding: var(--space-2) 0;
}

.topbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.topbar-location {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.topbar-location select {
  background: var(--color-dark-soft);
  border: 1px solid var(--color-silver);
  color: var(--color-white);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-sm);
  font-size: var(--font-size-sm);
  font-family: var(--font-primary);
  cursor: pointer;
  min-width: 150px;
}

.topbar-location select:focus {
  outline: none;
  border-color: var(--color-primary);
}

.topbar-go-btn {
  background: var(--color-primary);
  color: var(--color-white);
  padding: var(--space-1) var(--space-4);
  border-radius: var(--radius-sm);
  font-size: var(--font-size-sm);
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition-fast);
}

.topbar-go-btn:hover {
  background: var(--color-primary-dark);
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}

.topbar-contact {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--color-silver-light);
  font-size: var(--font-size-sm);
}

.topbar-contact svg {
  width: 14px;
  height: 14px;
  color: var(--color-primary-light);
  flex-shrink: 0;
}

.topbar-contact a {
  color: var(--color-silver-light);
  transition: color var(--transition-fast);
}

.topbar-contact a:hover {
  color: var(--color-primary-light);
}

/* Main Navbar */
.navbar {
  background: transparent;
  padding: 0;
  border-bottom: none;
  transition: all var(--transition-base);
}

.header-wrapper.scrolled .navbar {
  padding: 0;
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

/* Logo */
.navbar-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.navbar-logo-img {
  height: 60px;
  width: auto;
  transition: height var(--transition-base);
}

.header-wrapper.scrolled .navbar-logo-img {
  height: 50px;
}

/* Main Navigation Menu */
.navbar-menu {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}

.navbar-link {
  font-size: var(--font-size-base);
  font-weight: 500;
  color: var(--color-dark);
  /* Dark text for white header */
  position: relative;
  padding: var(--space-2) var(--space-1);
  transition: color var(--transition-fast);
}

.header-wrapper.scrolled .navbar-link {
  color: var(--color-dark);
  /* Dark text for scrolled header */
}

.navbar-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width var(--transition-base);
}

.navbar-link:hover::after,
.navbar-link.active::after {
  width: 100%;
}

.navbar-link:hover {
  color: var(--color-primary);
}

/* Navbar Icons */
.navbar-icons {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.navbar-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-frost);
  color: var(--color-dark);
  transition: all var(--transition-fast);
  cursor: pointer;
  position: relative;
  border: none;
}

.header-wrapper.scrolled .navbar-icon {
  background: var(--color-frost);
  color: var(--color-dark);
}

.navbar-icon:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.navbar-icon svg {
  width: 18px;
  height: 18px;
}

.navbar-icon-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 18px;
  height: 18px;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--color-white);
}

.navbar-cta {
  background: var(--gradient-primary);
  color: var(--color-white);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: var(--font-size-sm);
  transition: all var(--transition-base);
  box-shadow: 0 4px 14px rgba(14, 165, 233, 0.3);
  margin-left: var(--space-2);
}

.navbar-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(14, 165, 233, 0.4);
  color: var(--color-white);
}

/* Mobile Menu Toggle */
.navbar-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
  cursor: pointer;
  background: none;
  border: none;
}

.navbar-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-dark);
  transition: all var(--transition-base);
}


/* ========================================
   8. HERO BANNERS & BRAND SECTIONS
   ======================================== */

/* Section 1: Top Hero Banner (Full Width) */
.hero-banner {
  margin-top: 80px;
  /* Space for fixed header */
  width: 100%;
  position: relative;
  overflow: hidden;
  height: auto;
  /* Auto height to show full image */
  min-height: 450px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0EA5E9 0%, #38BDF8 100%);
}

.hero-banner-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  /* Show full image without cropping */
  object-position: center;
}

/* Section 2: Hero Premium (Deepika Layout) */
.hero-premium {
  padding: var(--space-12) 0;
  background: var(--color-white);
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.hero-premium-container {
  display: flex;
  justify-content: center;
  max-width: 1440px;
  margin: 0 auto;
  min-height: 600px;
}

/* Sidebar Navigation */
.hero-sidebar {
  width: 260px;
  padding: var(--space-8) var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-10);
  border-right: 1px solid rgba(0, 0, 0, 0.05);
}

.sidebar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-3);
  cursor: pointer;
  transition: all var(--transition-base);
  opacity: 0.6;
}

.sidebar-item:hover,
.sidebar-item.active {
  opacity: 1;
  transform: translateY(-2px);
}

.sidebar-icon {
  width: 64px;
  height: 64px;
  background: var(--color-frost);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-2);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.sidebar-item.active .sidebar-icon {
  background: var(--color-white);
  border: 2px solid var(--color-primary);
  box-shadow: var(--shadow-md);
}

.sidebar-icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.sidebar-item span {
  font-size: var(--font-size-sm);
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1.2;
}

/* Main Display Area */
.hero-main-display {
  flex: 1;
  display: flex;
  position: relative;
}

.hero-brand-bg {
  width: 45%;
  background: var(--color-primary);
  position: relative;
  border-radius: 0 0 100% 0;
  /* Creates the curve similar to Image 1 */
  z-index: 1;
}

.hero-ambassador {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 130%;
  /* Overlap into the left and right */
  height: 110%;
  object-fit: cover;
  object-position: bottom left;
  z-index: 2;
  transition: transform 10s ease;
}

.hero-main-display:hover .hero-ambassador {
  transform: scale(1.05);
}

/* Content Card */
.hero-content-card {
  flex: 1;
  padding: var(--space-16) var(--space-12);
  background: var(--color-white);
  border-radius: var(--radius-2xl) 0 0 var(--radius-2xl);
  margin-top: var(--space-8);
  margin-bottom: var(--space-8);
  box-shadow: -20px 0 40px rgba(0, 0, 0, 0.05);
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card-category {
  font-size: var(--font-size-sm);
  color: var(--color-silver);
  margin-bottom: var(--space-4);
  display: block;
}

.card-brand-title {
  font-size: var(--font-size-6xl);
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: var(--space-4);
  line-height: 1;
}

.card-brand-title span {
  color: var(--color-dark);
}

.card-tagline {
  font-size: var(--font-size-3xl);
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: var(--space-6);
}

.card-description {
  color: var(--color-silver-dark);
  line-height: 1.6;
  max-width: 500px;
  margin-bottom: var(--space-8);
}

.learn-more-link {
  color: var(--color-primary);
  font-weight: 700;
  text-decoration: underline;
  margin-bottom: var(--space-16);
  display: inline-block;
}

.card-secondary-promo h3 {
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-3);
  color: var(--color-dark);
}

.card-secondary-promo p {
  margin-bottom: var(--space-4);
}

.shop-link {
  color: var(--color-primary);
  font-weight: 700;
  border-bottom: 2px solid var(--color-primary);
  padding-bottom: 2px;
}

/* Floating Product info */
.hero-float-product {
  position: absolute;
  bottom: 0;
  right: 15%;
  z-index: 4;
  height: 400px;
  display: flex;
  align-items: flex-end;
}

.float-can {
  height: 90%;
  width: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

.product-info-badge {
  position: absolute;
  bottom: var(--space-8);
  left: -20%;
  background: var(--color-white);
  padding: var(--space-4);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-primary-light);
}

.mini-bottles {
  height: 60px;
  width: auto;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .hero-sidebar {
    width: 220px;
  }

  .card-brand-title {
    font-size: var(--font-size-4xl);
  }

  .hero-brand-bg {
    width: 40%;
  }
}

@media (max-width: 1024px) {
  .hero-premium-container {
    flex-direction: column;
  }

  .hero-sidebar {
    width: 100%;
    flex-direction: row;
    justify-content: space-around;
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .hero-float-product {
    height: 300px;
    right: 5%;
  }
}

@media (max-width: 768px) {
  .hero-main-display {
    flex-direction: column;
  }

  .hero-brand-bg {
    width: 100%;
    height: 300px;
    border-radius: 0 0 50% 50%;
  }

  .hero-ambassador {
    width: 100%;
    height: 100%;
    left: 0;
  }

  .hero-content-card {
    margin: 0;
    border-radius: 0;
    text-align: center;
  }

  .card-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-float-product {
    display: none;
  }
}

/* ========================================
   9. 7-STAGE PURITY SECTION
   ======================================== */
.purity-section {
  background: var(--color-white);
  padding: var(--space-24) 0;
  position: relative;
}

.purity-header {
  text-align: center;
  margin-bottom: var(--space-16);
}

.purity-header h2 {
  font-size: var(--font-size-4xl);
  margin-bottom: var(--space-4);
}

.purity-header p {
  font-size: var(--font-size-lg);
  max-width: 600px;
  margin: 0 auto;
}

.purity-stages {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: var(--space-4);
  position: relative;
}

/* Connection Line */
.purity-stages::before {
  content: '';
  position: absolute;
  top: 60px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg,
      var(--color-primary) 0%,
      var(--color-primary-light) 50%,
      var(--color-primary) 100%);
  z-index: 0;
}

.purity-stage {
  text-align: center;
  position: relative;
  z-index: 1;
}

.purity-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-4);
  box-shadow: 0 8px 24px rgba(14, 165, 233, 0.3);
  transition: all var(--transition-base);
}

.purity-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(14, 165, 233, 0.4);
}

.purity-icon svg,
.purity-icon img {
  width: 36px;
  height: 36px;
  filter: brightness(0) invert(1);
}

.purity-number {
  position: absolute;
  top: -10px;
  right: calc(50% - 50px);
  width: 28px;
  height: 28px;
  background: var(--color-white);
  border: 2px solid var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-sm);
  font-weight: 700;
  color: var(--color-primary);
}

.purity-title {
  font-size: var(--font-size-base);
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: var(--space-2);
}

.purity-desc {
  font-size: var(--font-size-sm);
  color: var(--color-silver);
  line-height: 1.4;
}

/* ========================================
   10. LOCAL TRUST SECTION
   ======================================== */
.trust-section {
  background: var(--gradient-hero);
  padding: var(--space-24) 0;
  position: relative;
  overflow: hidden;
}

.trust-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230EA5E9' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.trust-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.trust-content h2 {
  font-size: var(--font-size-4xl);
  margin-bottom: var(--space-6);
}

.trust-content h2 span {
  color: var(--color-primary);
}

.trust-content p {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-8);
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-6);
  background: var(--color-white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.trust-badge-icon {
  width: 48px;
  height: 48px;
  background: rgba(14, 165, 233, 0.1);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-badge-icon svg {
  width: 24px;
  height: 24px;
  color: var(--color-primary);
}

.trust-badge-text h5 {
  font-size: var(--font-size-base);
  font-weight: 600;
  margin-bottom: var(--space-1);
}

.trust-badge-text p {
  font-size: var(--font-size-sm);
  color: var(--color-silver);
  margin-bottom: 0;
}

.trust-image {
  position: relative;
}

.trust-image img {
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl);
}

/* ========================================
   11. FEATURES SECTION
   ======================================== */
.features-section {
  background: var(--color-white);
  padding: var(--space-24) 0;
}

.features-header {
  text-align: center;
  margin-bottom: var(--space-16);
}

.features-header h2 {
  font-size: var(--font-size-4xl);
  margin-bottom: var(--space-4);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

.feature-card {
  padding: var(--space-8);
  background: var(--color-frost);
  border-radius: var(--radius-2xl);
  text-align: center;
  transition: all var(--transition-base);
  border: 1px solid transparent;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(14, 165, 233, 0.2);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-6);
  background: var(--gradient-primary);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon svg,
.feature-icon img {
  width: 40px;
  height: 40px;
  filter: brightness(0) invert(1);
}

.feature-card h4 {
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-3);
}

.feature-card p {
  font-size: var(--font-size-base);
  color: var(--color-silver);
  margin-bottom: 0;
}

/* ========================================
   12. STATISTICS SECTION
   ======================================== */
.stats-section {
  background: var(--gradient-primary);
  padding: var(--space-16) 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
}

.stat-item {
  text-align: center;
  color: var(--color-white);
}

.stat-number {
  font-size: var(--font-size-5xl);
  font-weight: 700;
  display: block;
  margin-bottom: var(--space-2);
}

.stat-label {
  font-size: var(--font-size-base);
  opacity: 0.9;
}

/* ========================================
   13. FOOTER
   ======================================== */
.footer {
  background: var(--color-dark);
  padding: var(--space-16) 0 var(--space-8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-12);
  margin-bottom: var(--space-12);
}

.footer-brand h3 {
  font-size: var(--font-size-2xl);
  color: var(--color-white);
  margin-bottom: var(--space-4);
}

.footer-logo-img {
  height: 60px;
  width: auto;
  margin-bottom: var(--space-6);
}

.footer-brand p {
  color: var(--color-silver);
  margin-bottom: var(--space-6);
}

.footer-social {
  display: flex;
  gap: var(--space-3);
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
}

.footer-social a:hover {
  background: var(--color-primary);
  transform: translateY(-3px);
}

.footer-social a svg {
  width: 20px;
  height: 20px;
  color: var(--color-white);
}

.footer-column h5 {
  color: var(--color-white);
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-6);
}

.footer-links li {
  margin-bottom: var(--space-3);
}

.footer-links a {
  color: var(--color-silver);
  font-size: var(--font-size-base);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--color-primary);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
  color: var(--color-silver);
}

.footer-contact svg {
  width: 20px;
  height: 20px;
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  padding-top: var(--space-8);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright {
  color: var(--color-silver);
  font-size: var(--font-size-sm);
}

.footer-powered {
  font-size: var(--font-size-xs);
  color: var(--color-silver);
  opacity: 0.6;
}

/* ========================================
   14. SCROLL ANIMATIONS
   ======================================== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger Delays */
.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

.delay-4 {
  transition-delay: 0.4s;
}

.delay-5 {
  transition-delay: 0.5s;
}

.delay-6 {
  transition-delay: 0.6s;
}

.delay-7 {
  transition-delay: 0.7s;
}

/* Bottles for Change Section */
.bottles-for-change {
  background-color: #d1f3f9;
  padding: 80px 0;
  /* Match international spacing */
  overflow: hidden;
  text-align: center;
}

.bottles-header {
  margin-bottom: var(--space-12);
}

.section-top-title {
  font-family: var(--font-primary);
  font-size: 2.8rem;
  font-weight: 700;
  color: #036b52;
  margin-bottom: var(--space-2);
}

.section-top-subtitle {
  font-size: 1.1rem;
  color: #2c3e50;
  font-weight: 500;
}

.bottles-container {
  display: flex;
  max-width: 1440px;
  margin: 0 auto;
  align-items: center;
  gap: var(--space-4);
  /* Tight gap like reference */
}

.bottles-image-wrapper {
  flex: 1;
  padding-left: var(--space-12);
}

.bottles-ambassador-rounded {
  width: 100%;
  max-width: 550px;
  height: auto;
  border-radius: 40px;
  /* Highly rounded as requested */
  display: block;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.bottles-content {
  flex: 1.2;
  padding: var(--space-8) var(--space-12);
  text-align: left;
}

.bottles-logo {
  margin-bottom: var(--space-8);
}

.bottles-logo img {
  max-width: 280px;
  height: auto;
  margin-bottom: var(--space-8);
}

.bottles-mission {
  font-family: var(--font-primary);
  font-size: 1.3rem;
  line-height: 1.4;
  color: #036b52;
  margin-bottom: var(--space-12);
}

.bottles-mission strong {
  font-weight: 900;
  display: block;
  font-size: 2.22rem;
  margin: var(--space-2) 0;
}

.bottles-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-8) var(--space-12);
  margin-bottom: var(--space-16);
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1a252f;
  line-height: 1;
  margin-bottom: var(--space-1);
}

.stat-label {
  font-size: 0.85rem;
  color: #34495e;
  font-weight: 600;
}

.bottles-cta {
  display: flex;
  gap: var(--space-10);
}

.cta-link {
  font-weight: 700;
  color: #036b52;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: opacity 0.3s;
  font-size: 1.1rem;
}

.cta-link:hover {
  opacity: 0.8;
}

/* ========================================
   15. RESPONSIVE DESIGN
   ======================================== */

/* Tablet (768px) */
@media (max-width: 1024px) {
  h1 {
    font-size: var(--font-size-4xl);
  }

  h2 {
    font-size: var(--font-size-3xl);
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-12);
  }

  .hero-content {
    order: 1;
  }

  .hero-image {
    order: 0;
  }

  .hero-title {
    font-size: var(--font-size-4xl);
  }

  .hero-subtitle {
    margin: 0 auto var(--space-8);
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-bottle {
    max-height: 400px;
  }

  .purity-stages {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
  }

  .purity-stages::before {
    display: none;
  }

  .trust-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .trust-badges {
    justify-content: center;
  }

  .trust-image {
    display: none;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Bottles for Change Tablet */
  .bottles-container {
    flex-direction: column;
    padding: 0 var(--space-6);
  }

  .bottles-image,
  .bottles-content {
    max-width: 100%;
  }

  .bottles-mission {
    font-size: 1.25rem;
  }

  .bottles-mission strong {
    font-size: 1.75rem;
  }
}

/* Mobile (640px) */
@media (max-width: 640px) {
  :root {
    --font-size-5xl: 2.25rem;
    --font-size-4xl: 1.875rem;
    --font-size-3xl: 1.5rem;
  }

  .section {
    padding: var(--space-16) 0;
  }

  .navbar-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--color-white);
    flex-direction: column;
    padding: var(--space-6);
    gap: var(--space-4);
    box-shadow: var(--shadow-lg);
  }

  .navbar-menu.active {
    display: flex;
  }

  .navbar-toggle {
    display: flex;
  }

  .navbar-cta {
    margin-left: 0;
    width: 100%;
  }

  .hero {
    min-height: auto;
    padding: var(--space-24) 0 var(--space-16);
  }

  .hero-title {
    font-size: var(--font-size-3xl);
  }

  .hero-bottle {
    max-height: 300px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .purity-stages {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-8);
  }

  .purity-icon {
    width: 60px;
    height: 60px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-6);
  }

  .stat-number {
    font-size: var(--font-size-3xl);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-4);
    text-align: center;
  }
}

/* 4K Screens (2560px+) */
@media (min-width: 2560px) {
  :root {
    font-size: 20px;
  }

  .container {
    max-width: 1600px;
  }

  .hero-bottle {
    max-height: 800px;
  }
}

/* ========================================
   16. UTILITY CLASSES
   ======================================== */
.hidden {
  display: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-4 {
  margin-bottom: var(--space-4);
}

.mb-8 {
  margin-bottom: var(--space-8);
}

.mt-8 {
  margin-top: var(--space-8);
}

.pt-0 {
  padding-top: 0;
}

.pb-0 {
  padding-bottom: 0;
}

.w-full {
  width: 100%;
}

.max-w-lg {
  max-width: 32rem;
}

.rounded-full {
  border-radius: var(--radius-full);
}

.rounded-xl {
  border-radius: var(--radius-xl);
}

.overflow-hidden {
  overflow: hidden;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

/* ========================================
   17. SCROLL TO TOP BUTTON
   ======================================== */
.scroll-top {
  position: fixed;
  bottom: var(--space-8);
  right: var(--space-8);
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-lg);
  z-index: var(--z-sticky);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  transform: translateY(-3px);
}

.scroll-top svg {
  width: 24px;
  height: 24px;
  color: var(--color-white);
}

/* ========================================
   14. OUR BRANDS & SPREADING GOODNESS
   ======================================== */

.section-title {
  font-size: 2.5rem;
  color: #036b52;
  margin-bottom: var(--space-2);
}

.section-subtitle {
  color: #2c3e50;
  margin-bottom: var(--space-12);
}

/* Our Brands Section */
.brands-container {
  display: flex;
  gap: var(--space-8);
  align-items: flex-start;
}

.brands-tabs {
  width: 320px;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  pointer-events: none;
  /* No longer interactive as there's only one */
}

.brand-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--space-6);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition-base);
  border: 1px solid transparent;
  text-align: center;
}

.brand-tab:hover,
.brand-tab.active {
  box-shadow: var(--shadow-lg);
  border-color: #036b52;
}

.brand-tab img {
  max-width: 100px;
  margin-bottom: var(--space-4);
}

.brand-tab span {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-dark);
}

.brand-display-card {
  flex: 1;
  display: flex;
  background: var(--color-white);
  border-radius: 40px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.brand-card-image {
  flex: 1;
  background: #f0fdf4;
}

.brand-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-card-content {
  flex: 1;
  padding: var(--space-12);
}

.brand-card-content h3 {
  font-size: 3rem;
  color: #036b52;
  margin-bottom: var(--space-2);
}

.brand-card-content h4 {
  font-size: 1.5rem;
  color: #1e293b;
  margin-bottom: var(--space-6);
}

.learn-more-link,
.shop-link {
  color: #036b52;
  font-weight: 700;
  text-decoration: underline;
  display: inline-block;
  margin-top: var(--space-4);
}

.card-footer-promo {
  margin-top: var(--space-10);
  border-top: 1px solid #e2e8f0;
  padding-top: var(--space-6);
}

/* Spreading Goodness Section */
.spreading-goodness {
  background: linear-gradient(180deg, #ffffff 0%, #d1f3f9 100%);
  padding: var(--space-24) 0;
}

.goodness-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  margin-bottom: var(--space-16);
}

.goodness-item.box-style {
  background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
  border: 1px solid rgba(14, 165, 233, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: var(--space-8);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  border-radius: 24px;
  height: 220px;
  box-shadow: 0 10px 30px rgba(14, 165, 233, 0.05);
}

.goodness-item.box-style:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(14, 165, 233, 0.12);
}

.goodness-item.box-style .goodness-info {
  text-align: center;
}

.goodness-item.box-style .goodness-number {
  font-size: 4.5rem;
  display: block;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
  font-weight: 900;
  line-height: 1;
}

.goodness-item.box-style .goodness-label {
  font-size: 1rem;
  color: #036b52;
  letter-spacing: 2.5px;
  font-weight: 800;
  text-transform: uppercase;
}

.goodness-info {
  position: absolute;
  bottom: var(--space-8);
  left: var(--space-8);
  color: var(--color-white);
}

.goodness-number {
  display: block;
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
}

.goodness-label {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.goodness-narrative {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.goodness-narrative p {
  font-size: 1.1rem;
  color: #2c3e50;
  line-height: 1.8;
  margin-bottom: var(--space-8);
}

.goodness-links {
  display: flex;
  justify-content: center;
  gap: var(--space-10);
}

.goodness-links a {
  color: #036b52;
  font-weight: 700;
  text-decoration: underline;
}

/* Global Spacing Polish */
.section {
  padding: 80px 0;
  /* International breathing room */
}

/* Responsive Polish */
@media (max-width: 1024px) {
  .brands-container {
    flex-direction: column;
  }

  .brands-tabs {
    width: 100%;
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: var(--space-4);
  }

  .brand-tab {
    min-width: 200px;
  }

  .brand-display-card {
    flex-direction: column;
  }

  .goodness-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   20. LOGIN MODAL
   ======================================== */
.login-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.login-modal.active {
  opacity: 1;
  visibility: visible;
}

.login-modal-content {
  background: var(--color-white);
  width: 100%;
  max-width: 400px;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  transform: translateY(20px);
  transition: all var(--transition-base);
}

.login-modal.active .login-modal-content {
  transform: translateY(0);
}

.login-modal-header {
  background: var(--gradient-primary);
  padding: var(--space-8) var(--space-6);
  text-align: center;
  position: relative;
  color: var(--color-white);
  height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-image: url('../images/water-texture-overlay.png'), var(--gradient-primary);
  /* Fallback to gradient if image missing */
  background-size: cover;
  background-blend-mode: overlay;
}

.close-modal {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  background: rgba(0, 0, 0, 0.1);
  border: none;
  color: var(--color-white);
  font-size: 1.25rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  backdrop-filter: blur(4px);
}

.close-modal:hover {
  background: rgba(0, 0, 0, 0.2);
}

.modal-logo {
  height: 80px;
  width: auto;
  margin-bottom: var(--space-2);
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.modal-tagline {
  font-size: var(--font-size-lg);
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  letter-spacing: 0.5px;
}

.login-modal-body {
  padding: var(--space-8) var(--space-8);
  text-align: center;
}

.login-modal-body h3 {
  font-family: 'Playfair Display', serif;
  /* Or their serif font */
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: var(--space-8);
  font-style: italic;
}

.phone-input-group {
  display: flex;
  align-items: center;
  border: 1px solid var(--color-silver-light);
  border-radius: var(--radius-lg);
  padding: var(--space-1);
  margin-bottom: var(--space-6);
  transition: border-color var(--transition-fast);
}

.phone-input-group:focus-within {
  border-color: var(--color-primary);
}

.country-flag {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-3);
  border-right: 1px solid var(--color-silver-light);
  font-weight: 600;
  color: var(--color-dark-soft);
}

.phone-input-group input {
  flex: 1;
  border: none;
  padding: var(--space-3);
  font-size: var(--font-size-base);
  font-family: var(--font-primary);
  outline: none;
}

.login-modal-body .btn-continue {
  width: 100%;
  background: var(--color-primary);
  color: var(--color-white);
  border: none;
  padding: var(--space-4);
  border-radius: var(--radius-lg);
  font-size: var(--font-size-base);
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 14px rgba(14, 165, 233, 0.3);
  margin-bottom: var(--space-6);
}

.login-modal-body .btn-continue:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(14, 165, 233, 0.4);
}

.login-footer-info p {
  font-size: var(--font-size-xs);
  color: var(--color-silver);
  line-height: 1.5;
}

.login-footer-info a {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
}

.login-footer-info a:hover {
  text-decoration: underline;
}

/* ========================================
   21. CART SIDEBAR
   ======================================== */
.cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(4px);
  z-index: 450;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.cart-overlay.active {
  opacity: 1;
  visibility: visible;
}

.cart-sidebar {
  position: fixed;
  top: 0;
  right: -450px;
  width: 100%;
  max-width: 450px;
  height: 100%;
  background: var(--color-white);
  z-index: 500;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

.cart-sidebar.active {
  right: 0;
}

.cart-sidebar-header {
  padding: var(--space-6);
  border-bottom: 1px solid var(--color-silver-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-sidebar-header h3 {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--color-dark);
}

.close-cart {
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--color-silver);
  cursor: pointer;
  line-height: 1;
}

.cart-sidebar-body {
  flex: 1;
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
}

.cart-progress {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-10);
  padding: 0 var(--space-4);
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-1);
}

.step-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-frost);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  border: 2px solid transparent;
  transition: all var(--transition-base);
}

.progress-step.active .step-icon {
  background: var(--color-white);
  border-color: var(--color-primary);
  box-shadow: 0 0 10px rgba(14, 165, 233, 0.2);
}

.progress-step span {
  font-size: 10px;
  font-weight: 600;
  color: var(--color-silver);
  text-transform: uppercase;
}

.progress-step.active span {
  color: var(--color-primary);
}

.progress-line {
  flex: 1;
  height: 2px;
  background: var(--color-frost);
  margin: 0 var(--space-2);
  margin-bottom: 20px;
}

.empty-cart-view {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.empty-cart-illustration {
  margin-bottom: var(--space-6);
  animation: float 3s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.empty-cart-view h4 {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: var(--space-2);
}

.empty-cart-view p {
  color: var(--color-silver);
  margin-bottom: var(--space-1);
}

.empty-cart-view p.small {
  font-size: var(--font-size-sm);
  margin-bottom: var(--space-8);
}

.empty-cart-view .btn-primary {
  width: 100%;
  max-width: 200px;
}