/* ==========================================================================
   FRESHPETAL — HYDERABAD GATED COMMUNITY FLORAL CONCIERGE
   Global Design System: Light, Fresh, Floral Theme
   ========================================================================== */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;500;600;700;800;900&family=Lato:ital,wght@0,300;0,400;0,700;1,400&family=Playfair+Display:ital,wght@0,600;1,500&display=swap');

/* ---- CSS Custom Properties ---- */
:root {
  /* Brand Colors */
  --rose:           #D4547A;
  --rose-dark:      #B83C62;
  --rose-light:     #F2789E;
  --blush:          #FDE8EF;
  --blush-mid:      #FACDD9;
  --sage:           #5F9E78;
  --sage-light:     #A8D5B5;
  --sage-pale:      #EAF5ED;
  --saffron:        #E8882A;
  --saffron-light:  #FAD6B0;
  --saffron-pale:   #FEF5EC;
  --cream:          #FFF8F2;
  --cream-deep:     #FEF0E4;
  --white:          #FFFFFF;

  /* Text */
  --text-dark:      #2C2C2C;
  --text-body:      #4A4A4A;
  --text-muted:     #888888;
  --text-light:     #BBBBBB;

  /* UI */
  --border:         #EDD9E0;
  --border-light:   #F5ECF0;
  --shadow-xs:      0 2px 8px rgba(212,84,122,0.08);
  --shadow-sm:      0 4px 16px rgba(212,84,122,0.12);
  --shadow-md:      0 8px 32px rgba(212,84,122,0.16);
  --shadow-lg:      0 16px 48px rgba(212,84,122,0.20);
  --radius-sm:      8px;
  --radius-md:      14px;
  --radius-lg:      22px;
  --radius-full:    9999px;
  --transition:     all 0.26s cubic-bezier(0.16, 1, 0.3, 1);

  /* Fonts */
  --font-head:  'Nunito', sans-serif;
  --font-body:  'Lato', sans-serif;
  --font-serif: 'Playfair Display', serif;

  /* Layout */
  --max-w: 1200px;
  --nav-h: 72px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; overflow-x: hidden; max-width: 100%; width: 100%; }
body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
button, input, select, textarea { font-family: inherit; color: inherit; }
ul { list-style: none; }

/* ---- Utilities ---- */
.container    { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section      { padding: 80px 0; }
.section-sm   { padding: 48px 0; }
.text-center  { text-align: center; }
.text-rose    { color: var(--rose); }
.text-sage    { color: var(--sage); }
.text-saffron { color: var(--saffron); }
.text-muted   { color: var(--text-muted); }
.fw-700       { font-weight: 700; }
.fw-800       { font-weight: 800; }
.w-full       { width: 100%; }
.mt-1         { margin-top: 8px; }
.mt-2         { margin-top: 16px; }
.mt-3         { margin-top: 24px; }
.mb-1         { margin-bottom: 8px; }
.mb-2         { margin-bottom: 16px; }
.mb-3         { margin-bottom: 24px; }
.hidden       { display: none !important; }
.flex         { display: flex; }
.items-center { align-items: center; }
.gap-1        { gap: 8px; }
.gap-2        { gap: 16px; }
.gap-3        { gap: 24px; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  color: var(--text-dark);
  line-height: 1.25;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); font-weight: 800; }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.6rem); font-weight: 700; }
h4 { font-size: 1.15rem; font-weight: 700; }
p  { font-size: 1rem; line-height: 1.7; }

.section-kicker {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose);
  background: var(--blush);
  padding: 4px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
}

