/* ============================================================
   Siddho's Biryani House — Vivid Red, White & Golden Theme
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700;800&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  --red:       #dc2626;
  --red-dk:    #991b1b;
  --red-vivid: #ef4444;
  --gold:      #d4af37;
  --gold-vivid:#f59e0b;
  --gold-dk:   #b45309;
  --bg:        #fffdfa;
  --bg-card:   #ffffff;
  --bg-subtle: #fef2f2;
  --text:      #1c1917;
  --text-muted:#78716c;
  --border:    #fecaca;
  --border-gold:rgba(212, 175, 55, 0.4);
  --shadow-sm: 0 4px 14px rgba(220, 38, 38, 0.08);
  --shadow:    0 14px 36px rgba(153, 27, 27, 0.12);
  --shadow-lg: 0 24px 50px rgba(153, 27, 27, 0.18);
  --r:         18px;
  --r-sm:      12px;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }

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

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.text-c { text-align: center; }

/* ── Utility Tag ── */
.tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--red-dk);
  background: linear-gradient(135deg, #fef2f2, #fffbeb);
  border: 1px solid var(--gold);
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 14px;
  box-shadow: var(--shadow-sm);
}

/* ── Toast Notification ── */
.toast {
  position: fixed; bottom: 32px; left: 50%; transform: translateX(-50%) translateY(150px);
  background: linear-gradient(135deg, var(--red-dk), var(--red));
  color: #ffffff; padding: 14px 28px; border-radius: 50px;
  display: flex; align-items: center; gap: 10px;
  font-weight: 600; font-size: 0.95rem;
  z-index: 9999; transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
  box-shadow: 0 12px 32px rgba(220, 38, 38, 0.35); border: 2px solid var(--gold);
  width: max-content; max-width: 90vw; text-align: center;
}
.toast.show { transform: translateX(-50%) translateY(0); }
.toast i { color: var(--gold); font-size: 1.2rem; }

/* ── Cart Overlay ── */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(28, 25, 23, 0.55); backdrop-filter: blur(4px);
  z-index: 1100; opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.cart-overlay.open { opacity: 1; pointer-events: auto; }

/* ── Cart Sidebar ── */
.cart-sidebar {
  position: fixed; top: 0; right: 0; width: 420px; max-width: 100vw;
  height: 100vh; background: var(--bg-card);
  border-left: 2px solid var(--gold);
  z-index: 1200; display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
  box-shadow: -20px 0 60px rgba(153, 27, 27, 0.25);
}
.cart-sidebar.open { transform: translateX(0); }

