/* ==========================================================================
   THE SMOOTHEAZE CO. - PREMIUM STYLESHEET
   Design System: Organic, Modern, Vibrant HSL-based colors & micro-interactions
   ========================================================================== */

/* Design Tokens & Theme Variables */
:root {
  /* Color Palette */
  --bg-primary: hsl(45, 30%, 98%);     /* Organic warm cream */
  --bg-secondary: hsl(45, 20%, 94%);   /* Sand off-white */
  --bg-card: hsl(0, 0%, 100%);
  --bg-dark: hsl(155, 45%, 8%);        /* Forest obsidian */
  --bg-glass: hsla(0, 0%, 100%, 0.8);
  
  --text-primary: hsl(155, 45%, 10%);  /* Dark forest charcoal */
  --text-secondary: hsl(155, 15%, 38%);/* Muted olive gray */
  --text-light: hsl(0, 0%, 95%);
  
  --color-green: hsl(145, 55%, 35%);   /* Spinach / Celery Green */
  --color-green-light: hsl(145, 45%, 93%);
  --color-orange: hsl(25, 95%, 52%);   /* Orange / Carrot Citrus */
  --color-orange-light: hsl(25, 95%, 94%);
  --color-red: hsl(355, 80%, 55%);     /* Strawberry / Watermelon Coral */
  --color-red-light: hsl(355, 80%, 95%);
  --color-yellow: hsl(42, 95%, 50%);   /* Pineapple Glow */
  --color-yellow-light: hsl(42, 95%, 93%);
  --color-purple: hsl(325, 65%, 35%);  /* Beetroot / Guava Magenta */
  --color-purple-light: hsl(325, 60%, 93%);

  /* Border & Shadows */
  --border-color: hsl(155, 15%, 88%);
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  --border-radius-full: 9999px;
  
  --shadow-sm: 0 4px 12px hsla(155, 45%, 10%, 0.04);
  --shadow-md: 0 12px 32px hsla(155, 45%, 10%, 0.08);
  --shadow-lg: 0 24px 48px hsla(155, 45%, 10%, 0.12);
  
  /* Typography */
  --font-headings: 'League Spartan', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  
  /* Animations */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
}

/* Base 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-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-primary);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

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

.text-center {
  text-align: center;
}

/* Announcement Bar */
.announcement-bar {
  background-color: var(--bg-dark);
  color: var(--bg-primary);
  padding: 10px 24px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  text-align: center;
  position: relative;
  z-index: 1010;
  letter-spacing: 0.5px;
  overflow: hidden;
}

.announcement-bar span {
  display: inline-block;
  animation: pulse-text 4s infinite ease-in-out;
}

@keyframes pulse-text {
  0%, 100% { opacity: 0.9; }
  50% { opacity: 1; transform: scale(1.02); }
}

/* Header & Navigation */
.main-header {
  background-color: var(--bg-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-smooth);
}

.main-header.scrolled {
  box-shadow: var(--shadow-sm);
  background-color: hsla(45, 30%, 98%, 0.95);
  padding: 6px 0;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 24px;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-logo {
  height: 52px;
  width: auto;
  object-fit: contain;
  border-radius: var(--border-radius-full);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.logo-wrapper:hover .header-logo {
  transform: rotate(8deg) scale(1.08);
}

.logo-text {
  font-family: var(--font-headings);
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--text-primary);
}

.nav-menu ul {
  display: flex;
  gap: 32px;
}

.nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-secondary);
  position: relative;
  padding: 8px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-green);
  transition: var(--transition-fast);
}

.nav-link:hover {
  color: var(--text-primary);
}

.nav-link:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cart-toggle-btn {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-full);
  width: 46px;
  height: 46px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.cart-toggle-btn:hover {
  transform: scale(1.08);
  border-color: var(--color-green);
  color: var(--color-green);
  box-shadow: var(--shadow-md);
}

.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background-color: var(--color-green);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid white;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  width: 30px;
  padding: 4px;
}

.mobile-menu-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text-primary);
  transition: var(--transition-fast);
}

/* Hero Section */
.hero-section {
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
  background-color: var(--bg-primary);
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  right: 0;
  width: 45%;
  height: 100%;
  background: radial-gradient(circle at 60% 50%, var(--color-green-light) 0%, transparent 70%);
  z-index: 1;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 48px;
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 580px;
}

.hero-tagline {
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-green);
  margin-bottom: 16px;
}