.section-title { margin-bottom: 14px; }
.section-sub   { color: var(--text-muted); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-full);
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-rose {
  background: var(--rose);
  color: var(--white);
  border-color: var(--rose);
}
.btn-rose:hover {
  background: var(--rose-dark);
  border-color: var(--rose-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.btn-rose-outline {
  background: transparent;
  color: var(--rose);
  border-color: var(--rose);
}
.btn-rose-outline:hover {
  background: var(--rose);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-sage {
  background: var(--sage);
  color: var(--white);
  border-color: var(--sage);
}
.btn-sage:hover {
  background: #4D8965;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(95,158,120,0.3);
}
.btn-saffron {
  background: var(--saffron);
  color: var(--white);
  border-color: var(--saffron);
}
.btn-saffron:hover {
  background: #CB7220;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232,136,42,0.3);
}
.btn-white {
  background: var(--white);
  color: var(--rose);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--blush);
  transform: translateY(-2px);
}
.btn-sm  { padding: 8px 20px; font-size: 0.85rem; }
.btn-lg  { padding: 16px 36px; font-size: 1.05rem; }
.btn-whatsapp {
  background: #25D366;
  color: white;
  border-color: #25D366;
}
.btn-whatsapp:hover {
  background: #1DB954;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,211,102,0.3);
}

/* ---- Cards ---- */
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
  overflow: hidden;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--blush-mid);
}

/* ---- Form Elements ---- */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--white);
  outline: none;
  transition: var(--transition);
}
.form-control:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(212,84,122,0.12);
}
.form-control::placeholder { color: var(--text-light); }
select.form-control { cursor: pointer; }

/* ---- Badge ---- */
.badge {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 3px 10px;
  border-radius: var(--radius-full);
}
.badge-rose     { background: var(--blush); color: var(--rose); }
.badge-sage     { background: var(--sage-pale); color: var(--sage); }
.badge-saffron  { background: var(--saffron-pale); color: var(--saffron); }
.badge-green    { background: #DCFCE7; color: #166534; }

/* ---- Toast ---- */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.toast {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--rose);
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
  min-width: 280px;
  max-width: 360px;
  animation: slideUp 0.3s ease;
}
.toast.success { border-left-color: var(--sage); }
.toast.error   { border-left-color: #EF4444; }
@keyframes slideUp {
  from { transform: translateY(20px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

/* ---- Page Loader ---- */
.page-loader {
  position: fixed; inset: 0;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  z-index: 99999;
  transition: opacity 0.4s ease;
}
.page-loader.fade-out { opacity: 0; pointer-events: none; }
.loader-petal {
  width: 48px; height: 48px;
  border: 4px solid var(--blush);
  border-top-color: var(--rose);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---- Divider ---- */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blush-mid), transparent);
  margin: 0;
}

/* ---- Petal decoration ---- */
.petal-bg {
  position: relative;
  overflow: hidden;
}
.petal-bg::before {
  content: '🌸';
  position: absolute;
  font-size: 120px;
  opacity: 0.05;
  right: -20px;
  top: -20px;
  transform: rotate(15deg);
  pointer-events: none;
  user-select: none;
}

/* ====================================================================
   SITE HEADER / NAVIGATION
   ==================================================================== */
.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  height: var(--nav-h);
  background: rgba(255, 248, 242, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  z-index: 1000;
  transition: var(--transition);
}
.site-header.scrolled {
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--rose), var(--rose-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow-xs);
}
.logo-text {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--rose);
  letter-spacing: -0.02em;
}
.logo-tagline {
  font-size: 0.62rem;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  display: block;
  margin-top: -4px;
}

/* Desktop Nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-body);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  position: relative;
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--rose);
  background: var(--blush);
}
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 3px;
  background: var(--rose);
  border-radius: 2px;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header-icon-btn {
  position: relative;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: none;
  background: var(--blush);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition);
}
.header-icon-btn:hover { background: var(--blush-mid); transform: scale(1.05); }
.cart-badge {
  position: absolute; top: -2px; right: -2px;
  background: var(--rose); color: white;
  font-family: var(--font-head);
  font-size: 0.65rem; font-weight: 800;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--cream);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 36px; height: 36px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  z-index: 999;
  padding: 20px 24px 28px;
  flex-direction: column;
  gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav-link {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 10px;
}
.mobile-nav-link:hover { background: var(--blush); color: var(--rose); }
.mobile-nav-divider { height: 1px; background: var(--border-light); margin: 8px 0; }
.mobile-nav-footer {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

/* ====================================================================
   HERO SECTION (Home Page)
   ==================================================================== */
