/* ============================================================
   The Festive Vide — main.css
   Matches Dakingo design: warm red, cream, rounded white cards
   ============================================================ */

/* ── CSS VARIABLES ── */
:root {
  --red:        #B5302A;
  --red-dark:   #8C1F1A;
  --red-light:  #D94F42;
  --cream:      #FEF6EE;
  --cream2:     #FAF0E4;
  --peach:      #F5DEC8;
  --gold:       #C9872A;
  --text:       #2A1200;
  --text2:      #6B3A20;
  --white:      #FFFFFF;
  --border:     rgba(181, 48, 42, 0.1);
  --shadow-sm:  0 2px 12px rgba(181, 48, 42, 0.06);
  --shadow-md:  0 8px 30px rgba(181, 48, 42, 0.10);
  --shadow-lg:  0 16px 50px rgba(181, 48, 42, 0.14);
  --radius:     18px;
  --radius-sm:  10px;
  --radius-pill:50px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  font-size: 14px;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--cream2); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 4px; }

/* ── TOPBAR ── */
.topbar {
  background: var(--red-dark);
  color: #FFD9A0;
  text-align: center;
  padding: 7px 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  overflow: hidden;
  position: relative;
}
.topbar::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,217,160,0.1), transparent);
  animation: topbar-shimmer 3.5s infinite;
}
@keyframes topbar-shimmer { 0%{transform:translateX(-100%)} 100%{transform:translateX(100%)} }

/* ── NAVBAR ── */
.navbar {
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 40px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: var(--shadow-sm);
  gap: 20px;
}

.logo {
  font-family: 'Nunito', sans-serif;
  font-size: 24px;
  font-weight: 900;
  color: var(--red);
  letter-spacing: -0.5px;
  line-height: 1;
  white-space: nowrap;
}
.logo span { color: var(--red-dark); }
.logo small {
  display: block;
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--text2);
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 3px;
}

.nav-search {
  display: flex;
  align-items: center;
  background: var(--cream2);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 9px 18px;
  gap: 8px;
  flex: 0 1 280px;
  transition: border-color 0.2s;
}
.nav-search:focus-within { border-color: var(--red); }
.nav-search input,
.nav-search input[type="search"] {
  border: none;
  background: transparent;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  color: var(--text);
  outline: none;
  width: 100%;
}
.nav-search input::placeholder { color: #BBA898; }
.nav-search .search-submit { display: none; }  /* hide WP default submit */

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-icon-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text2);
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.nav-icon-btn:hover { background: var(--cream2); color: var(--red); }
.nav-icon-btn .icon { font-size: 18px; }

.nav-cart { position: relative; }
.cart-count {
  position: absolute;
  top: 2px; right: 2px;
  width: 18px; height: 18px;
  background: var(--red);
  color: white;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid white;
}

/* ── BUTTONS ── */
.btn-order {
  background: var(--red);
  color: white;
  border: none;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
  text-align: center;
}
.btn-order:hover { background: var(--red-dark); transform: scale(1.03); color: white; }

.btn-white {
  background: white;
  color: var(--red-dark);
  border: none;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s;
  display: inline-block;
}
.btn-white:hover { transform: scale(1.04); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }

.view-all-btn {
  background: var(--red);
  color: white;
  border: none;
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.view-all-btn:hover { background: var(--red-dark); transform: scale(1.03); }

/* ── CATEGORY NAV ── */
.cat-nav {
  background: var(--white);
  display: flex;
  align-items: center;
  padding: 0 40px;
  border-bottom: 2px solid var(--border);
  overflow-x: auto;
  scrollbar-width: none;
  position: sticky;
  top: 73px;
  z-index: 100;
}
.cat-nav::-webkit-scrollbar { display: none; }

.cat-link {
  font-size: 12px;
  font-weight: 600;
  color: var(--text2);
  padding: 13px 18px;
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 2.5px solid transparent;
  margin-bottom: -2px;
  transition: color 0.2s, border-color 0.2s;
  display: inline-block;
}
.cat-link:hover, .cat-link.active {
  color: var(--red);
  border-bottom-color: var(--red);
}

/* ── HERO ── */
.hero {
  background: linear-gradient(120deg, var(--red-dark) 0%, var(--red) 55%, #D94F42 100%);
  padding: 0 60px;
  display: grid;
  grid-template-columns: 270px 1fr 200px;
  align-items: center;
  min-height: 310px;
  position: relative;
  overflow: hidden;
  gap: 30px;
}
.hero::before {
  content: '';
  position: absolute;
  top: -80px; right: 260px;
  width: 260px; height: 260px;
  background: rgba(255,255,255,0.07);
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px; right: 120px;
  width: 320px; height: 320px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  pointer-events: none;
}

.hero-product-main {
  width: 230px; height: 230px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 6px solid rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 90px;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  overflow: hidden;
  animation: float 3.5s ease-in-out infinite;
}
.hero-product-main img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }

@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }

