/* ==========================================================================
   Design System & Styling Tokens
   ========================================================================== */

/* Load fonts from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Honey+Drops&family=Lilita+One&display=swap');

/* Declare Geist Font Face locally */
@font-face {
  font-family: 'Geist';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('assets/fonts.gstatic.com/s/geist/v5/gyByhwUxId8gMEwwcGFU.woff2') format('woff2');
}
@font-face {
  font-family: 'Geist';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('assets/fonts.gstatic.com/s/geist/v5/gyByhwUxId8gMEwSGFWfOw.woff2') format('woff2');
}
@font-face {
  font-family: 'Geist';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('assets/fonts.gstatic.com/s/geist/v5/gyByhwUxId8gMEwRGFWfOw.woff2') format('woff2');
}

:root {
  --bg-cream: #fdf7e7;
  --bg-white: #ffffff;
  --primary-green: #9dd162;      /* Bright refreshing green */
  --secondary-green: #17601c;    /* Rich green for primary buttons */
  --forest-green: #2c4b08;       /* Deep green for text, footer */
  --accent-yellow: #FCBE0F;      /* Yellow-orange for badges/blob */
  --shadow-light: 0 10px 30px rgba(23, 96, 28, 0.06);
  --shadow-hover: 0 20px 45px rgba(23, 96, 28, 0.12);
  --transition-smooth: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-fast: all 0.2s cubic-bezier(0.25, 1, 0.5, 1);
}

/* ==========================================================================
   Global Resets & Typographical Foundation
   ========================================================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Geist', sans-serif;
  background-color: var(--bg-cream);
  color: var(--forest-green);
  overflow-x: hidden;
  line-height: 1.5;
}

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

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
  outline: none;
}

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

/* ==========================================================================
   Header Navigation
   ========================================================================== */
header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 24px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 48px;
  width: auto;
  transition: var(--transition-smooth);
}

.logo img:hover {
  transform: scale(1.05);
}

.nav-links {
  background-color: var(--bg-white);
  border-radius: 100px;
  padding: 8px 12px;
  display: flex;
  gap: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.nav-links a {
  font-size: 12px;
  font-weight: 600;
  color: #2c2c2c;
  padding: 6px 12px;
  border-radius: 20px;
}

.nav-links a:hover {
  color: var(--secondary-green);
}

.nav-actions {
  background-color: #f3f3f3;
  border-radius: 100px;
  padding: 4px 6px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.action-btn {
  background-color: var(--bg-white);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000;
  position: relative;
  transition: var(--transition-smooth);
}

.action-btn:hover {
  transform: scale(1.1);
  background-color: #f0f0f0;
}

.action-btn.cart-btn {
  background-color: var(--secondary-green);
  color: var(--bg-white);
}

.action-btn.cart-btn:hover {
  background-color: #1a6f21;
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  background-color: var(--accent-yellow);
  color: var(--forest-green);
  font-family: 'Lilita One', sans-serif;
  font-size: 11px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.15);
}

.action-btn svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
#hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  background-color: var(--primary-green);
  border-bottom-right-radius: min(500px, 35vw);
  overflow: hidden;
  z-index: 1;
}

.hero-left-side {
  width: 50%;
  padding: 140px 6% 60px 8%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
  background-color: var(--primary-green);
}

/* Background ornament in hero left side */
.hero-leaf-ornament {
  position: absolute;
  top: 60px;
  left: -60px;
  width: 180px;
  opacity: 0.85;
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 500px;
}