.hero {
  background: linear-gradient(135deg, var(--cream) 0%, var(--blush) 60%, #FEE2EE 100%);
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 60px 0;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 85% 50%, rgba(212,84,122,0.08) 0%, transparent 55%),
    radial-gradient(circle at 15% 80%, rgba(95,158,120,0.06) 0%, transparent 50%);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--blush-mid);
  border-radius: var(--radius-full);
  padding: 5px 14px 5px 8px;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--rose);
  margin-bottom: 20px;
  box-shadow: var(--shadow-xs);
}
.hero-badge-dot {
  width: 8px; height: 8px;
  background: var(--sage);
  border-radius: 50%;
  animation: pulse-green 2s infinite;
}
@keyframes pulse-green {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.4); opacity: 1; }
}
.hero-title {
  margin-bottom: 20px;
  line-height: 1.18;
}
.hero-title .highlight {
  color: var(--rose);
  position: relative;
}
.hero-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 500px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.trust-stat { text-align: left; }
.trust-stat .num {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--rose);
}
.trust-stat .label {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: block;
}

/* Hero Illustration Panel */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-image-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 420px;
  border: 1px solid var(--border-light);
}
.hero-main-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--blush), var(--sage-pale));
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem;
}
.hero-card-badge {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
}
.hero-card-badge.top-left  { top: -16px; left: -16px; }
.hero-card-badge.bottom-right { bottom: -16px; right: -16px; }

/* ====================================================================
   TRUST BAR / ANNOUNCEMENT BAR
   ==================================================================== */
.announce-bar {
  background: linear-gradient(90deg, var(--rose), #E8336A, var(--rose));
  background-size: 200% 100%;
  animation: gradientShift 4s ease infinite;
  color: white;
  text-align: center;
  padding: 10px 24px;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.announce-bar a { color: white; text-decoration: underline; }

/* ====================================================================
   SECTION: HOW IT WORKS
   ==================================================================== */
.how-bg { background: var(--blush); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}
.step-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-xs);
  position: relative;
  transition: var(--transition);
}
.step-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.step-num {
  position: absolute;
  top: -16px; left: 50%;
  transform: translateX(-50%);
  width: 32px; height: 32px;
  background: var(--rose);
  color: white;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 0.85rem;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(212,84,122,0.35);
}
.step-icon { font-size: 2.4rem; margin-bottom: 14px; }
.step-title { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; color: var(--text-dark); }
.step-desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.55; }
.step-connector {
  display: none;
}

/* ====================================================================
   SECTION: FEATURED CATEGORIES
   ==================================================================== */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}
.cat-card {
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.cat-card.flowers-cat {
  background: linear-gradient(135deg, #FDE8EF 0%, #FACDD9 100%);
}
.cat-card.pooja-cat {
  background: linear-gradient(135deg, var(--saffron-pale) 0%, #FDDCB5 100%);
}
.cat-card.bundles-cat {
  background: linear-gradient(135deg, var(--sage-pale) 0%, #C8EAD5 100%);
}
.cat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.cat-icon { font-size: 3.5rem; margin-bottom: 16px; }
.cat-title { font-size: 1.3rem; font-weight: 800; margin-bottom: 8px; }
.cat-desc  { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 20px; }
.cat-count { font-family: var(--font-head); font-size: 0.8rem; font-weight: 700; color: var(--rose); }

/* ====================================================================
   SECTION: PRODUCT CARDS
   ==================================================================== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--blush-mid);
}
.product-thumb {
  height: 180px;
  background: var(--blush);
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem;
  position: relative;
  overflow: hidden;
}
.product-thumb img {
  width: 100%; height: 100%; object-fit: cover;
}
.product-badge {
  position: absolute; top: 10px; left: 10px;
}
.product-body {
  padding: 16px;
  display: flex; flex-direction: column; flex: 1;
}
.product-title {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.product-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  line-height: 1.45;
  flex: 1;
}
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.product-price {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--rose);
}
.product-unit { font-size: 0.72rem; color: var(--text-muted); display: block; }
.btn-add-cart {
  background: var(--blush);
  color: var(--rose);
  border: 1px solid var(--blush-mid);
  border-radius: var(--radius-full);
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 6px 14px;
  cursor: pointer;
  transition: var(--transition);
}
.btn-add-cart:hover {
  background: var(--rose);
  color: white;
  border-color: var(--rose);
}

/* Qty Selector */
.qty-selector {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}
.qty-btn {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--white);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.qty-btn:hover { border-color: var(--rose); color: var(--rose); }
.qty-input {
  width: 50px;
  text-align: center;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 4px;
  font-weight: 700;
  font-size: 0.9rem;
}

/* ====================================================================
   SECTION: SUBSCRIPTION PLANS
   ==================================================================== */
.subs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 50px;
}
.sub-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 2px solid var(--border-light);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition);
}
.sub-card.popular {
  border-color: var(--rose);
  box-shadow: 0 20px 50px rgba(212,84,122,0.15);
  transform: scale(1.03);
}
.popular-ribbon {
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  background: var(--rose);
  color: white;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 4px 18px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}
.sub-icon { font-size: 2.8rem; margin-bottom: 16px; }
.sub-name { font-size: 1.4rem; font-weight: 800; margin-bottom: 4px; }
.sub-desc { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 24px; }
.sub-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 24px;
}
.sub-price .amount {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--rose);
}
.sub-price .currency { font-size: 1.3rem; font-weight: 700; color: var(--rose); }
.sub-price .period  { font-size: 0.9rem; color: var(--text-muted); }
.sub-features {
  list-style: none;
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 32px;
  flex: 1;
}
.sub-features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.88rem;
  color: var(--text-body);
}
.sub-features li::before {
  content: '✓';
  color: var(--sage);
  font-weight: 800;
  font-family: var(--font-head);
  flex-shrink: 0;
}

