/* ============================================================
   BOWL MAMI — styles.css
   To edit colors, change the values in :root below
   ============================================================ */

:root {
  --green: #209f46;
  --green-light: #7dab8a;
  --green-pale: #e8f2ec;
  --cream: #f9f7f4;
  --off-white: #fdfdfd;
  --text: #1a1a1a;
  --text-muted: #6b7280;
  --white: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--off-white); color: var(--text); overflow-x: hidden; }

/* ── PROMO SPLASH ── */
#promo-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(15,30,20,0.75);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  animation: fadeIn 0.4s ease;
}
#promo-overlay.hidden { display: none; }

@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes popIn  { from { opacity:0; transform:scale(0.88) translateY(20px); } to { opacity:1; transform:scale(1) translateY(0); } }

.promo-card {
  background: linear-gradient(145deg, #fff 0%, #edf7f0 100%);
  border-radius: 28px; max-width: 480px; width: 100%;
  padding: 40px 36px 32px; text-align: center; position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,0.35);
  animation: popIn 0.45s 0.1s ease both;
  border: 2px solid rgba(74,124,89,0.15);
}
.promo-close {
  position: absolute; top: 16px; right: 16px;
  background: var(--green-pale); border: none; cursor: pointer;
  width: 32px; height: 32px; border-radius: 50%;
  font-size: 1rem; color: var(--green); line-height: 32px; text-align: center;
  font-weight: 700; transition: background 0.2s;
}
.promo-close:hover { background: var(--green); color: var(--white); }
.promo-badge {
  display: inline-block; background: var(--green); color: var(--white);
  font-size: 0.75rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  padding: 6px 18px; border-radius: 50px; margin-bottom: 20px;
}
.promo-emoji { font-size: 3.5rem; margin-bottom: 12px; display: block; }
.promo-card h2 {
  font-family: 'Playfair Display', serif; font-size: 1.9rem; font-weight: 900;
  line-height: 1.15; color: var(--text); margin-bottom: 12px; letter-spacing: -0.5px;
}
.promo-card h2 span { color: var(--green); }
.promo-card p { font-size: 1rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 8px; }
.promo-code {
  background: var(--green-pale); border: 2px dashed var(--green-light);
  border-radius: 12px; padding: 12px 20px; margin: 20px 0;
  font-size: 1.3rem; font-weight: 800; color: var(--green); letter-spacing: 3px;
}
.promo-code small { display: block; font-size: 0.75rem; font-weight: 400; letter-spacing: 0; color: var(--text-muted); margin-top: 2px; }
.promo-cta {
  display: inline-block; background: var(--green); color: var(--white);
  padding: 14px 36px; border-radius: 50px; font-weight: 700; font-size: 0.95rem;
  text-decoration: none; margin-bottom: 12px; width: 100%;
  transition: background 0.2s, transform 0.2s; box-shadow: 0 4px 16px rgba(74,124,89,0.3);
}
.promo-cta:hover { background: #209f46; transform: translateY(-2px); }
.promo-dismiss { font-size: 0.8rem; color: var(--text-muted); cursor: pointer; text-decoration: underline; }
.promo-dismiss:hover { color: var(--text); }
.promo-expires { font-size: 0.78rem; color: #ef4444; font-weight: 600; margin-top: 8px; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(253,253,253,0.9); backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(74,124,89,0.12);
  padding: 0 32px; height: 64px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo img { width: 44px; height: 44px; object-fit: contain; border-radius: 50%; }
.nav-logo-text { font-family: 'Playfair Display', serif; font-weight: 900; font-size: 1.2rem; color: var(--green); letter-spacing: -0.5px; line-height: 1; }
.nav-logo-text small { display: block; font-size: 0.6rem; font-weight: 400; color: var(--text-muted); letter-spacing: 1px; text-transform: uppercase; font-family: 'DM Sans', sans-serif; }
nav ul { list-style: none; display: flex; gap: 28px; align-items: center; }
nav ul a { text-decoration: none; font-size: 0.9rem; font-weight: 500; color: var(--text-muted); transition: color 0.2s; }
nav ul a:hover { color: var(--green); }
.nav-cta { background: var(--green) !important; color: var(--white) !important; padding: 10px 22px; border-radius: 50px; font-weight: 600 !important; transition: background 0.2s, transform 0.2s !important; }
.nav-cta:hover { background: #209f46 !important; transform: scale(1.04); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: var(--text); border-radius: 4px; display: block; transition: 0.3s; }
.mobile-menu {
  display: none; position: fixed; top: 64px; left: 0; right: 0;
  background: var(--white); border-bottom: 1px solid rgba(74,124,89,0.15);
  padding: 24px 32px; flex-direction: column; gap: 20px; z-index: 99;
  animation: slideDown 0.25s ease;
}
@keyframes slideDown { from { opacity:0; transform:translateY(-10px); } to { opacity:1; transform:translateY(0); } }
.mobile-menu a { text-decoration: none; font-size: 1rem; font-weight: 500; color: var(--text); }
.mobile-menu .nav-cta { display: inline-block; text-align: center; padding: 12px 28px; background: var(--green); color: var(--white); border-radius: 50px; font-weight: 600; }

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: flex;
  position: relative;
  overflow: hidden;
  background: #f7f3ed;
  padding: 0;
  text-align: left;
}
#hero::before { display: none; }

.photo-zone {
  position: absolute; right: 0; top: 0; bottom: 0;
  width: 42%; display: flex; gap: 5px; padding: 5px; z-index: 1;
}
.pcol { flex: 1; display: flex; flex-direction: column; gap: 5px; }
.pcol.c2 { margin-top: -80px; margin-bottom: -80px; }
.pcol.c3 { margin-top: 60px; margin-bottom: -60px; }
.pcol img {
  flex: 1; min-height: 0; width: 100%;
  object-fit: cover; border-radius: 10px;
  filter: brightness(0.85) saturate(1.1);
}

.photo-fade {
  position: absolute; inset: 0; pointer-events: none; z-index: 2;
  background: linear-gradient(to right,
    #f7f3ed 0%, #f7f3ed 42%,
    rgba(247,243,237,0.98) 50%,
    rgba(247,243,237,0.7) 62%,
    rgba(247,243,237,0.1) 78%,
    transparent 100%
  );
}

.halo {
  position: absolute; border-radius: 50%;
  pointer-events: none; z-index: 3; filter: blur(90px); opacity: 0.5;
}
.halo-pink   { width: 320px; height: 320px; background: rgba(239,154,177,0.4); bottom: -40px; right: 39%; }
.halo-green  { width: 260px; height: 260px; background: rgba(110,193,140,0.35); top: 15%; right: 42%; }
.halo-yellow { width: 200px; height: 200px; background: rgba(251,191,94,0.3); top: 5%; right: 36%; }

.hero-content {
  position: relative; z-index: 10;
  display: flex; flex-direction: column; justify-content: center;
  padding: 100px 40px 80px 68px;
  width: 52%; max-width: 560px;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: #209f46;
  border: 1.5px solid rgba(74,124,89,0.18);
  font-size: 0.68rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  padding: 7px 18px; border-radius: 50px; margin-bottom: 24px; width: fit-content;
  box-shadow: 0 2px 16px rgba(74,124,89,0.1);
  animation: fadeUp 0.5s 0.1s ease both;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 4.2vw, 4.4rem);
  font-weight: 900; line-height: 1.04; letter-spacing: -2.5px;
  color: #1a1a1a; margin-bottom: 22px; max-width: none;
  animation: fadeUp 0.5s 0.2s ease both;
}
.hero-title .accent, .hero-title em {
  color: #209f46; font-style: italic;
}

.hero-sub {
  font-size: 1rem; color: #6b7280; line-height: 1.8;
  max-width: 800px; margin-bottom: 30px; font-weight: 300; margin-top: 0;
  animation: fadeUp 0.5s 0.3s ease both;
}

.hero-cats {
  display: flex; gap: 9px; flex-wrap: wrap; margin-bottom: 28px;
  animation: fadeUp 0.5s 0.35s ease both;
}
.cat {
  display: inline-flex; align-items: center; gap: 6px;
  background: #fff; border: 1.5px solid rgba(74,124,89,0.15);
  border-radius: 50px; padding: 7px 14px;
  font-size: 0.78rem; font-weight: 600; color: #374151;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  cursor: pointer; transition: all 0.2s;
}
.cat:hover { border-color: #209f46; transform: translateY(-2px); box-shadow: 0 6px 16px rgba(74,124,89,0.15); }

.hero-btns {
  display: flex; gap: 14px; margin-bottom: 36px;
  animation: fadeUp 0.5s 0.4s ease both;
}
.btn-order {
  background: #209f46; color: #fff;
  padding: 15px 38px; border-radius: 50px;
  font-weight: 700; font-size: 0.95rem; text-decoration: none;
  box-shadow: 0 6px 28px rgba(74,124,89,0.38);
  transition: transform 0.2s, box-shadow 0.2s; display: inline-block;
}
.btn-order:hover { transform: translateY(-2px); box-shadow: 0 10px 36px rgba(74,124,89,0.44); }
.btn-menu {
  background: transparent; color: #209f46;
  padding: 14px 38px; border-radius: 50px;
  font-weight: 600; font-size: 0.95rem; text-decoration: none;
  border: 2px solid rgba(74,124,89,0.35);
  display: inline-block; transition: all 0.2s;
}
.btn-menu:hover { border-color: #209f46; background: rgba(74,124,89,0.05); }

.trust {
  display: flex; gap: 28px; padding-top: 26px;
  border-top: 1px solid rgba(74,124,89,0.12);
  animation: fadeUp 0.5s 0.45s ease both;
}
.trust-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 900; color: #209f46; line-height: 1;
}
.trust-lbl {
  font-size: 0.68rem; color: #9ca3af;
  text-transform: uppercase; letter-spacing: 1.5px; margin-top: 4px;
}

.scroll-hint {
  position: absolute; bottom: 28px; left: 68px; z-index: 10;
  display: flex; align-items: center; gap: 10px;
  font-size: 0.68rem; color: #b0bec5; letter-spacing: 2px; text-transform: uppercase;
}
.scroll-line { height: 1px; background: currentColor; animation: lineAnim 2s ease-in-out infinite alternate; }
@keyframes lineAnim { from { width: 20px; } to { width: 48px; } }

/* Hero responsive */
@media (max-width: 768px) {
  #hero { flex-direction: column; min-height: auto; padding-top: 80px; }
  .photo-zone { position: relative; width: 100%; height: 280px; order: -1; }
  .photo-fade { background: linear-gradient(to bottom, transparent 0%, rgba(247,243,237,0.3) 60%, #f7f3ed 100%); }
  .hero-content { width: 100%; max-width: 100%; padding: 24px 24px 60px; text-align: center; align-items: center; }
  .hero-cats { justify-content: center; }
  .hero-btns { justify-content: center; }
  .trust { justify-content: center; }
  .halo { display: none; }
  .scroll-hint { left: 50%; transform: translateX(-50%); }
}

@keyframes fadeUp { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }

/* ── SHARED SECTION STYLES ── */
section { padding: 96px 24px; }
.section-inner { max-width: 960px; margin: 0 auto; }
.section-label { font-size: 0.78rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--green); margin-bottom: 14px; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.9rem, 4.5vw, 2.8rem); font-weight: 700; line-height: 1.15; letter-spacing: -1px; margin-bottom: 24px; }

/* ── BUTTONS ── */
.btn-primary { background: var(--green); color: var(--white); padding: 16px 36px; border-radius: 50px; font-weight: 600; font-size: 1rem; text-decoration: none; transition: background 0.2s, transform 0.2s, box-shadow 0.2s; box-shadow: 0 4px 20px rgba(74,124,89,0.3); }
.btn-primary:hover { background: #209f46; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(74,124,89,0.35); }
.btn-secondary { background: transparent; color: var(--green); padding: 15px 36px; border-radius: 50px; font-weight: 600; font-size: 1rem; text-decoration: none; border: 2px solid var(--green); transition: all 0.2s; }
.btn-secondary:hover { background: var(--green-pale); transform: translateY(-2px); }
.btn-white { background: var(--white); color: var(--green); padding: 16px 40px; border-radius: 50px; font-weight: 700; font-size: 1rem; text-decoration: none; display: inline-block; transition: transform 0.2s, box-shadow 0.2s; box-shadow: 0 4px 20px rgba(0,0,0,0.15); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.2); }

/* ── OFFERINGS ── */
#offerings { background: var(--white); }
.offerings-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; margin-top: 48px; }
.offering-card { background: var(--cream); border-radius: 20px; overflow: hidden; border: 1px solid rgba(74,124,89,0.1); transition: transform 0.3s, box-shadow 0.3s; }
.offering-card:hover { transform: translateY(-6px); box-shadow: 0 12px 36px rgba(0,0,0,0.09); }
.offering-card img { width: 100%; height: 180px; object-fit: cover; }
.offering-card-body { padding: 20px 20px 24px; }
.offering-card-body h3 { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; margin-bottom: 6px; }
.offering-card-body p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.55; }

