/* ===== RAJESH JEWELLERY MART - Global Stylesheet ===== */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,400&family=Nunito+Sans:wght@300;400;600;700&display=swap');

:root {
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-dark: #9B7D36;
  --maroon: #8B0000;
  --maroon-light: #A52020;
  --cream: #FDF6E8;
  --cream-dark: #F5E9CC;
  --ivory: #FFFDF5;
  --dark: #1A0A00;
  --text-dark: #2D1A00;
  --text-med: #5C3D1E;
  --text-light: #8C6B3E;
  --white: #FFFFFF;
  --border: rgba(201,168,76,0.3);
  --shadow-gold: 0 4px 20px rgba(201,168,76,0.25);
  --shadow-soft: 0 8px 40px rgba(0,0,0,0.08);
  --radius: 12px;
  --radius-lg: 20px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito Sans', sans-serif;
  background-color: #ffffff;
  color: var(--text-dark);
  line-height: 1.7;
}

h1, h2, h3, h4 {
  font-family: 'Cinzel', serif;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s;
}

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

/* ======= TOPBAR ======= */
.topbar {
  background: var(--maroon);
  color: var(--gold-light);
  text-align: center;
  padding: 8px 20px;
  font-size: 0.8rem;
  font-family: 'Nunito Sans', sans-serif;
  letter-spacing: 0.4px;
}
.topbar a { color: var(--gold-light); }
.topbar a:hover { color: #fff; }

/* ======= HEADER / NAV ======= */
header {
  background: var(--dark);
  border-bottom: 2px solid var(--gold-dark);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-area img {
  height: 60px;
  width: 60px;
  object-fit: contain;
  border-radius: 50%;
  border: 2px solid var(--gold);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-text .brand-name {
  font-family: 'Cinzel', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1px;
}

.logo-text .brand-sub {
  font-size: 0.68rem;
  color: var(--gold-light);
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.8;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 6px;
  align-items: center;
}

nav ul li a {
  color: var(--cream);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 6px;
  letter-spacing: 0.5px;
  transition: all 0.3s;
  white-space: nowrap;
}

nav ul li a:hover,
nav ul li a.active {
  color: var(--gold);
  background: rgba(201,168,76,0.12);
}

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
  color: var(--dark) !important;
  border-radius: 8px !important;
  font-weight: 700 !important;
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ======= SECTION TITLE ======= */
.section-title {
  text-align: center;
  margin-bottom: 14px;
}
.section-title h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--dark);
  font-weight: 700;
  letter-spacing: 1px;
}
.section-title .subtitle {
  color: var(--text-light);
  font-size: 1rem;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  margin-top: 6px;
}
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 14px 0 40px;
}
.divider::before, .divider::after {
  content: '';
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold));
}
.divider::after {
  background: linear-gradient(to left, transparent, var(--gold));
}
.divider .jewel {
  font-size: 1.1rem;
  color: var(--gold);
}

/* ======= HERO SECTION ======= */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #1A0A00 0%, #3B1A06 40%, #5C2D0E 70%, #1A0A00 100%);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(201,168,76,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(139,0,0,0.15) 0%, transparent 40%),
    radial-gradient(circle at 60% 80%, rgba(201,168,76,0.06) 0%, transparent 35%);
}

.hero-mandala {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  opacity: 0.05;
  background: radial-gradient(circle, var(--gold) 1px, transparent 1px);
  background-size: 20px 20px;
  border-radius: 50%;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px 24px;
  max-width: 800px;
}

.hero-badge {
  display: inline-block;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold-light);
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 50px;
  margin-bottom: 24px;
  font-family: 'Nunito Sans', sans-serif;
}

.hero-content h1 {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  color: var(--gold);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 2px;
  text-shadow: 0 0 40px rgba(201,168,76,0.3);
  margin-bottom: 10px;
}

.hero-content .hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  color: var(--cream);
  font-style: italic;
  margin-bottom: 20px;
  opacity: 0.9;
}

.hero-content p {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ======= BUTTONS ======= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 8px;
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  border: none;
  transition: all 0.3s;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  color: var(--dark);
  box-shadow: 0 4px 20px rgba(201,168,76,0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.5);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-outline:hover {
  background: rgba(201,168,76,0.1);
  transform: translateY(-2px);
}

/* ======= STATS BAR ======= */
.stats-bar {
  background: var(--maroon);
  padding: 30px 24px;
}
.stats-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stat-item .num {
  font-family: 'Cinzel', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
}
.stat-item .label {
  font-size: 0.8rem;
  color: var(--cream);
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.85;
}

/* ======= CATEGORY CARDS ======= */
.categories {
  padding: 80px 24px;
  max-width: 1280px;
  margin: 0 auto;
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

.cat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.35s;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.cat-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
  transform: scaleX(0);
  transition: transform 0.3s;
}

.cat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
  border-color: var(--gold);
}
.cat-card:hover::before { transform: scaleX(1); }