.hero-pill {
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 27px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 500;
  color: var(--secondary-green);
  width: fit-content;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.hero-title {
  font-family: 'Honey Drops', sans-serif;
  font-size: clamp(3.2rem, 5.5vw, 5rem);
  line-height: 1.05;
  color: var(--bg-white);
  margin-bottom: 24px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.hero-description {
  font-size: 15px;
  font-weight: 500;
  color: var(--bg-white);
  margin-bottom: 36px;
  max-width: 440px;
  opacity: 0.95;
  line-height: 1.6;
}

.cta-btn {
  display: inline-flex;
  background-color: var(--secondary-green);
  color: var(--bg-white);
  padding: 14px 32px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 100px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  transition: var(--transition-smooth);
  margin-bottom: 36px;
  letter-spacing: 0.5px;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(23, 96, 28, 0.3);
  background-color: #124d16;
}

.hero-features {
  display: flex;
  gap: 12px;
}

.feature-tag {
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 27px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 500;
  color: var(--secondary-green);
}

/* Hero Right Side Wrapper */
.hero-right-side {
  width: 50%;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.hero-right-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Yellow flower overlay at bottom right of green box */
.hero-flower-overlay {
  position: absolute;
  bottom: -60px;
  right: -90px;
  width: 260px;
  z-index: 3;
  pointer-events: none;
  transform: rotate(15deg);
}

/* ==========================================================================
   Signature Bowls Section
   ========================================================================== */
#signature-bowls {
  padding: 100px 5%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
  max-width: 600px;
}

.section-title {
  font-family: 'Honey Drops', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.1;
  color: var(--secondary-green);
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 15px;
  font-weight: 500;
  color: #5c704c;
}

/* Tabs Container */
.tabs-container {
  display: inline-flex;
  background-color: var(--bg-white);
  border: 1px solid rgba(23, 96, 28, 0.08);
  border-radius: 100px;
  padding: 6px;
  margin-bottom: 50px;
  position: relative;
  box-shadow: var(--shadow-light);
}

.tab-btn {
  padding: 10px 24px;
  font-size: 13px;
  font-weight: 600;
  color: var(--secondary-green);
  border-radius: 100px;
  transition: var(--transition-fast);
  position: relative;
}

.tab-btn.active {
  background-color: var(--secondary-green);
  color: var(--bg-white);
  box-shadow: 0 4px 10px rgba(23, 96, 28, 0.15);
}

/* Badge for Monthly Habit */
.badge-best-value {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: auto;
  pointer-events: none;
  z-index: 10;
}

/* Product Cards Grid */
.cards-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.product-card {
  background-color: var(--bg-white);
  border-radius: 24px;
  padding: 16px;
  box-shadow: var(--shadow-light);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  position: relative;
}

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

.card-img-wrapper {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 1.15;
  margin-bottom: 20px;
}

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

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

.badge-seasonal {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 90px;
  z-index: 5;
}

/* Nutrition specs row */
.card-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.spec-pill {
  background-color: rgba(157, 209, 98, 0.18);
  border-radius: 100px;
  padding: 4px 10px;
  font-size: 10px;
  font-weight: 600;
  color: var(--secondary-green);
  display: flex;
  align-items: center;
  gap: 4px;
}

.card-title {
  font-family: 'Honey Drops', sans-serif;
  font-size: 26px;
  color: var(--forest-green);
  margin-bottom: 8px;
  line-height: 1.2;
}

.card-description {
  font-size: 13px;
  font-weight: 500;
  color: #5c704c;
  line-height: 1.5;
  margin-bottom: 24px;
  flex-grow: 1;
}

/* Card Footer with Price and Button */
.card-footer {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: stretch;
  padding-top: 16px;
  border-top: 1px solid rgba(23, 96, 28, 0.05);
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 12px;
}

.price-container {
  display: inline-flex;
  position: relative;
  height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  min-width: 130px;
}

.price-blob {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.price-text-wrapper {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: baseline;
  gap: 4px;
  color: var(--forest-green);
  font-family: 'Lilita One', sans-serif;
  font-size: 24px;
  white-space: nowrap;
}

.price-amount {
  font-weight: normal;
}

.price-period {
  font-family: 'Lilita One', sans-serif;
  font-size: 12px;
  color: var(--forest-green);
}

/* Daily rate and duration styling */
.daily-rate-container {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.daily-rate-pill {
  background-color: var(--accent-yellow);
  color: var(--forest-green);
  font-family: 'Lilita One', sans-serif;
  font-size: 14px;
  padding: 4px 12px;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.duration-label {
  font-size: 11px;
  font-weight: 600;
  color: #7a8e6b;
  white-space: nowrap;
}

.add-cart-btn {
  width: 100%;
  background-color: var(--secondary-green);
  color: var(--bg-white);
  font-size: 13px;
  font-weight: 800;
  padding: 14px 20px;
  border-radius: 100px;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(23, 96, 28, 0.15);
  transition: var(--transition-smooth);
  text-align: center;
}

.add-cart-btn:hover {
  transform: translateY(-2px);
  background-color: #124d16;
  box-shadow: 0 6px 18px rgba(23, 96, 28, 0.25);
}

.add-cart-btn:active {
  transform: translateY(0) scale(0.97);
}

/* ==========================================================================
   Daily Dose Section (Section 3)
   ========================================================================== */
#daily-dose {
  background-color: var(--primary-green);
  width: 100%;
  padding: 100px 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.daily-dose-inner {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.daily-dose-header {
  text-align: center;
  max-width: 700px;
  margin-bottom: 60px;
}

.daily-dose-logo {
  height: 48px;
  width: auto;
  margin: 0 auto 24px;
}

.daily-dose-title {
  font-family: 'Honey Drops', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.1;
  color: var(--bg-white);
  margin-bottom: 16px;
}

.daily-dose-subtitle {
  font-size: 15px;
  font-weight: 500;
  color: var(--bg-white);
  opacity: 0.95;
}

/* Columns Grid */
.dose-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.dose-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.dose-card-wrapper {
  position: relative;
  border-radius: 0 0 160px 0; /* curved bottom right */
  overflow: hidden;
  aspect-ratio: 0.82;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: var(--transition-smooth);
}

.dose-card-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.dose-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Sidebar rotated text on image */
.dose-sidebar {
  position: absolute;
  top: 0;
  left: 0;
  width: 56px;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.rotated-title {
  font-family: 'Geist', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--bg-white);
  white-space: nowrap;
  transform: rotate(-90deg);
  letter-spacing: 0.5px;
}

.dose-col-text {
  font-size: 14px;
  font-weight: 500;
  color: var(--bg-white);
  line-height: 1.5;
  padding-right: 12px;
}

/* ==========================================================================
   Stay Cool & Footer Section (Section 4)
   ========================================================================== */
#stay-cool {
  background-color: var(--primary-green);
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stay-cool-inner {
  width: 100%;
  max-width: 1200px;
  padding: 80px 5% 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.stay-cool-logo {
  height: 44px;
  width: auto;
  margin-bottom: 24px;
}

.scalloped-titles {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 0.85; /* Snug spacing to fix excessive gap */
  margin-bottom: 60px;
}

.scalloped-title {
  font-family: 'Honey Drops', sans-serif;
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  color: var(--bg-white);
  text-align: center;
}

/* Scallop separator */
.footer-scallops {
  display: flex;
  justify-content: center;
  width: 100%;
  overflow: hidden;
  height: 60px;
  position: relative;
  z-index: 2;
  margin-bottom: -1px;
}

.scallop-circle {
  width: 140px;
  height: 140px;
  background-color: var(--forest-green);
  border-radius: 50%;
  flex-shrink: 0;
  margin-right: -12px;
}

/* Footer Bottom Bar */
footer {
  width: 100%;
  background-color: var(--forest-green);
  padding: 40px 5%;
  position: relative;
  z-index: 1;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
}

.footer-inner a {
  color: var(--bg-white);
  transition: var(--transition-fast);
}

.footer-inner a:hover {
  opacity: 0.8;
}

/* ==========================================================================
   Shopping Cart Drawer
   ========================================================================== */
.cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(44, 75, 8, 0.3);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

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

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 440px;
  max-width: 100vw;
  height: 100%;
  background-color: var(--bg-cream);
  z-index: 1000;
  transform: translateX(100%);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.08);
  transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1);
  display: flex;
  flex-direction: column;
}

.cart-drawer.open {
  transform: translateX(0);
}

.cart-header {
  padding: 24px;
  border-bottom: 1px solid rgba(23, 96, 28, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-header h2 {
  font-family: 'Honey Drops', sans-serif;
  font-size: 26px;
  color: var(--forest-green);
}

.close-cart-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(23, 96, 28, 0.05);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--forest-green);
  transition: var(--transition-fast);
}

.close-cart-btn:hover {
  background-color: rgba(23, 96, 28, 0.1);
  transform: scale(1.05);
}

.cart-items-list {
  flex-grow: 1;
  overflow-y: auto;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Empty state */
.cart-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  height: 100%;
  color: #5c704c;
}

.cart-empty-state svg {
  width: 60px;
  height: 60px;
  stroke: currentColor;
  opacity: 0.4;
}

/* Cart Item card */
.cart-item {
  background-color: var(--bg-white);
  border-radius: 16px;
  padding: 12px;
  display: flex;
  gap: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}

.cart-item-img {
  width: 70px;
  height: 70px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
}

.cart-item-details {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cart-item-title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.cart-item-title {
  font-size: 14px;
  font-weight: 800;
  color: var(--forest-green);
}

.cart-item-tier {
  font-size: 10px;
  font-weight: 600;
  color: var(--primary-green);
  background-color: rgba(157, 209, 98, 0.15);
  padding: 2px 6px;
  border-radius: 4px;
  width: fit-content;
  margin-top: 2px;
}

.cart-item-price {
  font-family: 'Lilita One', sans-serif;
  font-size: 16px;
  color: var(--forest-green);
}

.cart-item-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
}

.qty-btns {
  display: flex;
  align-items: center;
  background-color: #f3f3f3;
  border-radius: 100px;
  padding: 2px;
}

.qty-btn {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: 800;
  color: var(--forest-green);
  transition: var(--transition-fast);
}

.qty-btn:hover {
  background-color: rgba(0,0,0,0.05);
}

.qty-val {
  font-size: 12px;
  font-weight: 700;
  padding: 0 8px;
  min-width: 20px;
  text-align: center;
}

.remove-item-btn {
  color: rgba(220, 50, 50, 0.8);
  font-size: 11px;
  font-weight: 700;
}

.remove-item-btn:hover {
  color: rgb(220, 50, 50);
}

/* Cart Footer */
.cart-footer {
  padding: 24px;
  border-top: 1px solid rgba(23, 96, 28, 0.06);
  background-color: var(--bg-white);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  font-weight: 800;
}

.cart-total-val {
  font-family: 'Lilita One', sans-serif;
  font-size: 24px;
  color: var(--forest-green);
}

.checkout-btn {
  background-color: var(--secondary-green);
  color: var(--bg-white);
  width: 100%;
  padding: 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(23, 96, 28, 0.15);
  transition: var(--transition-smooth);
  text-align: center;
}

.checkout-btn:hover {
  background-color: #124d16;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(23, 96, 28, 0.25);
}

/* ==========================================================================
   Responsive Adaptations (Media Queries)
   ========================================================================== */

@media (max-width: 1100px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .dose-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 900px) {
  /* Hero Stacking */
  #hero {
    flex-direction: column;
    min-height: auto;
    border-bottom-right-radius: 120px;
  }

  .hero-left-side {
    width: 100%;
    padding: 120px 8% 80px;
  }

  .hero-right-side {
    width: 100%;
    height: 400px;
  }

  .hero-right-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

@media (max-width: 768px) {
  /* Header Links Collapse */
  .nav-links {
    display: none; /* In a real app, we'd add a mobile menu. But for here, we fit links or stack them */
  }
  
  .cards-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
  }
  
  .dose-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
  }
  
  .dose-card-wrapper {
    aspect-ratio: 1.15;
    border-radius: 0 0 80px 0;
  }
  
  .scalloped-titles {
    margin-bottom: 40px;
  }
  
  .footer-scallops {
    height: 40px;
  }
  
  .scallop-circle {
    width: 90px;
    height: 90px;
    margin-right: -8px;
  }
}

@media (max-width: 480px) {
  .hero-left-side {
    padding-top: 100px;
  }
  #hero {
    border-bottom-right-radius: 80px;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-features {
    flex-direction: column;
    gap: 8px;
  }
  .hero-right-side {
    height: 300px;
  }
  .cart-drawer {
    width: 100%;
  }
}