/* ====================================================================
   SECTION: TESTIMONIALS
   ==================================================================== */
.testimonials-bg { background: var(--cream-deep); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-xs);
}
.testimonial-stars { color: #FBBF24; margin-bottom: 12px; font-size: 1rem; }
.testimonial-text {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 20px;
}
.testimonial-author {
  display: flex; align-items: center; gap: 12px;
}
.author-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--rose-light));
  color: white;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
}
.author-name { font-family: var(--font-head); font-size: 0.9rem; font-weight: 700; color: var(--text-dark); }
.author-location { font-size: 0.78rem; color: var(--text-muted); }

/* ====================================================================
   SECTION: AREAS WE SERVE (Map Strip)
   ==================================================================== */
.areas-bg { background: var(--sage-pale); }
.areas-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 36px;
}
.area-pill {
  display: flex; align-items: center; gap: 8px;
  background: var(--white);
  border: 1px solid rgba(95,158,120,0.3);
  border-radius: var(--radius-full);
  padding: 8px 18px;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--sage);
  box-shadow: 0 2px 8px rgba(95,158,120,0.1);
  transition: var(--transition);
}
.area-pill:hover {
  background: var(--sage);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(95,158,120,0.25);
}
.area-dot { width: 8px; height: 8px; background: var(--sage); border-radius: 50%; }
.area-pill:hover .area-dot { background: white; }

/* ====================================================================
   SHOP PAGE - Filters Sidebar
   ==================================================================== */
.shop-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 30px;
  margin-top: 40px;
}
.shop-sidebar {
  position: sticky;
  top: calc(var(--nav-h) + 20px);
  height: fit-content;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  padding: 24px;
  box-shadow: var(--shadow-xs);
}
.sidebar-title {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.sidebar-filter-list { display: flex; flex-direction: column; gap: 4px; }
.sidebar-filter-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-body);
  cursor: pointer;
  background: transparent;
  border: none;
  text-align: left;
  transition: var(--transition);
}
.sidebar-filter-btn:hover { background: var(--blush); color: var(--rose); }
.sidebar-filter-btn.active { background: var(--blush); color: var(--rose); }
.filter-count {
  background: var(--blush-mid);
  color: var(--rose);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: var(--radius-full);
}

.shop-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.shop-result-count { font-family: var(--font-head); font-size: 0.9rem; font-weight: 600; color: var(--text-muted); }
.shop-sort-select {
  padding: 8px 14px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  outline: none;
}

/* Weight Selector */
.weight-selector {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin: 8px 0;
}
.weight-btn {
  padding: 4px 10px;
  border-radius: var(--radius-full);
  border: 2px solid var(--border);
  background: white;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}
.weight-btn:hover, .weight-btn.active {
  border-color: var(--rose);
  background: var(--blush);
  color: var(--rose);
}

