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

/* ============================================================
   CSS RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --brown:       #7B6452;
  --dark-brown:  #67310D;
  --amber:       #FE9A00;
  --amber-dark:  #E08800;
  --cream:       #FCF8F1;
  --cream-2:     #F4EBD9;
  --cream-3:     #EAD9C0;
  --white:       #FFFFFF;
  --text:        #2C1A0E;
  --text-muted:  #8B7355;
  --border:      #E2D4BF;
  --shadow:      rgba(103, 49, 13, 0.10);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Lato', sans-serif;
  --radius:       8px;
  --nav-h:        72px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--dark-brown);
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
h4 { font-size: 1.1rem; }
p  { color: var(--text-muted); font-size: 1rem; }

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.75rem;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container { max-width: 1180px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section--alt { background: var(--cream-2); }
.section--dark { background: var(--dark-brown); }
.section--dark h2, .section--dark h3, .section--dark p { color: var(--cream); }
.section--dark .section-label { color: var(--amber); }
.text-center { text-align: center; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all 0.25s ease;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--amber);
  color: var(--white);
}
.btn-primary:hover { background: var(--amber-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(254,154,0,0.35); }
.btn-outline {
  background: transparent;
  color: var(--dark-brown);
  border-color: var(--dark-brown);
}
.btn-outline:hover { background: var(--dark-brown); color: var(--white); }
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-white:hover { background: var(--white); color: var(--dark-brown); }
.btn-sm { padding: 0.6rem 1.3rem; font-size: 0.85rem; }
.btn-full { width: 100%; justify-content: center; }
.btn-icon { padding: 0.85rem; border-radius: 50%; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(252, 248, 241, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: 0 2px 20px var(--shadow); }
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 2rem;
}
.logo img { height: 48px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--amber);
  transform: scaleX(0);
  transition: transform 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--dark-brown); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.nav-actions { display: flex; align-items: center; gap: 1rem; }
.cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1.1rem;
  background: var(--dark-brown);
  color: var(--white);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: background 0.2s;
}
.cart-btn:hover { background: var(--amber); }
.cart-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px; height: 20px;
  background: var(--amber);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1;
}
.cart-btn .cart-count { background: var(--cream); color: var(--dark-brown); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--dark-brown);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem;
  z-index: 999;
  flex-direction: column;
  gap: 1rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 1rem;
  font-weight: 600;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  margin-top: var(--nav-h);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(103,49,13,0.75) 0%, rgba(44,26,14,0.55) 50%, rgba(123,100,82,0.4) 100%),
              url('https://hercules-cdn.com/file_sDmzbVHZXZm2EtMDwwGkwDFZ') center/cover no-repeat;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  color: var(--white);
  padding: 4rem 0;
}
.hero-content .section-label { color: rgba(255,255,255,0.8); }
.hero-content h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero-content h1 em { font-style: italic; color: var(--amber); }
.hero-content p { color: rgba(255,255,255,0.85); font-size: 1.1rem; max-width: 520px; margin-bottom: 2.5rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-badge {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: var(--cream);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  max-width: 240px;
  text-align: center;
}
.hero-badge img {
  width: 160px; height: 160px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 1rem;
}
.hero-badge-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.35rem;
}
.hero-badge h4 { font-size: 1rem; color: var(--dark-brown); margin-bottom: 0.25rem; }
.hero-badge p { font-size: 0.8rem; margin-bottom: 0.75rem; }
.hero-badge a { font-size: 0.8rem; font-weight: 600; color: var(--amber); }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--dark-brown);
  padding: 2rem 0;
}
.stats-inner {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--amber);
}
.stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.65); letter-spacing: 0.05em; }

/* ============================================================
   PRODUCT CARD
   ============================================================ */
