/* =========================
   1. THEME VARIABLES
========================= */
:root {
  --maroon: #651818;
  --maroon2: #8b241a;
  --deep: #8B0000;
  --gold: #d9a441;
  --gold2: #f5c865;

  --light: #fff8ea;
  --cream: #fffdf8;
  --text: #2d241f;
  --muted: #75675d;
  --green: #178d52;

  --border: #f0dfc3;
  --shadow: 0 14px 34px rgba(217, 74, 8, 0.12);
  --radius: 24px;
}

/* =========================
   2. GLOBAL RESET
========================= */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: #fffaf1;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button,
input {
  font: inherit;
}

/* =========================
   3. COMMON LAYOUT
========================= */
.container {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}

section {
  padding: clamp(44px, 6vw, 68px) 0;
}

.grid {
  display: grid;
  gap: 18px;
}

/* =========================
   4. ACCESSIBILITY
========================= */
.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  background: #fff;
  color: #000;
  padding: 10px;
  z-index: 999;
}

.skip-link:focus {
  left: 8px;
}

/* =========================
   5. TOPBAR
========================= */
.topbar {
  background: var(--deep);
  color: #fff;
  font-size: 14px;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  flex-wrap: wrap;
}

/* =========================
   6. HEADER / NAVIGATION
========================= */
.header {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 16px;
}

.logo {
  font-size: 28px;
  font-weight: 900;
  color: var(--maroon);
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.logo span {
  color: var(--gold);
}

.desktop-menu {
  display: flex;
  gap: 16px;
  font-size: 15px;
  font-weight: 800;
  align-items: center;
}

.desktop-menu a {
  padding: 8px 2px;
}

.desktop-menu a:hover {
  color: var(--maroon);
}

.cart {
  background: var(--maroon);
  color: #fff;
  padding: 10px 15px;
  border-radius: 999px;
  font-weight: 800;
  white-space: nowrap;
}

/* =========================
   7. MOBILE MENU
========================= */
.menu-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--maroon);
  padding: 10px 12px;
  border-radius: 999px;
  font-weight: 900;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--maroon);
  position: relative;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--maroon);
}

.menu-toggle span::before {
  top: -6px;
}

.menu-toggle span::after {
  top: 6px;
}

.mobile-menu {
  display: none;
  border-top: 1px solid var(--border);
  padding: 10px 0 14px;
}

.mobile-menu a {
  display: block;
  padding: 13px 8px;
  border-bottom: 1px solid #f6ead5;
  font-weight: 800;
  color: var(--deep);
}

.mobile-menu .mobile-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 12px;
}

.nav-open .mobile-menu {
  display: block;
}

/* =========================
   8. HERO SECTION
========================= */
.hero {
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 214, 116, 0.55), transparent 32%),
    linear-gradient(135deg, #501414 0%, #902719 52%, #f1b943 100%);
  color: #fff;
  padding: clamp(42px, 7vw, 78px) 0;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(310px, 0.94fr);
  gap: 34px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 800;
}

.hero h1 {
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.06;
  margin: 18px 0 14px;
  text-wrap: balance;
}

.hero p {
  font-size: clamp(16px, 2vw, 19px);
  max-width: 660px;
  color: #fff8e7;
  margin: 0;
}

.hero-card {
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 28px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.hero-card h3 {
  font-size: 24px;
  margin: 0 0 14px;
}

.hero-icons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.hero-icons div {
  background: rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  padding: 16px;
  font-weight: 900;
}

/* =========================
   9. BUTTONS
========================= */
.buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.btn {
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  text-align: center;
}

.btn-primary {
  background: #fff;
  color: var(--maroon);
}

.btn-gold {
  background: var(--gold2);
  color: #38100c;
}

.btn-secondary {
  border: 2px solid rgba(255, 255, 255, 0.82);
  color: #fff;
}

/* =========================
   10. FEATURE STRIP
========================= */
.strip {
  background: #fff;
  border-bottom: 1px solid #f1e0c5;
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 16px 0;
}

.strip-item {
  font-weight: 900;
  color: var(--maroon);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* =========================
   11. SECTION TITLES
========================= */
.section-title {
  text-align: center;
  margin-bottom: 28px;
}

.section-title h2 {
  font-size: clamp(27px, 3.4vw, 42px);
  line-height: 1.15;
  margin: 0;
  color: var(--maroon);
  text-wrap: balance;
}

.section-title p {
  color: var(--muted);
  max-width: 760px;
  margin: 10px auto 0;
}

/* =========================
   12. CARDS
========================= */
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-3px);
}

.icon {
  font-size: 32px;
  background: #fff2cf;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 19px;
  margin-bottom: 12px;
}

.card h3 {
  margin: 7px 0;
  color: var(--deep);
  line-height: 1.25;
}

.card p {
  color: var(--muted);
  margin: 0 0 14px;
}

.small-link {
  color: var(--maroon);
  font-weight: 900;
}