/* ====================================================================
   CART SIDE DRAWER
   ==================================================================== */
.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1100;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.cart-overlay.open { opacity: 1; pointer-events: auto; }
.cart-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 400px;
  background: var(--white);
  z-index: 1110;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1);
  box-shadow: -8px 0 32px rgba(0,0,0,0.15);
}
.cart-drawer.open { transform: translateX(0); }
.cart-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-light);
  display: flex; align-items: center; justify-content: space-between;
}
.cart-header h3 { font-size: 1.2rem; font-weight: 800; }
.btn-close-cart {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--blush);
  color: var(--rose);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.btn-close-cart:hover { background: var(--rose); color: white; }
.cart-body { flex: 1; overflow-y: auto; padding: 20px 24px; }
.cart-empty {
  text-align: center; padding: 60px 20px;
  color: var(--text-muted);
}
.cart-empty-icon { font-size: 3.5rem; margin-bottom: 16px; }
.cart-item {
  display: flex; gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-light);
}
.cart-item-thumb {
  width: 64px; height: 64px;
  border-radius: var(--radius-sm);
  background: var(--blush);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
  overflow: hidden;
}
.cart-item-info { flex: 1; }
.cart-item-name { font-family: var(--font-head); font-size: 0.88rem; font-weight: 700; margin-bottom: 2px; }
.cart-item-meta { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 8px; }
.cart-item-actions { display: flex; align-items: center; justify-content: space-between; }
.cart-item-price { font-family: var(--font-head); font-weight: 800; color: var(--rose); }
.btn-remove { background: none; border: none; color: var(--text-muted); cursor: pointer; font-size: 1rem; }
.btn-remove:hover { color: #EF4444; }
.cart-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--border-light);
  background: var(--cream);
}
.cart-total-row {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 16px;
  font-family: var(--font-head); font-size: 1.05rem; font-weight: 800;
}
.cart-total-price { font-size: 1.4rem; color: var(--rose); }
.coupon-input-wrap {
  display: flex; gap: 8px; margin-bottom: 14px;
}
.coupon-input-wrap input { flex: 1; }
.cart-checkout-btns { display: flex; flex-direction: column; gap: 8px; }

/* ====================================================================
   PAGE: AUTH (Login / Signup)
   ==================================================================== */
.auth-page {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.auth-visual {
  background: linear-gradient(150deg, var(--rose) 0%, #E8336A 40%, #8B2252 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 50px;
  position: relative;
  overflow: hidden;
  color: white;
}
.auth-visual::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 30% 70%, rgba(255,255,255,0.08), transparent 55%);
}
.auth-visual-emoji {
  font-size: 5rem;
  margin-bottom: 24px;
}
.auth-visual-title {
  font-family: var(--font-head);
  font-size: 2rem; font-weight: 900;
  margin-bottom: 14px;
  text-align: center;
}
.auth-visual-sub {
  font-size: 1rem; opacity: 0.85;
  text-align: center; line-height: 1.65;
}
.auth-visual-points {
  margin-top: 36px;
  display: flex; flex-direction: column; gap: 12px;
}
.auth-point {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.12);
  padding: 12px 18px;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 600;
}

.auth-form-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 50px;
  background: var(--cream);
  overflow-y: auto;
}
.auth-form-card {
  width: 100%;
  max-width: 440px;
}
.auth-logo-link { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 32px; }
.auth-page-title {
  font-size: 1.9rem; font-weight: 900; margin-bottom: 6px;
}
.auth-page-sub { color: var(--text-muted); margin-bottom: 30px; }