.product-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.product-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px var(--shadow); }
.product-card-img {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.product-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-card-img img { transform: scale(1.06); }
.product-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--amber);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border-radius: 50px;
}
.badge-seasonal   { background: #4A9B6F; }
.badge-bestseller { background: var(--amber); }
.badge-premium    { background: var(--dark-brown); }
.badge-new        { background: #E85D4A; }
.badge-raw        { background: #8B7355; }

.product-card-body {
  padding: 1.25rem 1.25rem 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-card-sub {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.35rem;
}
.product-card-body h3 { font-size: 1.15rem; margin-bottom: 0.4rem; }
.product-card-body p  { font-size: 0.88rem; line-height: 1.5; flex: 1; }
.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.25rem 1.25rem;
  border-top: 1px solid var(--border);
  margin-top: 0.5rem;
  gap: 0.5rem;
}
.product-price { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700; color: var(--dark-brown); }
.product-unit  { font-size: 0.72rem; color: var(--text-muted); margin-top: -4px; }

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.about-images img {
  border-radius: 12px;
  height: 220px;
  object-fit: cover;
  width: 100%;
}
.about-images img:first-child { margin-top: 2rem; }
.about-text h2 { margin-bottom: 1rem; }
.about-text p  { margin-bottom: 1rem; }
.about-stats { display: flex; gap: 2rem; margin-top: 2rem; flex-wrap: wrap; }
.about-stat-num { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 700; color: var(--amber); }
.about-stat-label { font-size: 0.8rem; color: var(--text-muted); }

/* ============================================================
   WHY US
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.why-card {
  text-align: center;
  padding: 2rem 1.25rem;
  border-radius: 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
}
.why-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(254,154,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.5rem;
}
.why-card h4 { color: var(--white); margin-bottom: 0.5rem; }
.why-card p  { font-size: 0.88rem; color: rgba(255,255,255,0.6); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
.testimonial-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  border-left: 4px solid var(--amber);
  box-shadow: 0 4px 20px var(--shadow);
}
.testimonial-stars { color: var(--amber); font-size: 1rem; margin-bottom: 1rem; letter-spacing: 0.05em; }
.testimonial-text { font-style: italic; font-size: 0.95rem; margin-bottom: 1.25rem; color: var(--text); line-height: 1.6; }
.testimonial-author { font-weight: 700; font-size: 0.9rem; color: var(--dark-brown); }
.testimonial-location { font-size: 0.8rem; color: var(--text-muted); }

/* ============================================================
   GIFT HAMPERS CTA
   ============================================================ */
.hampers-cta {
  background: linear-gradient(135deg, var(--cream-2), var(--cream-3));
  border-radius: 24px;
  padding: 4rem;
  text-align: center;
  border: 1px solid var(--border);
}
.hampers-cta h2 { margin-bottom: 0.75rem; }
.hampers-cta p  { max-width: 480px; margin: 0 auto 2rem; }

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; align-items: start; }
.contact-info h2 { margin-bottom: 1rem; }
.contact-info p  { margin-bottom: 2rem; }
.contact-detail { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.25rem; }
.contact-detail-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: var(--cream-2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}
.contact-detail-text strong { display: block; font-size: 0.85rem; color: var(--dark-brown); }
.contact-detail-text span   { font-size: 0.85rem; color: var(--text-muted); }

.form-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 8px 40px var(--shadow);
}
.form-group { margin-bottom: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--dark-brown); margin-bottom: 0.4rem; }
input, textarea, select {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--cream);
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(254,154,0,0.15);
}
textarea { min-height: 130px; resize: vertical; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #1A0E07;
  color: rgba(255,255,255,0.65);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand img { height: 44px; filter: brightness(0) invert(1); margin-bottom: 1rem; }
.footer-brand p { font-size: 0.88rem; max-width: 260px; line-height: 1.7; }
.footer-col h5 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.footer-col a {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 0.6rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--amber); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.82rem; }
.footer-tagline { font-style: italic; color: var(--amber); font-size: 0.82rem; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--dark-brown), var(--brown));
  color: var(--white);
  padding: 4rem 0;
  margin-top: var(--nav-h);
  text-align: center;
}
.page-hero h1 { color: var(--white); font-size: clamp(1.8rem, 4vw, 2.8rem); }
.page-hero p  { color: rgba(255,255,255,0.75); margin-top: 0.5rem; }
.breadcrumb { font-size: 0.82rem; color: rgba(255,255,255,0.5); margin-bottom: 0.75rem; }
.breadcrumb a { color: var(--amber); }

/* ============================================================
   PRODUCTS PAGE
   ============================================================ */
.products-layout { display: grid; grid-template-columns: 260px 1fr; gap: 3rem; }
.filter-sidebar {
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
  height: fit-content;
}
.filter-card {
  background: var(--white);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 4px 20px var(--shadow);
}
.filter-card h4 { margin-bottom: 1.25rem; padding-bottom: 0.75rem; border-bottom: 1px solid var(--border); }
.filter-group { margin-bottom: 1.5rem; }
.filter-group h5 { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.75rem; }
.filter-option {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 0.6rem;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--text);
  transition: background 0.2s;
  margin-bottom: 0.25rem;
}
.filter-option:hover { background: var(--cream-2); }
.filter-option.active { background: rgba(254,154,0,0.12); color: var(--amber); font-weight: 600; }
.filter-option input[type="radio"] { accent-color: var(--amber); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.75rem;
}
.products-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.products-count { font-size: 0.9rem; color: var(--text-muted); }

/* ============================================================
   PRODUCT DETAIL PAGE
   ============================================================ */
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.product-detail-img-wrap {
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
}
.product-detail-img {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 40px var(--shadow);
}
.product-detail-img img { width: 100%; height: 500px; object-fit: cover; }

.product-detail-info .section-label { margin-bottom: 0.5rem; }
.product-detail-info h1 { font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 0.75rem; }
.product-detail-info .product-badge { position: static; display: inline-block; margin-bottom: 1.25rem; }

