/* ===== Supreme Meat / Kari Kadai — Site Styles ===== */

:root {
  --maroon-dark: #2e070f;
  --maroon: #4a0d18;
  --maroon-light: #6e1424;
  --gold: #c9a227;
  --gold-light: #e6c869;
  --gold-dark: #9c7c1c;
  --cream: #f8f1e2;
  --cream-dark: #efe3c9;
  --brown-dark: #1c1410;
  --text-dark: #241512;
  --text-muted: #6b584f;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(46, 7, 15, 0.12);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Poppins', 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.6;
}

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

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3, h4 { font-family: var(--font-display); margin: 0 0 .5em; color: var(--maroon-dark); }

a { color: inherit; text-decoration: none; }

ul { padding-left: 1.2em; }

/* ---- Topbar ---- */
.topbar {
  background: var(--maroon-dark);
  color: var(--cream-dark);
  font-size: 0.85rem;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  padding: 7px 20px;
}
.topbar-item a { color: var(--gold-light); }
.topbar-item a:hover { text-decoration: underline; }

/* ---- Header ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 2px solid var(--gold);
  box-shadow: var(--shadow);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.brand-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 50%;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--maroon-dark);
  letter-spacing: .3px;
}
.brand-tagline {
  font-size: .78rem;
  color: var(--gold-dark);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: 28px;
  font-weight: 500;
}
.nav a { position: relative; padding: 6px 0; }
.nav a:hover { color: var(--maroon); }
.nav a.nav-promo { color: var(--maroon); font-weight: 700; }
.nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width .2s ease;
}
.nav a:hover::after { width: 100%; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .92rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--maroon), var(--maroon-light));
  color: var(--cream);
  box-shadow: 0 8px 20px rgba(74,13,24,.3);
}
.btn-primary:hover { box-shadow: 0 10px 24px rgba(74,13,24,.4); }
.btn-outline {
  background: transparent;
  border-color: var(--maroon);
  color: var(--maroon-dark);
}
.btn-outline:hover { background: var(--maroon); color: var(--cream); }
.btn-whatsapp {
  background: #25D366;
  color: #fff;
  box-shadow: 0 8px 20px rgba(37,211,102,.35);
}
.btn-whatsapp:hover { background: #1ebe5a; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 26px;
  height: 3px;
  background: var(--maroon-dark);
  border-radius: 2px;
}

/* ---- Promo bar ---- */
.promo-bar {
  display: block;
  background: linear-gradient(90deg, var(--maroon-dark), var(--maroon) 60%, var(--maroon-dark));
  color: var(--cream);
  text-decoration: none;
  border-bottom: 1px solid rgba(201,162,39,.4);
}
.promo-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  padding: 11px 20px;
  text-align: center;
}
.promo-bar-tag {
  background: var(--gold);
  color: var(--maroon-dark);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: 999px;
  flex-shrink: 0;
}
.promo-bar-text {
  font-size: .92rem;
  font-weight: 500;
}
.promo-bar-cta {
  font-size: .88rem;
  font-weight: 700;
  color: var(--gold-light);
  flex-shrink: 0;
}
.promo-bar:hover .promo-bar-cta { text-decoration: underline; }