.btn-google {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%;
  padding: 12px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  background: white;
  font-family: var(--font-head);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-dark);
  cursor: pointer;
  transition: var(--transition);
  margin-bottom: 24px;
}
.btn-google:hover { border-color: var(--rose); box-shadow: var(--shadow-sm); }
.btn-google img { width: 20px; }
.or-divider {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 24px;
  color: var(--text-muted);
  font-size: 0.82rem;
  font-family: var(--font-head);
  font-weight: 600;
}
.or-divider::before, .or-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-hint { font-size: 0.78rem; color: var(--text-muted); margin-top: 5px; }
.form-error { font-size: 0.78rem; color: #EF4444; margin-top: 5px; display: none; }
.form-error.show { display: block; }

.password-field { position: relative; }
.toggle-password {
  position: absolute; right: 14px; top: 50%;
  transform: translateY(-50%);
  background: none; border: none;
  cursor: pointer; color: var(--text-muted);
  font-size: 1rem;
}
.auth-terms { font-size: 0.8rem; color: var(--text-muted); text-align: center; margin-top: 16px; }
.auth-terms a { color: var(--rose); font-weight: 700; }
.auth-switch {
  text-align: center; margin-top: 24px;
  font-size: 0.9rem; color: var(--text-muted);
}
.auth-switch a { color: var(--rose); font-weight: 700; }

/* Multi-step signup progress */
.signup-steps {
  display: flex; align-items: center; gap: 0;
  margin-bottom: 32px;
}
.signup-step {
  display: flex; flex-direction: column; align-items: center; flex: 1;
}
.step-circle {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: white;
  font-family: var(--font-head);
  font-size: 0.8rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  transition: var(--transition);
}
.step-circle.active { border-color: var(--rose); background: var(--rose); color: white; }
.step-circle.done  { border-color: var(--sage); background: var(--sage); color: white; }
.step-label { font-size: 0.68rem; font-weight: 700; color: var(--text-muted); margin-top: 6px; text-align: center; }
.step-line {
  flex: 1; height: 2px;
  background: var(--border);
  margin-top: -18px;
  transition: var(--transition);
}
.step-line.done { background: var(--sage); }

/* ====================================================================
   PAGE: DASHBOARD
   ==================================================================== */
.dashboard-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 30px;
  padding: 40px 0;
}
.dash-sidebar {
  position: sticky;
  top: calc(var(--nav-h) + 20px);
  height: fit-content;
}
.dash-user-card {
  background: linear-gradient(135deg, var(--rose), var(--rose-light));
  color: white;
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 16px;
  text-align: center;
}
.dash-avatar {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: 3px solid white;
  margin: 0 auto 12px;
  font-size: 1.8rem;
  display: flex; align-items: center; justify-content: center;
}
.dash-username { font-family: var(--font-head); font-size: 1rem; font-weight: 800; margin-bottom: 2px; }
.dash-society  { font-size: 0.78rem; opacity: 0.85; }
.dash-nav {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  overflow: hidden;
}
.dash-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-body);
  border-left: 3px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  border-bottom: 1px solid var(--border-light);
}
.dash-nav-item:last-child { border-bottom: none; }
.dash-nav-item:hover  { background: var(--blush); color: var(--rose); border-left-color: var(--blush-mid); }
.dash-nav-item.active { background: var(--blush); color: var(--rose); border-left-color: var(--rose); }
.dash-nav-icon { font-size: 1.1rem; }

.dash-content {}
.dash-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}
.stat-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-xs);
}
.stat-icon { font-size: 1.8rem; margin-bottom: 10px; }
.stat-val {
  font-family: var(--font-head);
  font-size: 1.8rem; font-weight: 900;
  color: var(--rose); margin-bottom: 4px;
}
.stat-label { font-size: 0.82rem; color: var(--text-muted); }
.dash-section-title {
  font-family: var(--font-head);
  font-size: 1.15rem; font-weight: 800;
  margin-bottom: 16px;
}
.order-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-light);
}
.order-table th {
  background: var(--blush);
  padding: 12px 16px;
  text-align: left;
  font-family: var(--font-head);
  font-size: 0.8rem; font-weight: 800;
  color: var(--rose);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.order-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.88rem;
}
.order-table tr:last-child td { border-bottom: none; }
.order-table tr:hover td { background: var(--cream); }

/* ====================================================================
   PAGE: EVENTS
   ==================================================================== */
.event-hero {
  background: linear-gradient(135deg, var(--saffron-pale) 0%, #FDDCB5 60%, var(--cream) 100%);
  padding: 80px 0;
}
.event-hero-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.cutoff-timer {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--white);
  border: 2px solid var(--saffron);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  font-family: var(--font-head);
  font-size: 0.9rem; font-weight: 700;
  color: var(--saffron);
  margin-bottom: 24px;
  box-shadow: 0 4px 16px rgba(232,136,42,0.15);
}
.cutoff-timer .countdown { font-size: 1.3rem; font-weight: 900; }