/* ── ABOUT ── */
#about { background: var(--green-pale); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-text p { font-size: 1rem; line-height: 1.8; color: #374151; margin-bottom: 14px; }
.about-values { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
.value-pill { display: flex; align-items: center; gap: 12px; background: var(--white); border-radius: 14px; padding: 14px 18px; box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
.value-pill .vi { font-size: 1.3rem; }
.value-pill strong { font-size: 0.92rem; display: block; margin-bottom: 1px; }
.value-pill span { font-size: 0.8rem; color: var(--text-muted); }
.about-img-wrap { border-radius: 24px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.12); position: relative; }
.about-img-wrap iframe { width: 100%; height: 100%; min-height: 300px; border-radius: inherit;}
.about-img-wrap img { width: 100%; display: block; height: 900px;}
.about-badge { position: absolute; bottom: -16px; left: -16px; background: var(--green); color: var(--white); border-radius: 18px; padding: 18px 22px; font-family: 'Playfair Display', serif; font-size: 0.95rem; font-weight: 700; box-shadow: 0 8px 24px rgba(74,124,89,0.4); text-align: center; }
.about-badge small { display: block; font-family: 'DM Sans', sans-serif; font-size: 0.72rem; font-weight: 400; margin-top: 4px; opacity: 0.85; }

/* ── MENU ── */
#menu { background: var(--off-white); }
.menu-tabs { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 36px; }
.tab-btn { padding: 10px 22px; border-radius: 50px; border: 2px solid rgba(74,124,89,0.25); background: transparent; font-family: 'DM Sans', sans-serif; font-size: 0.88rem; font-weight: 600; color: var(--text-muted); cursor: pointer; transition: all 0.2s; }
.tab-btn.active, .tab-btn:hover { background: var(--green); color: var(--white); border-color: var(--green); }
.menu-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 18px; }
.menu-item { background: var(--white); border-radius: 14px; padding: 20px 22px; border-left: 4px solid var(--green-light); transition: transform 0.2s, box-shadow 0.2s; }
.menu-item:hover { transform: translateX(4px); box-shadow: 0 6px 24px rgba(0,0,0,0.07); }
.menu-item h4 { font-family: 'Playfair Display', serif; font-size: 0.98rem; font-weight: 700; margin-bottom: 5px; }
.menu-item p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; }
.menu-item.has-img { padding: 0; overflow: hidden; border-left: none; border-top: 4px solid var(--green-light); }
.menu-item.has-img img { width: 100%; height: 165px; object-fit: cover; display: block; transition: transform 0.4s ease; }
.menu-item.has-img:hover img { transform: scale(1.04); }
.menu-item.has-img .mi-body { padding: 14px 18px 18px; border-left: 4px solid var(--green-light); }
.placeholder-label { display:inline-block; font-size:0.7rem; font-weight:700; letter-spacing:1px; text-transform:uppercase; color:var(--green); background:var(--green-pale); padding:3px 10px; border-radius:50px; margin-bottom:6px; }
.menu-tab-content { display: none; }
.menu-tab-content.active { display: block; }