/* ---- Hero / slider ---- */
.hero {
  position: relative;
  min-height: 78vh;
  overflow: hidden;
  color: var(--cream);
}
.hero-slider .slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .9s ease;
  cursor: pointer;
}
.hero-slider .slide.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
  z-index: 2;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-overlay--brand {
  background: linear-gradient(100deg, rgba(20,4,8,.92) 25%, rgba(20,4,8,.68) 55%, rgba(20,4,8,.4) 100%);
}
.hero-overlay--delivery {
  background: linear-gradient(100deg, rgba(28,18,4,.92) 25%, rgba(92,68,10,.72) 55%, rgba(92,68,10,.38) 100%);
}
.hero-overlay--promo {
  background: linear-gradient(100deg, rgba(46,7,15,.94) 20%, rgba(122,20,36,.78) 55%, rgba(122,20,36,.42) 100%);
}
.hero-content { position: relative; z-index: 1; max-width: 640px; padding: 90px 20px; }
.slider-dots {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 10px;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}
.dot.is-active { background: var(--gold-light); transform: scale(1.35); }
.dot:hover { background: rgba(255,255,255,.7); }
.hero-eyebrow {
  color: var(--gold-light);
  letter-spacing: 2px;
  font-weight: 600;
  font-size: .82rem;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.hero h1 {
  color: var(--cream);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 18px;
}
.hero h1 span { color: var(--gold-light); }
.hero-sub {
  font-size: 1.05rem;
  color: var(--cream-dark);
  max-width: 520px;
  margin-bottom: 30px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero .btn-outline { border-color: var(--gold-light); color: var(--cream); }
.hero .btn-outline:hover { background: var(--gold-light); color: var(--maroon-dark); }

/* ---- Features strip ---- */
.features {
  background: var(--brown-dark);
  color: var(--cream-dark);
  padding: 26px 0;
  border-bottom: 3px solid var(--gold);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.feature { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.feature-icon {
  width: 50px; height: 50px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(201,162,39,.12);
  color: var(--gold-light);
  border: 1px solid rgba(201,162,39,.4);
}
.feature h3 { color: var(--cream); font-size: .95rem; font-family: var(--font-body); font-weight: 600; margin: 0; }

/* ---- Section generic ---- */
section { padding: 80px 0; }
.section-eyebrow {
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  font-size: .82rem;
  margin-bottom: 8px;
}
.section-sub { color: var(--text-muted); max-width: 620px; }
.center { text-align: center; margin-left: auto; margin-right: auto; }
h2.center, .section-sub.center { margin-left: auto; margin-right: auto; }
.products h2.center { margin-bottom: 10px; }

/* ---- About ---- */
.about { background: var(--cream); }
.about-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 60px;
  align-items: center;
}
.about-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 6px solid #fff;
}
.about-copy h2 { font-size: 2rem; margin-bottom: 18px; }
.about-copy .accent { color: var(--maroon); }
.about-points { margin: 20px 0 28px; color: var(--text-muted); }
.about-points li { margin-bottom: 8px; }
.about-cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---- Products ---- */
.products { background: var(--cream-dark); }
.product-group-title {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--maroon);
  font-size: 1.25rem;
  margin: 46px 0 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold);
}
.product-group-title svg { color: var(--gold-dark); flex-shrink: 0; }
.product-group-title:first-of-type { margin-top: 30px; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 20px;
}
.product-card {
  background: #fff;
  border: 1px solid rgba(74,13,24,.08);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: center;
  box-shadow: 0 4px 14px rgba(46,7,15,.06);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 28px rgba(46,7,15,.14);
  border-color: var(--gold);
}
.product-photo {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--cream-dark);
}
.product-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.product-photo.photo-pending {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed rgba(201,162,39,.55);
}
.product-photo.photo-pending::before {
  content: '🔪';
  display: block;
  font-size: 1.6rem;
  opacity: .55;
}
.product-photo.photo-pending::after {
  content: 'Photo coming soon';
  position: absolute;
  bottom: 14px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: .78rem;
  font-weight: 600;
  color: var(--text-muted);
}
.product-card-body {
  padding: 16px 18px 20px;
}
.product-card h4 {
  font-size: 1.02rem;
  margin-bottom: 6px;
  color: var(--maroon-dark);
}
.product-card p {
  font-size: .85rem;
  color: var(--text-muted);
  margin: 0;
}

/* ---- Why Us ---- */
.why-us { background: var(--maroon-dark); color: var(--cream-dark); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.why-copy h2 { color: var(--cream); font-size: 2rem; }
.why-copy .section-eyebrow { color: var(--gold-light); }
.why-copy p { color: var(--cream-dark); }
.why-badges { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.why-badge {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(201,162,39,.3);
  border-radius: var(--radius);
  padding: 18px;
}
.why-badge-icon {
  font-size: 1.4rem;
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(201,162,39,.15);
  border-radius: 50%;
  color: var(--gold-light);
  flex-shrink: 0;
}
.why-badge h4 { color: var(--cream); margin: 0 0 4px; font-size: .98rem; }
.why-badge p { margin: 0; font-size: .84rem; color: var(--cream-dark); opacity: .85; }

/* ---- Promotions page ---- */
.promo-hero {
  background:
    radial-gradient(ellipse at top, rgba(201,162,39,.18), transparent 60%),
    linear-gradient(160deg, var(--maroon-dark), var(--brown-dark));
  color: var(--cream);
  padding: 70px 0 56px;
  text-align: center;
}
.promo-hero-inner { max-width: 720px; margin: 0 auto; }
.promo-hero-eyebrow {
  color: var(--gold-light);
  font-weight: 600;
  font-size: .95rem;
  max-width: 520px;
  margin: 0 auto 18px;
}
.promo-hero-headline {
  color: var(--cream);
  font-size: clamp(2rem, 5vw, 3.1rem);
  line-height: 1.15;
  margin-bottom: 22px;
  text-wrap: balance;
}
.promo-hero-headline span { color: var(--gold-light); }
.promo-period {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(201,162,39,.45);
  border-radius: 999px;
  padding: 10px 22px;
  font-size: .95rem;
}
.promo-period-icon { font-size: 1.1rem; }

.promo-offer { background: var(--cream); padding-top: 56px; }
.promo-offer-card {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(74,13,24,.08);
}
.promo-offer-media {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--cream-dark);
  padding: 20px;
}
.promo-offer-media img {
  width: 45%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 12px;
  border: 3px solid #fff;
  box-shadow: 0 6px 16px rgba(46,7,15,.15);
}
.promo-offer-arrow {
  font-size: 1.6rem;
  color: var(--gold-dark);
  flex-shrink: 0;
}
.promo-offer-copy { padding: 36px 40px; display: flex; flex-direction: column; justify-content: center; }
.promo-offer-kicker {
  color: var(--gold-dark);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: .82rem;
  margin: 0 0 10px;
}
.promo-offer-deal {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  color: var(--maroon-dark);
  margin: 0 0 12px;
  line-height: 1.3;
}
.promo-offer-deal strong { color: var(--maroon); }
.promo-offer-note { color: var(--text-muted); font-size: .88rem; margin: 0 0 22px; }
.promo-offer-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.promo-badges {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin: 34px 0 22px;
}
.promo-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid rgba(74,13,24,.1);
  border-radius: 999px;
  padding: 9px 18px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--maroon-dark);
  box-shadow: 0 3px 10px rgba(46,7,15,.05);
}
.promo-delivery {
  text-align: center;
  color: var(--text-muted);
  font-size: .92rem;
  margin: 0 0 60px;
}