.cart-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 26px; border-bottom: 2px solid #fecaca;
  background: linear-gradient(135deg, var(--red-dk), var(--red));
  color: #ffffff;
}
.cart-header h3 { font-family: 'Cinzel', serif; font-size: 1.25rem; color: #ffffff; display: flex; align-items: center; gap: 10px; font-weight: 700; }
.cart-header h3 i { color: var(--gold); }
.cart-close { background: none; border: none; color: #fecaca; font-size: 1.4rem; cursor: pointer; transition: color 0.2s; }
.cart-close:hover { color: var(--gold); }

.cart-items { flex: 1; overflow-y: auto; padding: 20px; background: #fffdfa; }

.cart-empty { display: flex; flex-direction: column; align-items: center; justify-content: center; height: 260px; gap: 14px; color: var(--text-muted); }
.cart-empty i { font-size: 3.5rem; color: #fca5a5; }
.cart-empty p { text-align: center; font-size: 0.95rem; font-weight: 500; }

.cart-item {
  display: flex; align-items: center; gap: 14px;
  padding: 14px; border-radius: var(--r-sm);
  background: #ffffff; border: 1px solid #fecaca;
  margin-bottom: 12px; box-shadow: var(--shadow-sm); transition: border-color 0.2s;
}
.cart-item:hover { border-color: var(--red); }
.ci-img { width: 68px; height: 68px; border-radius: 10px; overflow: hidden; flex-shrink: 0; border: 1px solid var(--gold); }
.ci-img img { width: 100%; height: 100%; object-fit: cover; }
.ci-info { flex: 1; min-width: 0; }
.ci-info strong { display: block; font-size: 0.95rem; color: var(--text); font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ci-info span { font-size: 0.88rem; color: var(--red-dk); font-weight: 700; font-family: 'Cinzel', serif; }
.ci-controls { display: flex; align-items: center; gap: 8px; }
.ci-btn { width: 30px; height: 30px; border-radius: 8px; border: 1px solid var(--border); background: #fef2f2; color: var(--red-dk); cursor: pointer; font-size: 0.9rem; display: flex; align-items: center; justify-content: center; transition: all 0.2s; font-weight: 700; }
.ci-btn:hover { background: var(--red); color: #ffffff; border-color: var(--red); }
.ci-qty { font-size: 0.95rem; font-weight: 700; color: var(--text); min-width: 24px; text-align: center; }

.cart-footer { border-top: 2px solid #fecaca; padding: 22px 24px; background: #ffffff; }
.cart-subtotal { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; font-size: 1.05rem; font-weight: 600; }
.cart-subtotal strong { font-size: 1.6rem; color: var(--red-dk); font-family: 'Cinzel', serif; font-weight: 800; }

.cart-fields { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }
.cart-fields input {
  padding: 12px 14px; background: #fffdfa; border: 1px solid var(--border);
  border-radius: var(--r-sm); color: var(--text); font-family: 'Poppins', sans-serif; font-size: 0.9rem;
  outline: none; transition: all 0.2s;
}
.cart-fields input:focus { border-color: var(--red); background: #ffffff; box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1); }
.cart-fields input::placeholder { color: var(--text-muted); }

.btn-place-order {
  width: 100%; padding: 15px; background: linear-gradient(135deg, #16a34a, #15803d); color: #fff;
  border: 2px solid #22c55e; border-radius: var(--r-sm); font-size: 1.02rem; font-weight: 700;
  cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: all 0.3s; box-shadow: 0 8px 24px rgba(22, 163, 74, 0.3);
}
.btn-place-order:hover { background: linear-gradient(135deg, #15803d, #146c43); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(22, 163, 74, 0.4); }

/* ── Navbar ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255, 255, 255, 0.94); backdrop-filter: blur(16px);
  border-bottom: 2px solid var(--border);
  padding: 14px 0; transition: all 0.3s;
}
.navbar.scrolled { box-shadow: 0 8px 30px rgba(153, 27, 27, 0.1); padding: 10px 0; }

.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}

.brand {
  display: flex; align-items: center; gap: 10px; text-decoration: none;
  font-family: 'Cinzel', serif; font-size: 1.4rem; color: var(--red-dk); font-weight: 700;
}
.brand i { color: var(--gold-dk); font-size: 1.5rem; }
.brand em { color: var(--gold-dk); font-style: normal; font-weight: 800; }

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { color: var(--text); text-decoration: none; font-size: 0.95rem; font-weight: 600; transition: color 0.2s; }
.nav-links a:hover { color: var(--red); }

.nav-actions { display: flex; align-items: center; gap: 14px; }

.cart-toggle-btn {
  position: relative; background: linear-gradient(135deg, var(--red-dk), var(--red));
  border: 1px solid var(--gold); color: #ffffff; padding: 10px 18px; border-radius: 50px;
  cursor: pointer; font-size: 1rem; font-weight: 600; display: flex; align-items: center; gap: 10px;
  transition: all 0.25s; box-shadow: var(--shadow-sm);
}
.cart-toggle-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(220, 38, 38, 0.3); }

.cart-badge {
  background: var(--gold-vivid); color: #1c1917;
  min-width: 22px; height: 22px; border-radius: 50%; font-size: 0.75rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center; border: 2px solid #ffffff;
}

.hamburger { display: none; background: none; border: none; color: var(--red-dk); font-size: 1.4rem; cursor: pointer; }

/* ── Hero Section (Vivid Red, White & Golden) ── */
.hero {
  min-height: 94vh; position: relative;
  display: flex; align-items: center; justify-content: space-between;
  overflow: hidden; padding: 130px 24px 70px; max-width: 1200px; margin: 0 auto; gap: 50px;
}

.hero-bg {
  position: fixed; inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 10% 80%, rgba(220, 38, 38, 0.08) 0%, transparent 50%),
    linear-gradient(180deg, #fffdfa 0%, #fff7ed 100%);
  z-index: -1; pointer-events: none;
}

.hero-content { position: relative; z-index: 1; flex: 1; max-width: 580px; }

.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fef2f2; border: 1px solid var(--gold);
  color: var(--red-dk); padding: 8px 20px; border-radius: 50px;
  font-size: 0.85rem; font-weight: 700; margin-bottom: 22px; box-shadow: var(--shadow-sm);
}
.hero-tag i { color: var(--gold-dk); }

.hero-content h1 {
  font-family: 'Cinzel', serif; font-size: 3.6rem; line-height: 1.15;
  color: var(--text); margin-bottom: 20px; font-weight: 800;
}
.hero-content h1 span { color: var(--red); display: block; text-shadow: 0 2px 12px rgba(220, 38, 38, 0.15); }
.hero-content h1 em { font-style: normal; color: var(--gold-dk); }

.hero-content p { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 34px; line-height: 1.7; }

.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 44px; }

.btn-gold {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--gold-dk), var(--gold-vivid));
  color: #ffffff; padding: 15px 34px; border-radius: 50px;
  font-weight: 700; font-size: 1rem; text-decoration: none;
  border: 2px solid #fef08a;
  box-shadow: 0 10px 26px rgba(180, 83, 9, 0.3);
  transition: all 0.3s;
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(180, 83, 9, 0.45); }

.btn-red {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--red-dk), var(--red));
  color: #ffffff; padding: 15px 34px; border-radius: 50px;
  font-weight: 700; font-size: 1rem; text-decoration: none;
  border: 2px solid #fecaca;
  box-shadow: 0 10px 26px rgba(220, 38, 38, 0.3);
  transition: all 0.3s;
}
.btn-red:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(220, 38, 38, 0.45); }

.hero-stats { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; padding-top: 24px; border-top: 2px solid var(--border); }
.hs { text-align: left; }
.hs strong { display: block; font-size: 1.6rem; font-family: 'Cinzel', serif; color: var(--red-dk); font-weight: 800; }
.hs small { font-size: 0.8rem; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }
.hs-div { width: 2px; height: 38px; background: var(--border); }

.hero-visual { flex: 0 0 480px; position: relative; display: flex; align-items: center; justify-content: center; }
.hero-img-card {
  position: relative; width: 100%; border-radius: 28px; overflow: hidden;
  box-shadow: var(--shadow-lg); border: 8px solid #ffffff;
  background: #ffffff;
}
.hero-img-card img { width: 100%; height: 440px; object-fit: cover; display: block; transition: transform 0.6s ease; }
.hero-img-card:hover img { transform: scale(1.06); }

.hero-float-badge {
  position: absolute; bottom: 24px; left: -20px;
  background: #ffffff; border: 2px solid var(--gold);
  padding: 14px 22px; border-radius: var(--r);
  box-shadow: 0 14px 36px rgba(153, 27, 27, 0.2);
  display: flex; align-items: center; gap: 14px; z-index: 5;
}
.float-icon { width: 46px; height: 46px; border-radius: 12px; background: var(--red-dk); color: var(--gold); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; font-weight: 700; }
.float-text strong { display: block; font-size: 0.95rem; color: var(--text); font-weight: 700; }
.float-text small { color: var(--red-dk); font-size: 0.82rem; font-weight: 600; }

/* ── Menu Section ── */
.menu-section { padding: 90px 0; background: #ffffff; border-top: 1px solid var(--border); }

.section-head { text-align: center; margin-bottom: 46px; }
.section-head h2 { font-family: 'Cinzel', serif; font-size: 2.6rem; margin-bottom: 12px; color: var(--text); font-weight: 800; }
.section-head h2 span { color: var(--red); }
.section-head p { color: var(--text-muted); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }

/* Category Tabs */
.cat-tabs { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 44px; }
.cat-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 24px; border-radius: 50px; border: 2px solid #fecaca;
  background: #fffdfa; color: var(--text-muted);
  font-family: 'Poppins', sans-serif; font-size: 0.9rem; font-weight: 600;
  cursor: pointer; transition: all 0.3s;
}
.cat-btn:hover { color: var(--red-dk); border-color: var(--red); background: #ffffff; }
.cat-btn.active {
  background: linear-gradient(135deg, var(--red-dk), var(--red));
  color: #ffffff; border-color: transparent; font-weight: 700;
  box-shadow: 0 6px 18px rgba(220, 38, 38, 0.3);
}

/* Menu Grid (Real Images) */
.menu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.menu-card {
  background: #ffffff; border: 2px solid var(--border); border-radius: var(--r);
  overflow: hidden; display: flex; flex-direction: column;
  transition: all 0.35s cubic-bezier(0.16,1,0.3,1);
  box-shadow: var(--shadow); position: relative;
}
.menu-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); border-color: var(--gold); }

.menu-img {
  height: 240px; position: relative; overflow: hidden; background: #fffdfa; border-bottom: 2px solid var(--border);
}
.menu-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s cubic-bezier(0.16,1,0.3,1); }
.menu-card:hover .menu-img img { transform: scale(1.08); }

.veg-badge, .nonveg-badge {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  width: 22px; height: 22px; border-radius: 4px; border: 2px solid;
  display: flex; align-items: center; justify-content: center;
  background: #ffffff; box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.veg-badge { border-color: #16a34a; }
.veg-badge::before { content: ''; width: 10px; height: 10px; background: #16a34a; border-radius: 50%; }
.nonveg-badge { border-color: #dc2626; }
.nonveg-badge::before { content: ''; width: 10px; height: 10px; background: #dc2626; border-radius: 50%; }

.cat-label-pill {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: rgba(153, 27, 27, 0.9); color: var(--gold-vivid);
  font-size: 0.72rem; font-weight: 700; padding: 4px 12px;
  border-radius: 50px; border: 1px solid var(--gold); text-transform: uppercase;
}

.menu-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.menu-body h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; color: var(--text); font-family: 'Cinzel', serif; line-height: 1.35; }
.menu-body p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 18px; flex: 1; line-height: 1.6; }

.menu-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 16px; border-top: 1px solid var(--border); }
.price { font-family: 'Cinzel', serif; font-size: 1.45rem; color: var(--red-dk); font-weight: 800; }

.add-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--red-dk), var(--red));
  color: #ffffff; border: 2px solid #fecaca; padding: 10px 20px; border-radius: 50px;
  font-family: 'Poppins', sans-serif; font-size: 0.9rem; font-weight: 700;
  cursor: pointer; transition: all 0.25s;
  box-shadow: 0 6px 16px rgba(220, 38, 38, 0.25);
}
.add-btn:hover { transform: scale(1.05); box-shadow: 0 8px 20px rgba(220, 38, 38, 0.4); border-color: var(--gold); }
.add-btn.added { background: linear-gradient(135deg, #15803d, #16a34a); box-shadow: 0 6px 16px rgba(22, 163, 74, 0.3); border-color: #86efac; }

/* ── About Section ── */
.about-section { padding: 90px 0; background: #fffdfa; border-top: 1px solid var(--border); }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }

.about-visual { position: relative; }
.about-art-card {
  width: 100%; border-radius: 28px; overflow: hidden;
  box-shadow: var(--shadow-lg); border: 8px solid #ffffff;
}
.about-art-card img { width: 100%; height: 380px; object-fit: cover; display: block; }

.about-badge-float {
  position: absolute; bottom: 20px; right: -20px;
  background: linear-gradient(135deg, var(--gold-dk), var(--gold-vivid));
  color: #ffffff; padding: 18px 24px; border-radius: var(--r);
  text-align: center; font-size: 0.88rem; font-weight: 700;
  box-shadow: 0 14px 32px rgba(180, 83, 9, 0.35);
  border: 2px solid #fef08a;
}
.about-badge-float strong { display: block; font-size: 1.8rem; font-family: 'Cinzel', serif; }

.about-text h2 { font-family: 'Cinzel', serif; font-size: 2.3rem; margin-bottom: 16px; font-weight: 800; color: var(--text); }
.about-text h2 span { color: var(--red); }
.about-text p { color: var(--text-muted); margin-bottom: 16px; font-size: 1rem; line-height: 1.7; }

.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 26px; }
.af {
  display: flex; align-items: center; gap: 12px;
  background: #ffffff; border: 2px solid var(--border);
  padding: 12px 16px; border-radius: var(--r-sm); font-size: 0.9rem;
  color: var(--text); transition: all 0.25s; font-weight: 600;
}
.af:hover { border-color: var(--gold); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.af i { color: var(--red-dk); font-size: 1.1rem; width: 20px; }

/* ── Contact Section ── */
.contact-section { padding: 90px 0; background: #ffffff; border-top: 1px solid var(--border); }
.contact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 44px; }
.c-card {
  display: flex; align-items: center; gap: 16px;
  background: #fffdfa; border: 2px solid var(--border);
  padding: 22px; border-radius: var(--r); text-decoration: none; color: var(--text);
  transition: all 0.25s; box-shadow: var(--shadow-sm);
}
.c-card:hover { transform: translateY(-6px); border-color: var(--gold); background: #ffffff; box-shadow: var(--shadow); }
.c-card i { font-size: 1.8rem; color: var(--red-dk); flex-shrink: 0; }
.c-card strong { display: block; font-size: 0.95rem; margin-bottom: 2px; font-weight: 700; }
.c-card small { font-size: 0.85rem; color: var(--text-muted); }
.wa-c i { color: #25d366; }

/* ── Footer ── */
.footer { background: var(--red-dk); border-top: 2px solid var(--gold); padding: 36px 0; color: #ffffff; }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center; }
.footer-brand { display: flex; align-items: center; gap: 10px; font-family: 'Cinzel', serif; font-size: 1.3rem; color: #ffffff; font-weight: 700; }
.footer-brand i { color: var(--gold); }
.footer p { font-size: 0.88rem; color: #fecaca; }
.footer a { color: var(--gold-vivid); text-decoration: underline; font-weight: 600; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-inner { padding: 0 16px; gap: 10px; }
  .brand { font-size: 1.2rem; gap: 6px; }
  .brand i { font-size: 1.3rem; }
  .nav-actions { gap: 10px; }
  
  .cart-toggle-btn { padding: 8px 12px; font-size: 0; gap: 6px; }
  .cart-toggle-btn i { font-size: 1.1rem; }
  .cart-badge { font-size: 0.75rem; width: 20px; height: 20px; min-width: 20px; border-width: 1px; }
  
  .nav-links { 
    display: none; 
    position: absolute; 
    top: 100%; 
    left: 0; 
    right: 0; 
    background: #ffffff; 
    padding: 18px 24px; 
    flex-direction: column; 
    box-shadow: 0 12px 30px rgba(153,27,27,0.15); 
    border-bottom: 2px solid var(--border); 
  }
  .nav-links.active { display: flex; }
  
  .hamburger { display: block; padding: 4px; }
  
  .hero { flex-direction: column; padding-top: 100px; gap: 30px; text-align: center; }
  .hero-content h1 { font-size: 2.3rem; }
  .hero-content p { font-size: 1rem; margin-bottom: 24px; }
  .hero-btns { flex-direction: column; gap: 12px; margin-bottom: 30px; }
  .btn-gold, .btn-red { width: 100%; justify-content: center; }
  .hero-stats { justify-content: center; gap: 16px; }
  .hs strong { font-size: 1.3rem; }
  
  .hero-visual { flex: auto; width: 100%; }
  .hero-img-card img { height: 320px; }
  .hero-float-badge { left: 10px; bottom: 10px; padding: 10px 16px; gap: 10px; }
  .float-icon { width: 36px; height: 36px; font-size: 1.1rem; }
  .float-text strong { font-size: 0.85rem; }
  .float-text small { font-size: 0.75rem; }
  
  .section-head h2 { font-size: 2rem; }
  .cat-tabs { gap: 8px; margin-bottom: 30px; }
  .cat-btn { padding: 8px 16px; font-size: 0.85rem; }
  
  .menu-grid { grid-template-columns: 1fr; }
  .menu-img { height: 200px; }
  
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-art-card img { height: 300px; }
  .about-badge-float { right: 10px; bottom: 10px; padding: 12px 18px; }
  .about-text h2 { font-size: 1.8rem; }
  
  .contact-grid { grid-template-columns: 1fr; gap: 16px; }
  .about-features { grid-template-columns: 1fr; }
  
  .cart-sidebar { width: 100%; }
}

@media (max-width: 480px) {
  .hero-stats { flex-direction: column; align-items: center; }
  .hs-div { display: none; }
  .hs { text-align: center; }
}