.cat-icon {
  font-size: 2.6rem;
  margin-bottom: 14px;
}
.cat-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 0.5px;
}
.cat-card p {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 6px;
}

/* ======= PRODUCT CARDS ======= */
.section-padded {
  padding: 80px 24px;
  max-width: 1280px;
  margin: 0 auto;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  transition: all 0.35s;
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 50px rgba(201,168,76,0.2);
}

.product-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--cream), var(--cream-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  position: relative;
  overflow: hidden;
}

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--maroon);
  color: #fff;
  font-size: 0.7rem;
  padding: 4px 10px;
  border-radius: 50px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.product-info {
  padding: 18px 20px 22px;
}

.product-info .category-tag {
  font-size: 0.72rem;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  margin-bottom: 6px;
}

.product-info h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.3;
}

.product-info p {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 14px;
  line-height: 1.6;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.price {
  font-family: 'Cinzel', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--maroon);
}

.price .old {
  font-size: 0.78rem;
  color: var(--text-light);
  text-decoration: line-through;
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 400;
  display: block;
  margin-top: -4px;
}

.btn-enquire {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: var(--dark);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: 7px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Cinzel', serif;
  letter-spacing: 0.5px;
}
.btn-enquire:hover {
  transform: scale(1.04);
  box-shadow: var(--shadow-gold);
}

/* ======= BANNER SECTION ======= */
.promo-banner {
  background: linear-gradient(135deg, var(--maroon) 0%, #5C0000 50%, var(--maroon-light) 100%);
  padding: 70px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.promo-banner::before {
  content: '◆';
  position: absolute;
  font-size: 300px;
  color: rgba(255,255,255,0.03);
  top: -60px;
  left: -40px;
}
.promo-banner::after {
  content: '◆';
  position: absolute;
  font-size: 200px;
  color: rgba(255,255,255,0.03);
  bottom: -30px;
  right: 5%;
}
.promo-banner h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--gold);
  margin-bottom: 14px;
}
.promo-banner p {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 30px;
}

/* ======= ABOUT SNIPPET ======= */
.about-section {
  padding: 80px 24px;
  background: var(--cream);
}
.about-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-visual {
  background: linear-gradient(135deg, var(--dark), #3B1A06);
  border-radius: var(--radius-lg);
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8rem;
  position: relative;
  overflow: hidden;
  border: 2px solid var(--gold-dark);
  box-shadow: var(--shadow-gold);
}
.about-visual::after {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 10px;
}
.about-text h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--dark);
  margin-bottom: 16px;
}
.about-text p {
  color: var(--text-med);
  margin-bottom: 16px;
  font-size: 0.97rem;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 24px 0;
  list-style: none;
}
.about-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-dark);
  font-weight: 600;
}
.about-features li::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.8rem;
}

/* ======= TESTIMONIALS ======= */
.testimonials {
  padding: 80px 24px;
  max-width: 1280px;
  margin: 0 auto;
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.testi-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  box-shadow: var(--shadow-soft);
  position: relative;
}
.testi-card::before {
  content: '"';
  position: absolute;
  top: 14px;
  left: 20px;
  font-size: 4rem;
  color: var(--gold);
  font-family: 'Cinzel', serif;
  line-height: 1;
  opacity: 0.4;
}
.stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 10px; }
.testi-card p { font-size: 0.92rem; color: var(--text-med); font-style: italic; line-height: 1.7; margin-bottom: 16px; }
.testi-author { font-weight: 700; color: var(--dark); font-size: 0.88rem; }
.testi-location { font-size: 0.78rem; color: var(--text-light); }