/* =========================
   13. CATEGORY / MUKHI / PRODUCT GRIDS
========================= */
.cat-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.mukhi-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.mukhi-card {
  background: linear-gradient(180deg, #fff, #fff7e6);
  border: 1px solid #ead8b9;
  border-radius: 20px;
  padding: 17px;
  min-height: 120px;
}

.mukhi-card strong {
  color: var(--maroon);
  font-size: 18px;
}

.mukhi-card p {
  margin: 8px 0 0;
  color: var(--muted);
}

/* =========================
   14. PRODUCT CARD
========================= */
.product {
  overflow: hidden;
  padding: 0;
}

.product-img {
  aspect-ratio: 4 / 3;
  background: radial-gradient(circle, #f8cf76, #7b2118);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 52px;
}

.product-body {
  padding: 18px;
}

.tag {
  display: inline-block;
  background: #fff0cc;
  color: #7b3d05;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 900;
}

.price {
  font-size: 21px;
  color: var(--maroon);
  font-weight: 900;
  margin: 8px 0;
}

/* =========================
   15. WHY SECTION
========================= */
.why {
  background: linear-gradient(180deg, #fff8ea, #fff);
}

.why-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.why .card {
  text-align: center;
}

/* =========================
   16. PROBLEM / BLOG GRIDS
========================= */
.problem-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.blog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* =========================
   17. CTA SECTION
========================= */
.cta {
  background: linear-gradient(135deg, #2b0f0d, #651818);
  color: #fff;
  border-radius: 30px;
  padding: clamp(26px, 4vw, 44px);
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 18px;
  align-items: center;
}

.cta h2 {
  font-size: clamp(28px, 3.6vw, 38px);
  line-height: 1.15;
  margin: 0 0 8px;
}

.cta p {
  color: #ffecc2;
  margin: 0;
}

/* =========================
   18. SEO CONTENT
========================= */
.seo {
  background: #fff;
}

.seo article {
  max-width: 950px;
  margin: auto;
  background: #fff;
  border: 1px solid #f1e0c5;
  border-radius: 28px;
  padding: clamp(24px, 4vw, 36px);
  box-shadow: var(--shadow);
}

.seo h2 {
  color: var(--maroon);
  line-height: 1.2;
}

/* =========================
   19. FOOTER
========================= */
.footer {
  background: var(--deep);
  color: #f9ead1;
  padding: 46px 0 96px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 26px;
}

.footer h4 {
  color: #fff;
  margin-top: 0;
}

.footer a {
  display: block;
  color: #e7cba2;
  margin: 8px 0;
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 28px;
  padding-top: 18px;
  text-align: center;
  color: #d6b98b;
}

/* =========================
   20. MOBILE STICKY BUTTONS
========================= */
.mobile-sticky {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 10px max(12px, env(safe-area-inset-left)) calc(10px + env(safe-area-inset-bottom));
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  z-index: 120;
  box-shadow: 0 -8px 28px rgba(0, 0, 0, 0.12);
}

.mobile-sticky a {
  border-radius: 999px;
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

.mobile-sticky .call {
  background: var(--maroon);
  color: #fff;
}

.mobile-sticky .wa {
  background: var(--green);
  color: #fff;
}

/* =========================
   21. DESKTOP WHATSAPP BUTTON
========================= */
.desktop-wa {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--green);
  color: #fff;
  border-radius: 999px;
  padding: 13px 18px;
  font-weight: 900;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  z-index: 90;
}

/* =========================
   22. RESPONSIVE - TABLET
========================= */
@media (max-width: 1024px) {
  .desktop-menu {
    gap: 10px;
    font-size: 14px;
  }

  .cat-grid,
  .mukhi-grid,
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* =========================
   23. RESPONSIVE - MOBILE
========================= */
@media (max-width: 860px) {
  .desktop-menu,
  .cart {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero-grid,
  .cta {
    grid-template-columns: 1fr;
  }

  .hero-card {
    max-width: 640px;
  }

  .strip-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cat-grid,
  .mukhi-grid,
  .product-grid,
  .why-grid,
  .problem-grid,
  .blog-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .desktop-wa {
    display: none;
  }

  .mobile-sticky {
    display: grid;
  }

  .footer {
    padding-bottom: 118px;
  }
}

/* =========================
   24. RESPONSIVE - SMALL MOBILE
========================= */
@media (max-width: 560px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .topbar {
    font-size: 12.5px;
  }

  .topbar .container {
    justify-content: center;
    text-align: center;
  }

  .nav {
    padding: 10px 0;
  }

  .logo {
    font-size: 23px;
  }

  .menu-toggle {
    padding: 9px 10px;
    font-size: 14px;
  }

  .hero {
    padding: 38px 0 44px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 15.5px;
  }

  .buttons {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .btn {
    width: 100%;
    padding: 12px 16px;
  }

  .hero-card {
    padding: 18px;
    border-radius: 22px;
  }

  .hero-icons {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .hero-icons div {
    padding: 13px;
    font-size: 14px;
  }

  .strip-grid,
  .cat-grid,
  .mukhi-grid,
  .product-grid,
  .why-grid,
  .problem-grid,
  .blog-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .strip-item {
    justify-content: center;
  }

  .card {
    padding: 19px;
    border-radius: 20px;
  }

  .product-body {
    padding: 17px;
  }

  .cta {
    text-align: center;
    border-radius: 24px;
  }

  .mobile-menu .mobile-cta {
    grid-template-columns: 1fr;
  }

  .section-title {
    text-align: left;
  }

  .section-title p {
    margin-left: 0;
  }

  .why .section-title {
    text-align: left;
  }

  .why .card {
    text-align: left;
  }

  .why .icon {
    margin-inline: 0;
  }

  .footer-grid {
    gap: 14px;
  }

  .mobile-sticky {
    grid-template-columns: 1fr 1fr;
  }

  .mobile-sticky a {
    font-size: 14px;
  }

  .seo article {
    border-radius: 22px;
  }
}

/* =========================
   25. RESPONSIVE - EXTRA SMALL
========================= */
@media (max-width: 380px) {
  .hero h1 {
    font-size: 29px;
  }

  .logo {
    font-size: 21px;
  }

  .hero-icons {
    grid-template-columns: 1fr;
  }

  .mobile-sticky {
    grid-template-columns: 1fr;
  }

  .footer {
    padding-bottom: 172px;
  }
}

/* =========================
   26. REDUCED MOTION
========================= */
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