.hero-center {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}

.hero-tag {
  background: rgba(255,255,255,0.18);
  color: #FFD9A0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
  border: 1px solid rgba(255,255,255,0.2);
}

.hero-title {
  font-family: 'Nunito', sans-serif;
  font-size: 52px;
  font-weight: 900;
  color: white;
  line-height: 1.05;
  margin-bottom: 10px;
  letter-spacing: -1px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.15);
}
.hero-title em { font-style: italic; color: #FFD9A0; }

.hero-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  font-weight: 400;
  margin-bottom: 24px;
}

.hero-offer {
  background: white;
  border-radius: var(--radius-pill);
  padding: 10px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  cursor: pointer;
  transition: transform 0.2s;
}
.hero-offer:hover { transform: scale(1.04); }
.hero-offer .offer-label {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--red);
  font-weight: 700;
}
.hero-offer .offer-amount {
  font-family: 'Nunito', sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: var(--red-dark);
  line-height: 1.1;
}

.hero-right-imgs {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-mini-circle {
  width: 88px; height: 88px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 4px solid rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  overflow: hidden;
}
.hero-mini-circle img { width: 100%; height: 100%; object-fit: cover; }

/* ── SECTION SHARED ── */
.section-wrap {
  padding: 10px 40px 32px;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 20px;
  gap: 16px;
  flex-wrap: wrap;
}

.section-title {
  font-family: 'Nunito', sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 2px;
}

.section-sub {
  font-size: 13px;
  color: var(--text2);
  font-style: italic;
  font-weight: 400;
}

/* ── MENU / OCCASION SELECTOR ── */
.menu-section {
  background: var(--white);
  margin: 22px 40px;
  border-radius: var(--radius);
  padding: 26px 30px;
  box-shadow: var(--shadow-sm);
}

.menu-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.menu-title-block h2 {
  font-family: 'Nunito', sans-serif;
  font-size: 24px;
  font-weight: 900;
  color: var(--red);
  margin-bottom: 2px;
}
.menu-title-block > p {
  font-size: 13px;
  color: var(--text2);
}

.menu-icons-row {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}
.menu-filter-icon {
  width: 34px; height: 34px;
  border-radius: var(--radius-sm);
  background: var(--cream2);
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}
.menu-filter-icon:hover { transform: scale(1.05); }
.menu-filter-icon.active { background: var(--red); border-color: var(--red); filter: brightness(0) invert(1) drop-shadow(0 0 0 white); }

.menu-cats {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.menu-cat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s;
}
.menu-cat:hover { transform: translateY(-3px); }

.menu-cat-icon {
  width: 76px; height: 76px;
  border-radius: 16px;
  background: var(--cream2);
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 30px;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.menu-cat:hover .menu-cat-icon,
.menu-cat.active .menu-cat-icon {
  background: var(--cream);
  border-color: var(--red);
  box-shadow: 0 4px 16px rgba(181,48,42,0.13);
}

.menu-cat-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text2);
}
.menu-cat.active .menu-cat-label { color: var(--red); }

/* ── OCCASIONS GRID ── */
.occasions-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  grid-template-rows: 210px 210px;
  gap: 14px;
}

.occ-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  display: block;
}
.occ-card:hover { transform: scale(1.02); box-shadow: var(--shadow-lg); }
.occ-card:first-child { grid-row: span 2; }

.occ-bg {
  width: 100%; height: 100%;
  min-height: 210px;
  display: flex; align-items: center; justify-content: center;
  font-size: 64px;
}
.occ-card:first-child .occ-bg { min-height: 434px; font-size: 100px; }