.promo-next { background: var(--cream-dark); padding: 50px 0; }
.promo-next-inner { max-width: 520px; margin: 0 auto; text-align: center; }
.promo-next-inner p { color: var(--text-muted); margin-bottom: 22px; }

/* ---- Order form modal ---- */
button.btn, button.whatsapp-float, button.order-modal-close {
  font-family: inherit;
  font-size: inherit;
  appearance: none;
  -webkit-appearance: none;
}
.order-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  visibility: hidden;
  opacity: 0;
  transition: opacity .2s ease, visibility .2s ease;
}
.order-modal.is-open { visibility: visible; opacity: 1; }
.order-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(28, 20, 16, .6);
  backdrop-filter: blur(2px);
}
.order-modal-panel {
  position: relative;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(20, 4, 8, .4);
  width: 100%;
  max-width: 560px;
  max-height: 88vh;
  overflow-y: auto;
  padding: 32px 30px 28px;
  transform: translateY(16px) scale(.98);
  transition: transform .2s ease;
}
.order-modal.is-open .order-modal-panel { transform: translateY(0) scale(1); }
.order-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: var(--cream-dark);
  color: var(--maroon-dark);
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
}
.order-modal-close:hover { background: var(--gold-light); }
.order-modal-panel h3 {
  font-size: 1.5rem;
  margin-bottom: 6px;
  padding-right: 30px;
}
.order-modal-sub { color: var(--text-muted); font-size: .9rem; margin: 0 0 22px; }

.form-row { margin-bottom: 18px; }
.form-row > label {
  display: block;
  font-weight: 600;
  font-size: .88rem;
  color: var(--maroon-dark);
  margin-bottom: 7px;
}
.form-row > label span { font-weight: 400; color: var(--text-muted); }
.form-row input[type="text"],
.form-row input[type="tel"],
.form-row textarea {
  width: 100%;
  border: 1px solid rgba(74,13,24,.18);
  border-radius: 10px;
  padding: 10px 14px;
  font-family: inherit;
  font-size: .95rem;
  color: var(--text-dark);
  background: var(--cream);
}
.form-row input[type="text"]:focus,
.form-row input[type="tel"]:focus,
.form-row textarea:focus,
.item-qty:focus {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
}
.form-row textarea { resize: vertical; }

.order-items-list {
  max-height: 260px;
  overflow-y: auto;
  border: 1px solid rgba(74,13,24,.12);
  border-radius: 10px;
  padding: 6px 14px;
  background: var(--cream);
}
.order-items-group {
  font-size: .76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--gold-dark);
  margin: 12px 0 4px;
  padding-top: 8px;
  border-top: 1px solid rgba(74,13,24,.08);
}
.order-items-group:first-child { margin-top: 4px; padding-top: 0; border-top: none; }
.order-item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 6px 0;
}
.order-item-label {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: .9rem;
  color: var(--text-dark);
  cursor: pointer;
}
.order-item-label input[type="checkbox"] {
  width: 17px;
  height: 17px;
  accent-color: var(--maroon);
  cursor: pointer;
  flex-shrink: 0;
}
.item-qty {
  width: 64px;
  border: 1px solid rgba(74,13,24,.18);
  border-radius: 8px;
  padding: 5px 8px;
  font-family: inherit;
  font-size: .88rem;
  text-align: center;
  background: #fff;
  color: var(--text-dark);
}
.item-qty:disabled { background: var(--cream-dark); color: var(--text-muted); opacity: .6; }