.hero-title {
  font-size: 4rem;
  font-weight: 900;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
  color: var(--text-primary);
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 500px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: var(--border-radius-full);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: 2px solid transparent;
}

.btn-primary {
  background-color: var(--color-green);
  color: white;
  box-shadow: 0 8px 24px hsla(145, 55%, 35%, 0.25);
}

.btn-primary:hover {
  background-color: hsl(145, 55%, 28%);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px hsla(145, 55%, 35%, 0.35);
}

.btn-secondary {
  background-color: white;
  color: var(--text-primary);
  border-color: var(--border-color);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background-color: var(--bg-secondary);
  border-color: var(--text-primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-block {
  display: flex;
  width: 100%;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.85rem;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-image-card {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 1;
  max-width: 480px;
  border: 8px solid white;
  background-color: white;
  transition: var(--transition-smooth);
}

.hero-image-card:hover {
  transform: translateY(-5px) rotate(1deg);
  box-shadow: 0 32px 64px hsla(155, 45%, 10%, 0.16);
}

.hero-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.glass-tag {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 16px 20px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
}

.tag-title {
  display: block;
  font-family: var(--font-headings);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-primary);
}

.tag-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Sections Core Layout */
section {
  padding: 100px 0;
}

.section-header {
  max-width: 680px;
  margin: 0 auto 60px;
}

.sub-title {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-green);
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.section-title {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--text-primary);
}

.section-intro {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-top: 16px;
}

.header-divider {
  width: 60px;
  height: 4px;
  background-color: var(--color-green);
  margin: 20px auto 0;
  border-radius: var(--border-radius-full);
}

/* USPs Section */
.usps-section {
  background-color: var(--bg-secondary);
}

.usps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.usp-card {
  background: white;
  padding: 48px 32px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition-smooth);
  border: 1px solid transparent;
}

.usp-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-green-light);
}

.usp-icon-wrapper {
  width: 72px;
  height: 72px;
  background-color: var(--color-green-light);
  color: var(--color-green);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 24px;
  transition: var(--transition-smooth);
}

.usp-card:hover .usp-icon-wrapper {
  background-color: var(--color-green);
  color: white;
  transform: rotateY(180deg);
}

.usp-card h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.usp-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.usp-footnote {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-style: italic;
}

/* Signature Menu Section & Filters */
.menu-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}

.filter-btn {
  background: white;
  border: 1px solid var(--border-color);
  padding: 10px 22px;
  border-radius: var(--border-radius-full);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-secondary);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.filter-btn:hover, .filter-btn.active {
  background-color: var(--text-primary);
  border-color: var(--text-primary);
  color: white;
}

.smoothies-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  min-height: 400px;
}

/* Smoothie Cards */
.smoothie-card {
  background: var(--bg-card);
  border-radius: var(--border-radius-md);
  border: 1px solid var(--border-color);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition-smooth);
}

.smoothie-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--theme-border);
}

.smoothie-image-container {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background-color: var(--bg-secondary);
  border-bottom: 1px solid var(--border-color);
}

.smoothie-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.smoothie-card:hover .smoothie-card-img {
  transform: scale(1.06);
}

.smoothie-image-container .ingredients-badges {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: flex-start;
  z-index: 2;
}

.smoothie-image-container .badge {
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 4px 10px;
  border-radius: var(--border-radius-full);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-primary);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.smoothie-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.smoothie-card-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.smoothie-card-title-row h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 0;
}

.smoothie-emoji-badge {
  font-size: 1.3rem;
  background-color: var(--theme-bg-light);
  border: 1px solid var(--theme-border);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.smoothie-ingredients-text {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--theme-color);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.smoothie-description {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 24px;
}

.smoothie-card-footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--border-color);
}

.smoothie-price {
  font-family: var(--font-headings);
  font-size: 1.6rem;
  font-weight: 800;
}

.smoothie-price span {
  font-size: 1.1rem;
  font-weight: 600;
}

.add-to-cart-btn {
  background: white;
  border: 1px solid var(--theme-color);
  color: var(--theme-color);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.add-to-cart-btn svg {
  width: 20 height: 20;
}

.add-to-cart-btn:hover {
  background-color: var(--theme-color);
  color: white;
  transform: scale(1.08);
}

/* Wellness Packs Section */
.packs-section {
  background-color: var(--bg-secondary);
}

.packs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
}