.product-detail-price {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--dark-brown);
}
.product-detail-unit { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.product-detail-desc { font-size: 0.95rem; line-height: 1.8; color: var(--text-muted); margin-bottom: 2rem; }

.qty-control {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  overflow: hidden;
  width: fit-content;
  margin-bottom: 1.5rem;
}
.qty-btn {
  width: 44px; height: 44px;
  background: var(--cream-2);
  border: none;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  color: var(--dark-brown);
  transition: background 0.2s;
  display: flex; align-items: center; justify-content: center;
}
.qty-btn:hover { background: var(--amber); color: var(--white); }
.qty-display { min-width: 50px; text-align: center; font-weight: 700; font-size: 1rem; }

.product-detail-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }
.product-trust {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.trust-item { display: flex; align-items: center; gap: 0.75rem; font-size: 0.88rem; color: var(--text-muted); }
.trust-icon { font-size: 1.1rem; }

/* ============================================================
   CART PAGE
   ============================================================ */
.cart-layout { display: grid; grid-template-columns: 1fr 360px; gap: 2.5rem; align-items: start; }
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th {
  text-align: left;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.75rem 1rem;
  border-bottom: 2px solid var(--border);
}
.cart-table td {
  padding: 1.25rem 1rem;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.cart-item-img { width: 80px; height: 80px; border-radius: 10px; object-fit: cover; }
.cart-item-name { font-family: var(--font-heading); font-weight: 600; color: var(--dark-brown); font-size: 1rem; }
.cart-item-unit { font-size: 0.8rem; color: var(--text-muted); }
.cart-item-price { font-family: var(--font-heading); font-weight: 700; font-size: 1.1rem; }
.cart-remove { color: #E85D4A; font-size: 1.1rem; background: none; border: none; cursor: pointer; transition: transform 0.2s; }
.cart-remove:hover { transform: scale(1.2); }

.cart-empty {
  text-align: center;
  padding: 4rem 0;
}
.cart-empty-icon { font-size: 3rem; margin-bottom: 1rem; }
.cart-empty h3 { margin-bottom: 0.5rem; }

.order-summary {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 8px 40px var(--shadow);
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
}
.order-summary h3 { margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border); }
.summary-row { display: flex; justify-content: space-between; margin-bottom: 0.75rem; font-size: 0.9rem; }
.summary-row.total { font-weight: 700; font-size: 1.1rem; color: var(--dark-brown); padding-top: 0.75rem; border-top: 2px solid var(--border); margin-top: 0.75rem; }
.summary-divider { height: 1px; background: var(--border); margin: 1.25rem 0; }

/* Checkout form */
.checkout-form { margin-top: 2rem; }
.checkout-form h4 { margin-bottom: 1.25rem; font-size: 1rem; }

/* ============================================================
   ORDER CONFIRMATION
   ============================================================ */
.order-confirm {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.order-confirm-card {
  background: var(--white);
  border-radius: 24px;
  padding: 4rem 3rem;
  box-shadow: 0 12px 50px var(--shadow);
  max-width: 520px;
}
.order-confirm-icon { font-size: 4rem; margin-bottom: 1.25rem; }
.order-confirm-card h2 { margin-bottom: 0.75rem; }
.order-confirm-card p  { margin-bottom: 1.5rem; }

/* ============================================================
   TOAST
   ============================================================ */
.toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.toast {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--dark-brown);
  color: var(--white);
  padding: 1rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 6px 25px rgba(0,0,0,0.2);
  font-size: 0.9rem;
  font-weight: 500;
  min-width: 260px;
  max-width: 360px;
  animation: slideUp 0.35s ease;
}
.toast.success { border-left: 4px solid #4A9B6F; }
.toast.error   { border-left: 4px solid #E85D4A; }
.toast-icon { font-size: 1.1rem; flex-shrink: 0; }
@keyframes slideUp {
  from { transform: translateY(20px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

/* ============================================================
   WHATSAPP BUTTON
   ============================================================ */
.whatsapp-btn {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 900;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  font-size: 1.5rem;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.whatsapp-btn:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.5); }

/* ============================================================
   UTILITIES
   ============================================================ */
.hidden { display: none !important; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.text-amber { color: var(--amber); }
.text-brown { color: var(--dark-brown); }
.font-heading { font-family: var(--font-heading); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .products-layout { grid-template-columns: 220px 1fr; }
  .about-grid { gap: 2.5rem; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .section { padding: 3.5rem 0; }
  .hero-badge { display: none; }
  .hero-content { max-width: 100%; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-images { display: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-inner { gap: 2rem; }

  .products-layout { grid-template-columns: 1fr; }
  .filter-sidebar { position: static; }

  .product-detail-grid { grid-template-columns: 1fr; gap: 2rem; }
  .product-detail-img-wrap { position: static; }
  .product-detail-img img { height: 300px; }

  .cart-layout { grid-template-columns: 1fr; }
  .cart-table th:nth-child(3),
  .cart-table td:nth-child(3) { display: none; }
  .hampers-cta { padding: 2.5rem 1.5rem; }
}

@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .btn { padding: 0.75rem 1.5rem; }
  .why-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; justify-content: center; }
  .order-confirm-card { padding: 2.5rem 1.5rem; }
}