.order-form-error {
  color: #b3261e;
  background: #fdecea;
  border: 1px solid #f3c1bd;
  border-radius: 8px;
  padding: 9px 12px;
  font-size: .85rem;
  margin: 0 0 16px;
}
.order-submit { width: 100%; justify-content: center; margin-top: 4px; }

/* ---- WhatsApp choice modal ---- */
.choice-modal-panel {
  position: relative;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(20, 4, 8, .4);
  width: 100%;
  max-width: 400px;
  padding: 32px 28px 28px;
  transform: translateY(16px) scale(.98);
  transition: transform .2s ease;
}
.order-modal.is-open .choice-modal-panel { transform: translateY(0) scale(1); }
.choice-modal-panel h3 { font-size: 1.35rem; margin-bottom: 6px; padding-right: 26px; }
.choice-options { display: flex; flex-direction: column; gap: 12px; margin-top: 22px; }
.choice-option {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  text-align: left;
  background: var(--cream);
  border: 1px solid rgba(74,13,24,.14);
  border-radius: 12px;
  padding: 14px 16px;
  cursor: pointer;
  transition: border-color .15s ease, background .15s ease, transform .15s ease;
}
.choice-option:hover {
  border-color: var(--gold);
  background: var(--cream-dark);
  transform: translateY(-2px);
}
.choice-option-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(46,7,15,.08);
}
.choice-option-text { display: flex; flex-direction: column; gap: 2px; }
.choice-option-text strong { color: var(--maroon-dark); font-size: .98rem; }
.choice-option-text small { color: var(--text-muted); font-size: .8rem; }

@media (max-width: 520px) {
  .order-modal-panel { padding: 26px 20px 22px; }
}

/* ---- Contact ---- */
.contact { background: var(--cream); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 46px;
  margin-top: 40px;
  align-items: stretch;
}
.contact-info {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 34px;
  border: 1px solid rgba(74,13,24,.08);
}
.contact-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 22px;
}
.contact-icon {
  width: 42px; height: 42px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--cream-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem;
  color: var(--maroon);
  font-weight: 700;
}
.contact-row h4 { margin: 0 0 4px; font-size: 1rem; color: var(--maroon-dark); }
.contact-row p { margin: 0; color: var(--text-muted); font-size: .93rem; }
.contact-row a:hover { color: var(--maroon); text-decoration: underline; }
.contact-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 10px; }
.contact-map {
  min-height: 340px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(74,13,24,.08);
}

/* ---- Footer ---- */
.site-footer {
  background: var(--brown-dark);
  color: var(--cream-dark);
  padding: 40px 0 24px;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(201,162,39,.25);
}
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand img { width: 46px; height: 46px; border-radius: 50%; }
.footer-name { margin: 0; font-family: var(--font-display); font-weight: 700; color: var(--cream); }
.footer-tagline { margin: 0; font-size: .82rem; color: var(--gold-light); }
.footer-links { display: flex; gap: 22px; font-size: .9rem; }
.footer-links a:hover { color: var(--gold-light); }
.footer-copy { text-align: center; font-size: .8rem; color: rgba(248,241,226,.55); margin: 20px 0 0; }

/* ---- WhatsApp floating button ---- */
.whatsapp-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 58px; height: 58px;
  background: #25D366;
  color: #fff;
  border: none;
  padding: 0;
  cursor: pointer;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 22px rgba(0,0,0,.3);
  z-index: 200;
  transition: transform .2s ease;
}
.whatsapp-float:hover { transform: scale(1.08); }

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .about-grid, .why-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-media { max-width: 280px; margin: 0 auto; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .why-badges { grid-template-columns: 1fr; }
  .promo-offer-card { grid-template-columns: 1fr; }
  .promo-offer-copy { padding: 28px 26px; text-align: center; }
  .promo-offer-actions { justify-content: center; }
}

@media (max-width: 1024px) {
  .topbar-item--hide-sm { display: none; }
  .nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    gap: 0;
    border-bottom: 2px solid var(--gold);
    box-shadow: var(--shadow);
    max-height: 0;
    overflow: hidden;
    transition: max-height .25s ease;
  }
  .nav.open { max-height: 300px; }
  .nav a { padding: 14px 20px; border-top: 1px solid rgba(74,13,24,.08); }
  .header-inner .btn-whatsapp { display: none; }
  .nav-toggle { display: flex; }
  .hero { min-height: 90vh; text-align: left; }
  .hero-content { padding: 70px 20px; }
}

@media (max-width: 520px) {
  .features-grid { grid-template-columns: 1fr 1fr; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-name { font-size: 1.1rem; }
}