/* ── ORDER / DELIVERY ── */
#order { background: var(--green); color: var(--white); text-align: center; }
#order .section-label { color: rgba(255,255,255,0.7); }
#order .section-title { color: var(--white); }
#order > .section-inner > p { font-size: 1rem; color: rgba(255,255,255,0.85); max-width: 520px; margin: 0 auto 44px; line-height: 1.7; }
.delivery-logos { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; margin-bottom: 36px; }
.delivery-badge { background: var(--white); border-radius: 16px; padding: 20px 28px; display: flex; align-items: center; gap: 14px; min-width: 180px; justify-content: center; transition: transform 0.2s, box-shadow 0.2s; text-decoration: none; box-shadow: 0 4px 16px rgba(0,0,0,0.1); }
.delivery-badge:hover { transform: translateY(-5px); box-shadow: 0 12px 32px rgba(0,0,0,0.18); }
.badge-ubereats .d-name { color: #000; }
.badge-grubhub .d-name { color: #FF8000; }
.badge-doordash .d-name { color: #ff3008; }
.badge-foodsby .d-name { color: #1a73e8; }
.d-logo { width: 48px; height: 48px; flex-shrink: 0; }
.d-name { font-size: 1rem; font-weight: 800; display: block; }
.d-sub { font-size: 0.75rem; color: #666; }
.badge-foodsby div { max-width: 120px;}
.foodsby-note { background: rgba(255,255,255,0.15); border-radius: 20px; padding: 26px 30px; max-width: 540px; margin: 0 auto 36px; border: 1px solid rgba(255,255,255,0.25); }
.foodsby-note h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; margin-bottom: 8px; }
.foodsby-note p { font-size: 0.88rem; opacity: 0.85; margin: 0; }

/* ── TESTIMONIALS ── */
#testimonials { background: var(--white); }
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; margin-top: 44px; }
.testi-card { background: var(--green-pale); border-radius: 20px; padding: 26px 22px; border: 1px solid rgba(74,124,89,0.12); }
.testi-card .stars { color: #f59e0b; font-size: 0.95rem; margin-bottom: 10px; letter-spacing: 2px; }
.testi-card p { font-size: 0.92rem; line-height: 1.7; color: #374151; font-style: italic; }
.testi-card cite { display: block; margin-top: 12px; font-size: 0.8rem; font-weight: 700; color: var(--green); font-style: normal; }

/* ── JOIN US ── */
#joinus { background: var(--cream); }
.join-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.join-text p { font-size: 1rem; line-height: 1.8; color: #374151; margin-bottom: 18px; }
.perks-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.perks-list li { display: flex; align-items: center; gap: 10px; font-size: 0.92rem; }
.perks-list li::before { content: '✦'; color: var(--green); font-size: 0.6rem; }
.join-form-card { background: var(--white); border-radius: 24px; padding: 36px 32px; box-shadow: 0 8px 40px rgba(0,0,0,0.09); }
.join-form-card h3 { font-family: 'Playfair Display', serif; font-size: 1.35rem; font-weight: 700; margin-bottom: 22px; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 600; margin-bottom: 5px; color: var(--text-muted); letter-spacing: 0.5px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 11px 14px; border-radius: 10px; border: 2px solid rgba(74,124,89,0.2); font-family: 'DM Sans', sans-serif; font-size: 0.92rem; background: var(--off-white); outline: none; transition: border-color 0.2s; color: var(--text); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--green); }
.form-group textarea { resize: vertical; min-height: 80px; }

/* ── LOCATION STRIP ── */
.location-strip { background: var(--green-pale); padding: 20px 24px; text-align: center; border-top: 1px solid rgba(74,124,89,0.15); }
.location-strip p { font-size: 0.88rem; color: var(--text-muted); }
.location-strip strong { color: var(--green); }

/* ── FOOTER ── */
footer { background: #131a14; color: rgba(255,255,255,0.65); padding: 56px 24px 28px; }
.footer-inner { max-width: 960px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 44px; margin-bottom: 40px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.footer-logo img { width: 42px; height: 42px; border-radius: 50%; object-fit: contain; }
.footer-logo span { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 900; color: var(--white); }
.footer-brand p { font-size: 0.85rem; line-height: 1.7; }
.footer-col h4 { color: var(--white); font-size: 0.8rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 14px; }
.footer-col a { display: block; color: rgba(255,255,255,0.55); text-decoration: none; font-size: 0.85rem; margin-bottom: 8px; transition: color 0.2s; }
.footer-col a:hover { color: var(--green-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 20px; display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem; flex-wrap: wrap; gap: 10px; }
.social-links { display: flex; gap: 14px; }
.social-links a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
.social-links a:hover { color: var(--green-light); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav ul { display: none; }
  .hamburger { display: flex; }
  .about-grid, .join-inner, .footer-top { grid-template-columns: 1fr; }
  .about-badge { left: 0; }
  #hero { padding: 100px 20px 60px; }
  .product-card { width: 145px; }
  .product-card img { height: 120px; }
}
/* ── Contacts ── */
.floating-contact {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

.floating-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s, box-shadow 0.2s;
}

.floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.floating-phone {
    background-color: #edad0c;
}

.floating-email {
    background-color: #1b4332;
}