/* ======= CONTACT SECTION ======= */
.contact-section {
  padding: 80px 24px;
  background: var(--cream);
}
.contact-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
}
.contact-info h3 {
  font-size: 1.4rem;
  color: var(--dark);
  margin-bottom: 24px;
}
.info-item {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  align-items: flex-start;
}
.info-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  color: var(--dark);
}
.info-text strong { display: block; color: var(--dark); font-size: 0.9rem; margin-bottom: 3px; }
.info-text span { color: var(--text-med); font-size: 0.88rem; }
.info-text a { color: var(--maroon); }
.info-text a:hover { color: var(--gold-dark); }
.contact-form { background: var(--white); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-soft); border: 1px solid var(--border); }
.contact-form h3 { font-size: 1.3rem; color: var(--dark); margin-bottom: 24px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.83rem; font-weight: 700; color: var(--text-dark); margin-bottom: 6px; letter-spacing: 0.5px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--ivory);
  transition: border-color 0.3s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); background: #fff; }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* ======= FOOTER ======= */
footer {
  background: var(--dark);
  border-top: 2px solid var(--gold-dark);
  color: var(--cream);
  padding: 60px 24px 0;
}
.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
}
.footer-brand .logo-area { margin-bottom: 16px; }
.footer-brand p { font-size: 0.86rem; color: rgba(255,255,255,0.55); line-height: 1.8; }
.footer-col h4 {
  font-family: 'Cinzel', serif;
  font-size: 0.9rem;
  color: var(--gold);
  letter-spacing: 1.5px;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.86rem; color: rgba(255,255,255,0.6); transition: color 0.3s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-contact-item { display: flex; gap: 10px; margin-bottom: 12px; align-items: flex-start; }
.footer-contact-item .ico { color: var(--gold); font-size: 1rem; margin-top: 2px; }
.footer-contact-item span { font-size: 0.83rem; color: rgba(255,255,255,0.65); line-height: 1.6; }
.footer-contact-item a { color: rgba(255,255,255,0.65); }
.footer-contact-item a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(201,168,76,0.15);
  padding: 20px 0;
  text-align: center;
  max-width: 1280px;
  margin: 0 auto;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.footer-bottom a { color: var(--gold-light); }

/* ======= PAGE HERO ======= */
.page-hero {
  background: linear-gradient(135deg, var(--dark), #3B1A06, var(--maroon));
  padding: 70px 24px 60px;
  text-align: center;
  border-bottom: 2px solid var(--gold-dark);
}
.page-hero h1 { color: var(--gold); font-size: clamp(1.8rem, 4vw, 3rem); margin-bottom: 10px; }
.page-hero p { color: rgba(255,255,255,0.65); font-size: 1rem; }
.breadcrumb { font-size: 0.8rem; color: rgba(255,255,255,0.4); margin-bottom: 16px; }
.breadcrumb a { color: var(--gold-light); }
.breadcrumb span { margin: 0 8px; }

/* ======= POLICY PAGES ======= */
.policy-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}
.policy-content h2 {
  font-size: 1.4rem;
  color: var(--dark);
  margin: 36px 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.policy-content h3 {
  font-size: 1.05rem;
  color: var(--maroon);
  margin: 20px 0 8px;
}
.policy-content p { color: var(--text-med); margin-bottom: 14px; font-size: 0.95rem; line-height: 1.85; }
.policy-content ul { margin-left: 24px; margin-bottom: 14px; }
.policy-content ul li { color: var(--text-med); font-size: 0.95rem; line-height: 1.85; margin-bottom: 6px; }
.policy-content .last-updated { font-size: 0.8rem; color: var(--text-light); margin-bottom: 30px; }
.policy-highlight {
  background: var(--cream);
  border-left: 4px solid var(--gold);
  padding: 16px 20px;
  border-radius: 0 8px 8px 0;
  margin: 20px 0;
}
.policy-highlight p { margin: 0; }

/* ======= FILTER BAR ======= */
.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 8px 22px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--text-med);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}
.filter-btn:hover, .filter-btn.active {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: var(--dark);
  border-color: var(--gold);
}

/* ======= MAP ======= */
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 320px;
  border: 2px solid var(--gold-dark);
  margin-top: 30px;
}
.map-container iframe { width: 100%; height: 100%; border: none; }

/* ======= WHATSAPP FLOAT ======= */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: #25D366;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  z-index: 999;
  transition: all 0.3s;
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37,211,102,0.5);
}

/* ======= RESPONSIVE ======= */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { min-height: 260px; }
}

@media (max-width: 768px) {
  nav ul { display: none; flex-direction: column; position: absolute; top: 80px; left: 0; right: 0; background: var(--dark); padding: 20px; border-top: 1px solid var(--gold-dark); }
  nav ul.open { display: flex; }
  .hamburger { display: flex; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-content h1 { font-size: 2.2rem; }
}

@media (max-width: 480px) {
  .hero { min-height: 70vh; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