.occ-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(140,31,26,0.78) 0%, transparent 55%);
}
.occ-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 18px 20px;
}
.occ-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #FFD9A0;
  margin-bottom: 4px;
}
.occ-name {
  font-family: 'Nunito', sans-serif;
  font-size: 18px;
  font-weight: 900;
  color: white;
  line-height: 1.2;
}
.occ-card:first-child .occ-name { font-size: 24px; }
.occ-count {
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  margin-top: 3px;
}

/* ── PRODUCT CARDS ── */
.products-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1.5px solid var(--border);
  transition: transform 0.25s, box-shadow 0.25s;
  cursor: pointer;
  position: relative;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.product-img {
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 68px;
  position: relative;
  overflow: hidden;
}
.product-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.product-card:hover .product-img img { transform: scale(1.06); }

.product-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--red);
  color: white;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
}

.product-wishlist {
  position: absolute;
  top: 10px; right: 10px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: white;
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.product-wishlist:hover { background: #FFF0F0; border-color: var(--red); transform: scale(1.1); }
.product-wishlist.active { background: #FFF0F0; border-color: var(--red); }

.product-info { padding: 14px 16px 16px; }

.product-occasion {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 5px;
}

.product-name {
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 5px;
}
.product-name a { color: inherit; }
.product-name a:hover { color: var(--red); }

.product-meta {
  font-size: 11px;
  color: var(--text2);
  margin-bottom: 8px;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 10px;
}
.stars { color: #F5A623; font-size: 13px; letter-spacing: 1px; }
.rating-count { font-size: 11px; color: #BBA898; }

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.product-price {
  font-family: 'Nunito', sans-serif;
  font-size: 18px;
  font-weight: 900;
  color: var(--text);
  line-height: 1.2;
}
.product-price .og,
.product-price del,
.product-price ins .amount ~ .amount { /* WooCommerce sale price */
  font-size: 12px;
  color: #BBA898;
  font-weight: 400;
  text-decoration: line-through;
  margin-left: 4px;
}
/* WooCommerce price overrides */
.product-price ins { text-decoration: none; }
.product-price .woocommerce-Price-amount { font-weight: 900; }

.add-btn,
.product-card .add_to_cart_button {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--red);
  color: white;
  border: none;
  font-size: 20px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  flex-shrink: 0;
  font-weight: 300;
  line-height: 1;
  padding: 0;
  text-indent: 0;
  text-align: center;
}
.add-btn:hover,
.product-card .add_to_cart_button:hover { background: var(--red-dark); transform: scale(1.12); }
.add-btn.added { background: #2e7d32; }

/* ── BG COLOURS FOR PLACEHOLDER ICONS ── */
.bg-diwali   { background: linear-gradient(135deg, #FDEBD0, #F5C6A0); }
.bg-wedding  { background: linear-gradient(135deg, #FCE4EC, #F8BBD9); }
.bg-navratri { background: linear-gradient(135deg, #F3E5F5, #CE93D8); }
.bg-pooja    { background: linear-gradient(135deg, #FFF8E1, #FFE082); }
.bg-modern   { background: linear-gradient(135deg, #E3F2FD, #90CAF9); }
.bg-xmas     { background: linear-gradient(135deg, #E8F5E9, #A5D6A7); }

/* ── PROMISE ── */
.promise-section {
  background: var(--white);
  margin: 0 40px 20px;
  border-radius: var(--radius);
  padding: 40px 36px;
  box-shadow: var(--shadow-sm);
}

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

.promise-left h2 {
  font-family: 'Nunito', sans-serif;
  font-size: 26px;
  font-weight: 900;
  color: var(--red);
  margin-bottom: 4px;
}
.promise-left > p {
  font-size: 13px;
  color: var(--text2);
  font-style: italic;
  margin-bottom: 28px;
}

.promise-feats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.promise-feat {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.feat-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--cream2);
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.feat-text strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}
.feat-text span {
  font-size: 11px;
  color: var(--text2);
  line-height: 1.6;
}

.promise-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.stat-card {
  background: var(--cream2);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
  transition: transform 0.2s;
}
.stat-card:hover { transform: translateY(-3px); }
.stat-card:nth-child(1) { background: var(--red); border-color: var(--red); }
.stat-card:nth-child(1) strong,
.stat-card:nth-child(1) span { color: white; }
.stat-card strong {
  display: block;
  font-family: 'Nunito', sans-serif;
  font-size: 36px;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  margin-bottom: 5px;
}
.stat-card span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text2);
}

/* ── FRANCHISE STRIP ── */
.franchise-strip {
  background: linear-gradient(120deg, var(--red-dark) 0%, var(--red) 100%);
  margin: 0 40px 20px;
  border-radius: var(--radius);
  padding: 30px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  overflow: hidden;
}
.franchise-strip::before {
  content: '🏪';
  position: absolute;
  right: 200px;
  font-size: 140px;
  opacity: 0.08;
  pointer-events: none;
  top: -20px;
}

.franchise-strip-left { position: relative; z-index: 1; }
.franchise-strip-left h3 {
  font-family: 'Nunito', sans-serif;
  font-size: 24px;
  font-weight: 900;
  color: #FFD9A0;
  margin-bottom: 8px;
}
.franchise-strip-left p {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  max-width: 500px;
  line-height: 1.7;
}

.franchise-strip-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

/* ── TESTIMONIALS ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.testimonial-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  transition: transform 0.25s, box-shadow 0.25s;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial-card:nth-child(2) {
  background: var(--red);
  border-color: var(--red);
}
.testimonial-card:nth-child(2) .t-text   { color: rgba(255,255,255,0.85); }
.testimonial-card:nth-child(2) .t-name   { color: white; }
.testimonial-card:nth-child(2) .t-tag    { color: #FFD9A0; }
.testimonial-card:nth-child(2) .stars    { color: #FFD9A0; }
.testimonial-card:nth-child(2) .t-avatar { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.2); }

.t-stars { margin-bottom: 12px; }
.t-text {
  font-size: 14px;
  font-style: italic;
  line-height: 1.7;
  color: var(--text2);
  margin-bottom: 18px;
}
.t-author { display: flex; align-items: center; gap: 12px; }
.t-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--cream2);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  border: 2px solid var(--border);
  flex-shrink: 0;
}
.t-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}
.t-name small { font-size: 11px; font-weight: 400; color: var(--text2); }
.t-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--red);
}

/* ── NEWSLETTER ── */
.newsletter {
  background: var(--cream2);
  margin: 0 40px 24px;
  border-radius: var(--radius);
  padding: 42px 36px;
  text-align: center;
  border: 1.5px solid var(--border);
}
.newsletter h2 {
  font-family: 'Nunito', sans-serif;
  font-size: 26px;
  font-weight: 900;
  color: var(--red);
  margin-bottom: 8px;
}
.newsletter > p { font-size: 13px; color: var(--text2); margin-bottom: 26px; }

.newsletter-form {
  display: flex;
  max-width: 460px;
  margin: 0 auto;
  border-radius: var(--radius-pill);
  overflow: hidden;
  border: 2px solid var(--red);
  background: white;
}
.newsletter-form input[type="email"] {
  flex: 1;
  padding: 13px 20px;
  border: none;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  outline: none;
  color: var(--text);
  background: transparent;
}
.newsletter-form input::placeholder { color: #BBA898; }
.newsletter-form button {
  background: var(--red);
  color: white;
  border: none;
  padding: 13px 26px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}
.newsletter-form button:hover { background: var(--red-dark); }

/* ── FOOTER ── */
.site-footer {
  background: var(--red-dark);
  color: rgba(255,255,255,0.7);
  padding: 52px 40px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 44px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo   { color: #FFD9A0; margin-bottom: 14px; }
.footer-brand .logo small { color: rgba(255,209,160,0.55); }
.footer-brand > p {
  font-size: 12px;
  line-height: 1.85;
  margin-bottom: 22px;
}

.social-row { display: flex; gap: 10px; }
.s-icon {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}
.s-icon:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.4); }

.footer-col h4 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #FFD9A0;
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 9px; }
.footer-col a {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-col a:hover { color: #FFD9A0; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  font-size: 11px;
  color: rgba(255,255,255,0.28);
  flex-wrap: wrap;
  gap: 10px;
}

/* ── BLOG / ARCHIVE ── */
.container { max-width: 1200px; margin: 0 auto; padding: 40px 40px; }

.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.post-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1.5px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.post-card__thumb img { width: 100%; height: 200px; object-fit: cover; }
.post-card__body { padding: 20px; }
.post-card__title { font-family: 'Nunito', sans-serif; font-size: 18px; font-weight: 800; margin-bottom: 8px; }
.post-card__title a { color: var(--text); }
.post-card__title a:hover { color: var(--red); }
.post-card__meta { font-size: 11px; color: var(--text2); margin-bottom: 10px; }

.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 30px; }
.pagination .page-numbers {
  padding: 8px 14px; border-radius: 8px;
  background: var(--cream2); color: var(--text);
  font-size: 13px; font-weight: 600; transition: all 0.2s;
}
.pagination .page-numbers.current,
.pagination .page-numbers:hover { background: var(--red); color: white; }

/* ── SINGLE POST ── */
.single-post__hero-img img { width: 100%; max-height: 420px; object-fit: cover; border-radius: var(--radius); margin-bottom: 24px; }
.single-post__meta { font-size: 12px; color: var(--text2); margin-bottom: 12px; }
.single-post__title { font-family: 'Nunito', sans-serif; font-size: 36px; font-weight: 900; margin-bottom: 28px; }
.single-post__content { font-size: 15px; line-height: 1.8; color: var(--text); }
.single-post__content p { margin-bottom: 18px; }
.single-post__content h2, .single-post__content h3 { font-family: 'Nunito', sans-serif; color: var(--red); margin: 30px 0 12px; }

/* ── PAGE CONTENT ── */
.page-header { margin-bottom: 30px; }
.page-title { font-family: 'Nunito', sans-serif; font-size: 36px; font-weight: 900; color: var(--red); }
.page-body { font-size: 15px; line-height: 1.8; }
.page-body p { margin-bottom: 16px; }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }
.r1 { transition-delay: 0.05s; }
.r2 { transition-delay: 0.12s; }
.r3 { transition-delay: 0.19s; }
.r4 { transition-delay: 0.26s; }

/* ── ARCHIVE PAGE ── */
.archive-header { margin-bottom: 32px; }
.archive-title { font-family: 'Nunito', sans-serif; font-size: 30px; font-weight: 900; color: var(--red); }
.archive-description { font-size: 13px; color: var(--text2); margin-top: 8px; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .hero { grid-template-columns: 200px 1fr 160px; padding: 0 30px; }
  .hero-title { font-size: 42px; }
  .products-row { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .navbar { padding: 12px 16px; gap: 10px; }
  .nav-search { display: none; }
  .cat-nav { padding: 0 16px; top: 60px; }

  .hero {
    grid-template-columns: 1fr;
    padding: 30px 20px;
    min-height: auto;
    text-align: center;
    gap: 20px;
  }
  .hero-product-main { width: 150px; height: 150px; font-size: 60px; margin: 0 auto; }
  .hero-center { align-items: center; }
  .hero-right-imgs { flex-direction: row; justify-content: center; }
  .hero-title { font-size: 36px; }

  .menu-section,
  .promise-section,
  .franchise-strip,
  .newsletter { margin: 14px 16px; }

  .section-wrap { padding: 10px 16px 24px; }

  .occasions-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .occ-card:first-child { grid-row: auto; }
  .occ-bg { min-height: 160px !important; }
  .occ-card:first-child .occ-bg { min-height: 160px !important; font-size: 60px; }

  .products-row { grid-template-columns: 1fr 1fr; gap: 12px; }

  .menu-top { flex-direction: column; }
  .menu-cats { gap: 8px; flex-wrap: nowrap; overflow-x: auto; padding-bottom: 6px; scrollbar-width: none; }
  .menu-cats::-webkit-scrollbar { display: none; }
  .menu-cat-icon { width: 60px; height: 60px; font-size: 24px; }

  .promise-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .site-footer { padding: 40px 16px 0; }

  .franchise-strip {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
  }
  .franchise-strip-right { align-items: flex-start; }

  .posts-grid { grid-template-columns: 1fr; }
  .container { padding: 30px 16px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 28px; }
  .products-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .menu-cat-icon { width: 52px; height: 52px; border-radius: 12px; font-size: 22px; }
  .occasions-grid { grid-template-columns: 1fr; }
}