.pack-card {
  background: white;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.pack-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.pack-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: var(--color-orange);
  color: white;
  padding: 6px 14px;
  border-radius: var(--border-radius-full);
  font-size: 0.8rem;
  font-weight: 800;
  z-index: 5;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.pack-badge.secondary {
  background-color: var(--color-green);
}

.pack-image-wrapper {
  height: 260px;
  overflow: hidden;
  position: relative;
}

.pack-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.pack-card:hover .pack-img {
  transform: scale(1.05);
}

.pack-info {
  padding: 36px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.pack-meta {
  margin-bottom: 12px;
}

.pack-size {
  background-color: var(--bg-secondary);
  color: var(--text-secondary);
  padding: 4px 12px;
  border-radius: var(--border-radius-full);
  font-size: 0.8rem;
  font-weight: 700;
}

.pack-info h3 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.pack-description {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.pack-includes {
  background-color: var(--bg-primary);
  padding: 20px;
  border-radius: var(--border-radius-md);
  margin-bottom: 32px;
  border: 1px solid var(--border-color);
}

.pack-includes strong {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  color: var(--text-secondary);
}

.pack-includes ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.pack-includes ul li {
  font-weight: 600;
  font-size: 0.9rem;
}

.pack-includes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 16px;
  font-weight: 600;
  font-size: 0.9rem;
}

.pack-footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.pack-price {
  font-family: var(--font-headings);
  font-size: 2.2rem;
  font-weight: 800;
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.price-symbol {
  font-size: 1.2rem;
  font-weight: 600;
}

.price-savings {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--color-green);
  font-weight: 700;
  margin-top: 4px;
}

/* Story / Instagram Feed Section */
.story-section {
  background-color: var(--bg-primary);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.story-content h2 {
  font-size: 2.8rem;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.story-content p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: white;
  border: 1px solid var(--border-color);
  padding: 12px 24px;
  border-radius: var(--border-radius-full);
  font-weight: 700;
  box-shadow: var(--shadow-sm);
  color: var(--text-primary);
}

.instagram-link:hover {
  border-color: var(--text-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Phone Mockup Styling */
.phone-mockup {
  background-color: #111;
  border-radius: 40px;
  border: 12px solid #222;
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.phone-header {
  height: 28px;
  background-color: #222;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.speaker {
  width: 50px;
  height: 4px;
  background-color: #444;
  border-radius: var(--border-radius-full);
}

.camera {
  width: 8px;
  height: 8px;
  background-color: #444;
  border-radius: 50%;
}

.phone-screen {
  background-color: white;
  height: 520px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

/* Instagram Header */
.insta-profile-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border-bottom: 1px solid #f0f0f0;
}

.profile-pic {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--color-green);
  padding: 2px;
}

.profile-meta {
  display: flex;
  flex-direction: column;
}

.profile-username {
  font-weight: 700;
  font-size: 0.95rem;
}

.profile-counts {
  display: flex;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-top: 4px;
}

/* Instagram Feed Grid */
.insta-feed-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding: 16px;
}

.feed-item {
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid #eee;
}

.feed-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Contact & Info Section */
.contact-section {
  background-color: var(--bg-secondary);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
}

.contact-info-card {
  background: white;
  padding: 48px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

.contact-info-card h3 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.contact-lead {
  color: var(--text-secondary);
  margin-bottom: 36px;
  font-size: 1.05rem;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.info-icon {
  width: 48px;
  height: 48px;
  background-color: var(--color-green-light);
  color: var(--color-green);
  border-radius: var(--border-radius-md);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.info-item strong {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.info-item p {
  font-weight: 700;
  font-size: 1.1rem;
}

.info-item a:hover {
  color: var(--color-green);
}

/* Contact Form Card */
.contact-form-card {
  background: white;
  padding: 48px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  height: fit-content;
}

.contact-form-card h3 {
  font-size: 2rem;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-weight: 500;
  transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-green);
  background-color: white;
  box-shadow: 0 0 0 4px var(--color-green-light);
}

.form-row {
  display: flex;
  gap: 16px;
}

.half-width {
  flex: 1;
}

/* Footer Section */
.main-footer {
  background-color: var(--bg-dark);
  color: var(--bg-primary);
  padding: 80px 0 48px;
}

.footer-logo {
  height: 72px;
  margin: 0 auto 20px;
  border-radius: 50%;
  border: 3px solid white;
}

.footer-brand-title {
  color: white;
  font-size: 2.2rem;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

.footer-tagline {
  color: var(--color-green-light);
  font-weight: 600;
  font-size: 0.95rem;
}

.footer-divider {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
  margin: 40px 0;
}

.copyright {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Shopping Cart Drawer */
.cart-sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.cart-sidebar-overlay.active {
  opacity: 1;
  visibility: visible;
}

.cart-sidebar {
  position: fixed;
  top: 0;
  right: -420px;
  width: 100%;
  max-width: 420px;
  height: 100%;
  background-color: white;
  box-shadow: var(--shadow-lg);
  z-index: 1060;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.cart-sidebar.active {
  right: 0;
}

.cart-header {
  padding: 24px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-header h2 {
  font-size: 1.5rem;
}

.cart-close-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-secondary);
  transition: var(--transition-fast);
}

.cart-close-btn:hover {
  color: var(--text-primary);
  transform: rotate(90deg);
}

.cart-body {
  flex-grow: 1;
  overflow-y: auto;
  padding: 24px;
}

/* Empty Cart View */
.empty-cart-message {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--text-secondary);
  padding: 40px 0;
}

.empty-cart-message svg {
  margin-bottom: 16px;
  color: var(--border-color);
}

.empty-cart-message p {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.empty-cart-message .empty-sub {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

/* Cart Items */
.cart-items-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background-color: var(--bg-primary);
  padding: 16px;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--border-color);
  position: relative;
}

.cart-item-avatar {
  font-size: 2.2rem;
  background-color: var(--bg-card);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: var(--shadow-sm);
}

.cart-item-info {
  flex-grow: 1;
}

.cart-item-info h4 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.cart-item-price {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-secondary);
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.quantity-btn {
  background: white;
  border: 1px solid var(--border-color);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-weight: 700;
  transition: var(--transition-fast);
}

.quantity-btn:hover {
  border-color: var(--text-primary);
  background-color: var(--bg-secondary);
}

.cart-item-quantity {
  font-weight: 700;
  font-size: 0.95rem;
  min-width: 16px;
  text-align: center;
}

.cart-item-remove {
  background: none;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 4px;
  position: absolute;
  top: 10px;
  right: 10px;
  opacity: 0;
  transition: var(--transition-fast);
}

.cart-item:hover .cart-item-remove {
  opacity: 1;
}

.cart-item-remove:hover {
  color: var(--color-red);
}

/* Cart Footer */
.cart-footer {
  padding: 24px;
  border-top: 1px solid var(--border-color);
  background-color: var(--bg-primary);
}

.cart-summary {
  margin-bottom: 20px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.summary-value {
  color: var(--text-primary);
  font-family: var(--font-headings);
  font-size: 1.4rem;
  font-weight: 800;
}

.delivery-row {
  font-size: 0.85rem;
}

.free-badge {
  color: var(--color-green);
  font-weight: 800;
}

/* Modal Overlay & Modal Window */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(6px);
  z-index: 1100;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  padding: 24px;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  background: white;
  width: 100%;
  max-width: 580px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 40px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(30px);
  transition: var(--transition-smooth);
}

.modal-overlay.active .modal-container {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-secondary);
  transition: var(--transition-fast);
}

.modal-close:hover {
  color: var(--text-primary);
  transform: rotate(90deg);
}

.modal-header {
  margin-bottom: 28px;
}

.modal-header h2 {
  font-size: 2.2rem;
  margin-bottom: 8px;
}

.modal-header p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.order-summary-box {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 20px;
  margin: 24px 0;
}

.order-summary-box h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-secondary);
  margin-bottom: 12px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 8px;
}

.order-summary-box ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}

.order-summary-box ul li {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  font-weight: 600;
}

.order-summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  border-top: 1px solid var(--border-color);
  padding-top: 10px;
}

.order-summary-total strong {
  font-family: var(--font-headings);
  font-size: 1.4rem;
  color: var(--color-green);
}

.whatsapp-btn-icon {
  margin-right: 8px;
}

.checkout-submit-btn {
  background-color: #25D366; /* Official WhatsApp Color */
  color: white;
  border: none;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.25);
}

.checkout-submit-btn:hover {
  background-color: #128C7E;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.35);
}

/* Responsive Styling */
@media (max-width: 1024px) {
  .smoothies-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  /* Layout Padding adjustments */
  section {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 2.4rem;
  }

  /* Header adjustments */
  .header-container {
    padding: 10px 16px;
  }
  
  .header-logo {
    height: 40px;
  }
  
  .logo-text {
    font-size: 1.4rem;
  }

  /* Hero Section Mobile */
  .hero-section {
    padding: 40px 0 60px;
  }
  
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
  }

  .hero-content {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-title {
    font-size: 2.8rem;
    line-height: 1.1;
    letter-spacing: -1px;
  }
  
  .hero-description {
    font-size: 1rem;
    margin-bottom: 24px;
  }

  .hero-bg-overlay {
    width: 100%;
    height: 60%;
    bottom: 0;
    top: auto;
    background: radial-gradient(circle at 50% 60%, var(--color-green-light) 0%, transparent 80%);
  }
  
  .hero-image-card {
    max-width: 360px;
    border-width: 4px;
  }
  
  .glass-tag {
    bottom: 12px;
    left: 12px;
    right: 12px;
    padding: 10px 14px;
  }
  
  .tag-title {
    font-size: 1.05rem;
  }

  /* USPs Mobile Grid */
  .usps-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .usp-card {
    padding: 32px 24px;
  }

  /* Smoothie Grid - 2 columns on mobile! */
  .smoothies-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .smoothie-card-body {
    padding: 14px;
  }
  
  .smoothie-card-title-row h3 {
    font-size: 1.15rem;
    font-weight: 800;
  }
  
  .smoothie-emoji-badge {
    width: 28px;
    height: 28px;
    font-size: 1rem;
  }
  
  .smoothie-ingredients-text {
    font-size: 0.7rem;
    margin-bottom: 8px;
  }
  
  .smoothie-description {
    font-size: 0.8rem;
    line-height: 1.4;
    margin-bottom: 16px;
  }
  
  .smoothie-price {
    font-size: 1.3rem;
  }
  
  .add-to-cart-btn {
    width: 36px;
    height: 36px;
  }
  
  .add-to-cart-btn svg {
    width: 16px;
    height: 16px;
  }

  /* Wellness Packs Mobile */
  .packs-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .pack-info {
    padding: 24px;
  }
  
  .pack-info h3 {
    font-size: 1.6rem;
  }

  /* Story and Social Mobile */
  .story-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .story-content h2 {
    font-size: 2.2rem;
  }
  
  .story-gallery {
    display: flex;
    justify-content: center;
  }
  
  .phone-mockup {
    max-width: 320px;
  }

  /* Contact and Forms Mobile */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .contact-info-card, .contact-form-card {
    padding: 24px;
  }
  
  .contact-info-card h3, .contact-form-card h3 {
    font-size: 1.6rem;
  }
  
  .form-row {
    flex-direction: column;
    gap: 0;
  }

  /* Mobile Slide-Out Side Navigation Drawer */
  .mobile-menu-btn {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background-color: hsla(45, 30%, 98%, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: var(--shadow-lg);
    z-index: 1050;
    transition: var(--transition-smooth);
    padding: 80px 24px 40px;
    border-right: 1px solid var(--border-color);
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .nav-link {
    font-size: 1.35rem;
    font-weight: 700;
  }
  
  /* Hamburger button transitions */
  .mobile-menu-btn {
    z-index: 1060;
  }
  
  .mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
    background-color: var(--text-primary);
  }
  .mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -7px);
    background-color: var(--text-primary);
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 2rem;
  }
  
  .hero-title {
    font-size: 2.3rem;
  }
  
  .smoothies-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .smoothie-image-container .badge {
    display: none; /* Hide ingredients badges inside image container on tiny screens to avoid overlay clutter */
  }
  
  .smoothie-card-body {
    padding: 10px;
  }
  
  .smoothie-card-title-row h3 {
    font-size: 1rem;
  }
  
  .smoothie-emoji-badge {
    width: 24px;
    height: 24px;
    font-size: 0.85rem;
  }
  
  .smoothie-ingredients-text {
    font-size: 0.65rem;
    margin-bottom: 4px;
  }
  
  .smoothie-description {
    font-size: 0.75rem;
    line-height: 1.35;
    margin-bottom: 10px;
  }
  
  .smoothie-price {
    font-size: 1.15rem;
  }
  
  .add-to-cart-btn {
    width: 32px;
    height: 32px;
  }
  
  .pack-includes ul, .pack-includes-grid {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  
  .pack-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  
  .pack-footer button {
    width: 100%;
  }

  .modal-container {
    padding: 24px 16px;
    width: 95%;
  }
  
  .modal-header h2 {
    font-size: 1.8rem;
  }
  
  .cart-sidebar {
    max-width: 100%;
  }
}