/* ====================================================================
   PAGE: CONTACT
   ==================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-light);
}
.contact-info-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: var(--blush);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-info-label { font-family: var(--font-head); font-size: 0.8rem; font-weight: 700; text-transform: uppercase; color: var(--text-muted); margin-bottom: 4px; }
.contact-info-val { font-family: var(--font-head); font-weight: 700; color: var(--text-dark); }

/* ====================================================================
   PAGE: ABOUT
   ==================================================================== */
.about-hero { background: linear-gradient(135deg, var(--sage-pale), var(--cream)); padding: 80px 0; }
.about-story { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-img-block {
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--blush), var(--sage-pale));
  height: 380px;
  display: flex; align-items: center; justify-content: center;
  font-size: 6rem;
  box-shadow: var(--shadow-md);
}
.about-values {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 50px;
}
.value-card {
  text-align: center; padding: 28px 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
}
.value-icon { font-size: 2.2rem; margin-bottom: 12px; }

/* ====================================================================
   FOOTER
   ==================================================================== */
.site-footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand { margin-bottom: 20px; }
.footer-logo {
  display: flex; align-items: center; gap: 10px; margin-bottom: 14px;
}
.footer-logo-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--rose), var(--rose-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.footer-logo-text {
  font-family: var(--font-head);
  font-size: 1.2rem; font-weight: 900;
  color: white;
}
.footer-tagline { font-size: 0.88rem; line-height: 1.65; max-width: 280px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.social-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  color: white;
}
.social-btn:hover { background: var(--rose); color: white; }
.footer-heading {
  font-family: var(--font-head);
  font-size: 0.88rem; font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--rose-light); padding-left: 4px; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.82rem;
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,0.5); }
.footer-bottom-links a:hover { color: var(--rose-light); }

/* ====================================================================
   GRID UTILITIES
   ==================================================================== */
.build-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 30px;
  align-items: start;
}
.flower-picker-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.delivery-rules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  color: white;
  text-align: center;
}
.custom-builder-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.grid-3-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.grid-2-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* ====================================================================
   RESPONSIVE BREAKPOINTS
   ==================================================================== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .steps-grid  { grid-template-columns: repeat(2, 1fr); }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .subs-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
  .sub-card.popular { transform: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .shop-layout { grid-template-columns: 1fr; }
  .shop-sidebar { position: static; }
  .auth-page { grid-template-columns: 1fr; }
  .auth-visual { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-story { grid-template-columns: 1fr; }
  .dashboard-layout { grid-template-columns: 1fr; }
  .dash-sidebar { position: static; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .header-cta { display: none; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: 1fr; }
  .hero-trust { flex-wrap: wrap; gap: 16px; }
  .hero-actions { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .dash-stats { grid-template-columns: 1fr; }
  .cart-drawer { width: 100%; }
  .form-row-2 { grid-template-columns: 1fr; }
  .event-hero-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .build-layout { grid-template-columns: 1fr !important; }
  .flower-picker-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 12px !important; }
  .custom-builder-inner { grid-template-columns: 1fr !important; gap: 24px !important; }
  .delivery-rules-grid { grid-template-columns: 1fr !important; gap: 16px !important; }
  .grid-3-col { grid-template-columns: 1fr !important; }
  .grid-2-col { grid-template-columns: 1fr !important; }
}

@media (max-width: 480px) {
  :root { --nav-h: 64px; }
  html, body { overflow-x: hidden; max-width: 100vw; }
  .products-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .hero { padding: 40px 0; }
  h1 { font-size: 2rem; }
  .container { padding: 0 16px; width: 100%; max-width: 100vw; box-sizing: border-box; }
  .flower-picker-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 10px !important; }
  .hero-inner { grid-template-columns: 1fr; gap: 30px; }
  .hero-trust { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .hero-trust .trust-stat { border-left: none !important; padding-left: 0 !important; }
  .categories-grid { grid-template-columns: 1fr; gap: 16px; }
  .checkout-layout { grid-template-columns: 1fr !important; }
  .card { max-width: 100%; box-sizing: border-box; }
}

html, body {
  overflow-x: hidden;
  max-width: 100%;
}
