/* ===== DK MASALA - GLOBAL STYLESHEET ===== */

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

:root {
  --primary:    #c0392b;
  --primary-dk: #96281b;
  --accent:     #e67e22;
  --gold:       #f39c12;
  --dark:       #1a1a2e;
  --dark2:      #2d2d2d;
  --text:       #333;
  --muted:      #666;
  --light:      #fdf6ec;
  --white:      #ffffff;
  --border:     #e8e0d5;
  --radius:     12px;
  --shadow:     0 4px 20px rgba(0,0,0,.08);
  --shadow-lg:  0 8px 40px rgba(0,0,0,.14);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }

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

/* ── CONTAINER ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: .75rem 1.6rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .2s;
  text-align: center;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dk); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(192,57,43,.35); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,.6); }
.btn-outline:hover { background: rgba(255,255,255,.15); }
.btn-white { background: var(--white); color: var(--primary); }
.btn-white:hover { background: #f0f0f0; }
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.7); }
.btn-outline-white:hover { background: rgba(255,255,255,.15); }
.btn-lg { padding: .9rem 2rem; font-size: 1rem; }
.btn-block { display: block; width: 100%; margin-top: 1rem; }
.btn-secondary { background: var(--accent); color: #fff; }
.btn-secondary:hover { background: #d35400; }

/* ── SECTION ── */
.section { padding: 5rem 0; }
.bg-light { background: var(--light); }

.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 { font-size: 2rem; font-weight: 800; color: var(--dark); margin-bottom: .5rem; }
.section-header p  { color: var(--muted); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }

/* ── HEADER ── */
.header { background: var(--white); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 100; }
.header-inner { display: flex; align-items: center; gap: 2rem; padding-top: .9rem; padding-bottom: .9rem; }
.logo { font-size: 1.5rem; font-weight: 800; color: var(--primary); flex-shrink: 0; }
.nav { display: flex; gap: 1.5rem; margin-left: auto; }
.nav a { font-weight: 500; color: var(--dark2); font-size: .95rem; }
.nav a:hover { color: var(--primary); }
.menu-toggle { display: none; background: none; border: none; font-size: 1.6rem; cursor: pointer; margin-left: auto; color: var(--dark); }

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: .5rem;
  padding: 1rem 1.5rem 1.5rem;
  background: var(--white);
  border-top: 1px solid var(--border);
}
.mobile-nav a { font-weight: 500; color: var(--dark2); padding: .4rem 0; }

/* ── TRUST BAR ── */
.trust-bar { background: var(--primary); color: #fff; padding: .55rem 0; }
.trust-inner { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; font-size: .82rem; font-weight: 600; letter-spacing: .03em; }

/* ── HERO ── */
.hero {
  position: relative;
  background: linear-gradient(135deg, #1a0a00 0%, #3d1108 40%, #5c1e1e 100%);
  color: #fff;
  padding: 7rem 0 6rem;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content { position: relative; max-width: 680px; }
.hero-tag { display: inline-block; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25); padding: .3rem .9rem; border-radius: 50px; font-size: .8rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 1.2rem; color: var(--gold); }
.hero h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 800; line-height: 1.15; margin-bottom: 1.2rem; }
.hero p  { font-size: 1.1rem; color: rgba(255,255,255,.8); margin-bottom: 2rem; max-width: 540px; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── CATEGORY GRID ── */
.category-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1.25rem; }
.category-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.25rem;
  text-align: center;
  transition: all .25s;
  cursor: pointer;
  display: block;
}
.category-card:hover { border-color: var(--primary); box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.cat-icon { font-size: 2.5rem; margin-bottom: .75rem; }
.category-card h3 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: .4rem; }
.category-card p  { font-size: .82rem; color: var(--muted); margin-bottom: .75rem; }
.cat-link { color: var(--primary); font-size: .85rem; font-weight: 700; }

/* ── PRODUCTS GRID ── */
.products-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; }
.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  transition: all .25s;
}
.product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.product-card.featured { border-color: var(--primary); border-width: 2px; }
.badge { position: absolute; top: 12px; right: 12px; background: var(--primary); color: #fff; padding: .25rem .7rem; border-radius: 50px; font-size: .75rem; font-weight: 700; }
.product-img { font-size: 5rem; text-align: center; padding: 2rem; background: var(--light); }
.product-info { padding: 1.25rem; }
.product-info h3 { font-size: 1rem; font-weight: 700; margin-bottom: .3rem; }
.product-info p  { font-size: .82rem; color: var(--muted); margin-bottom: .5rem; }
.stars { font-size: .85rem; color: var(--gold); margin-bottom: .5rem; }
.stars span { color: var(--muted); }
.price { font-size: 1.05rem; font-weight: 700; color: var(--primary); margin-bottom: .25rem; }

/* ── WHY US ── */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.why-text h2 { font-size: 1.9rem; font-weight: 800; color: var(--dark); margin-bottom: 1rem; line-height: 1.2; }
.why-text > p { color: var(--muted); margin-bottom: 1.5rem; }
.why-list { display: flex; flex-direction: column; gap: .85rem; }
.why-list li { font-size: .95rem; }
.why-certs { background: var(--light); border-radius: var(--radius); padding: 2rem; }
.why-certs h3 { font-size: 1.1rem; font-weight: 700; color: var(--dark); margin-bottom: 1.25rem; text-align: center; }
.cert-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.cert-badge { background: var(--white); border: 1px solid var(--border); border-radius: 8px; padding: .65rem 1rem; font-size: .82rem; font-weight: 600; text-align: center; color: var(--dark2); }

/* ── REVIEWS ── */
.review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.review-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.75rem; }
.review-card .stars { margin-bottom: .75rem; font-size: .9rem; }
.review-card p  { font-size: .92rem; color: var(--muted); font-style: italic; margin-bottom: 1rem; line-height: 1.7; }
.review-card strong { font-size: .85rem; color: var(--dark); }

/* ── BULK CTA ── */
.bulk-cta { background: linear-gradient(135deg, var(--primary-dk), var(--primary)); color: #fff; }
.bulk-inner { display: flex; align-items: center; gap: 3rem; flex-wrap: wrap; }
.bulk-text { flex: 1; min-width: 260px; }
.bulk-text h2 { font-size: 1.7rem; font-weight: 800; margin-bottom: .75rem; }
.bulk-text > p { color: rgba(255,255,255,.85); margin-bottom: 1rem; }
.bulk-list { display: flex; flex-direction: column; gap: .4rem; font-size: .9rem; color: rgba(255,255,255,.9); }
.bulk-actions { display: flex; flex-direction: column; gap: .75rem; flex-shrink: 0; }

/* ── NEWSLETTER ── */
.newsletter { background: var(--dark); color: #fff; }
.newsletter-inner { display: flex; align-items: center; gap: 3rem; flex-wrap: wrap; }
.newsletter-inner h2 { font-size: 1.5rem; font-weight: 800; margin-bottom: .4rem; }
.newsletter-inner p  { color: rgba(255,255,255,.7); font-size: .9rem; }
.newsletter-form { display: flex; gap: .75rem; flex-wrap: wrap; flex-shrink: 0; }
.newsletter-form input {
  padding: .75rem 1.2rem;
  border-radius: 8px;
  border: none;
  font-size: .95rem;
  min-width: 240px;
  outline: none;
}

/* ── FOOTER ── */
.footer { background: var(--dark); color: rgba(255,255,255,.75); padding: 4rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 2.5rem; padding-bottom: 3rem; }
.footer-brand p { font-size: .88rem; margin-top: .75rem; line-height: 1.7; }
.footer-brand a { color: rgba(255,255,255,.8); }
.footer-brand a:hover { color: var(--gold); }
.footer h4 { color: #fff; font-size: .95rem; font-weight: 700; margin-bottom: 1rem; }
.footer ul { display: flex; flex-direction: column; gap: .5rem; }
.footer ul li a { font-size: .88rem; color: rgba(255,255,255,.7); }
.footer ul li a:hover { color: var(--gold); }
.footer p { font-size: .88rem; line-height: 1.7; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 1.25rem 0; text-align: center; }
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.45); }

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  background: #25d366;
  color: #fff;
  font-size: 1.75rem;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(37,211,102,.5);
  z-index: 999;
  transition: transform .2s;
}
.whatsapp-float:hover { transform: scale(1.1); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, #1a0a00, #5c1e1e);
  color: #fff;
  text-align: center;
  padding: 4.5rem 0;
}
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; margin-bottom: .75rem; }
.page-hero p  { font-size: 1.05rem; color: rgba(255,255,255,.8); max-width: 560px; margin: 0 auto; }

/* ── BREADCRUMB ── */
.breadcrumb { padding: 1rem 0; font-size: .85rem; color: var(--muted); }
.breadcrumb a { color: var(--primary); }

/* ── PRODUCT PAGE ── */
.product-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.product-gallery { background: var(--light); border-radius: var(--radius); padding: 3rem; text-align: center; font-size: 8rem; position: sticky; top: 100px; }
.product-badge-row { display: flex; flex-wrap: wrap; gap: .5rem; margin: 1rem 0; }
.product-badge { background: var(--light); border: 1px solid var(--border); border-radius: 50px; padding: .3rem .8rem; font-size: .78rem; font-weight: 600; color: var(--dark2); }
.product-detail h1 { font-size: 1.75rem; font-weight: 800; color: var(--dark); margin-bottom: .5rem; }
.product-detail .stars { font-size: .9rem; margin-bottom: 1rem; }
.pack-table { width: 100%; border-collapse: collapse; margin: 1.25rem 0; }
.pack-table th { background: var(--dark); color: #fff; padding: .65rem 1rem; text-align: left; font-size: .85rem; }
.pack-table td { padding: .65rem 1rem; border-bottom: 1px solid var(--border); font-size: .9rem; }
.pack-table tr:last-child td { border-bottom: none; }
.pack-table .btn { padding: .4rem 1rem; font-size: .8rem; }
.product-cta { background: var(--light); border-radius: var(--radius); padding: 1.5rem; margin: 1.5rem 0; }
.product-cta .btn { margin-bottom: .75rem; }
.security-note { font-size: .8rem; color: var(--muted); text-align: center; margin-top: .5rem; }
.spec-table { width: 100%; border-collapse: collapse; }
.spec-table th { background: var(--primary); color: #fff; padding: .6rem 1rem; text-align: left; font-size: .85rem; }
.spec-table td { padding: .6rem 1rem; border-bottom: 1px solid var(--border); font-size: .88rem; }
.spec-table tr:nth-child(even) td { background: var(--light); }

/* ── ABOUT PAGE ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; margin-bottom: 4rem; }
.about-visual { background: linear-gradient(135deg, var(--light), #fde8c8); border-radius: var(--radius); padding: 3rem; text-align: center; font-size: 7rem; }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.25rem; margin-bottom: 4rem; }
.value-card { background: var(--light); border-radius: var(--radius); padding: 1.75rem; }
.value-card .vi { font-size: 2rem; margin-bottom: .75rem; }
.value-card h3 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: .5rem; }
.value-card p  { font-size: .88rem; color: var(--muted); }

/* ── FAQ PAGE ── */
.faq-section { max-width: 820px; margin: 0 auto; }
.faq-group { margin-bottom: 3rem; }
.faq-group h2 { font-size: 1.2rem; font-weight: 800; color: var(--primary); border-bottom: 2px solid var(--border); padding-bottom: .6rem; margin-bottom: 1.25rem; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: .75rem; overflow: hidden; }
.faq-q { padding: 1.1rem 1.25rem; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-size: .95rem; background: var(--white); }
.faq-q:hover { background: var(--light); }
.faq-q .arrow { transition: transform .25s; font-size: .8rem; }
.faq-a { display: none; padding: 0 1.25rem 1.1rem; font-size: .9rem; color: var(--muted); line-height: 1.75; border-top: 1px solid var(--border); padding-top: 1rem; }
.faq-item.open .faq-a { display: block; }
.faq-item.open .arrow { transform: rotate(180deg); }

/* ── CONTACT PAGE ── */
.contact-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 3.5rem; }
.contact-form-wrap { background: var(--white); }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: .88rem; font-weight: 600; color: var(--dark); margin-bottom: .4rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: .95rem;
  font-family: inherit;
  outline: none;
  transition: border-color .2s;
  background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--primary); }
.form-group textarea { resize: vertical; min-height: 130px; }
.contact-info-card { background: var(--light); border-radius: var(--radius); padding: 2rem; margin-bottom: 1.25rem; }
.contact-info-card h3 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 1rem; }
.contact-row { display: flex; gap: .75rem; align-items: flex-start; margin-bottom: .85rem; font-size: .9rem; }
.contact-row .icon { font-size: 1.1rem; flex-shrink: 0; margin-top: .05rem; }
.hours-table { width: 100%; border-collapse: collapse; font-size: .88rem; }
.hours-table td { padding: .45rem 0; border-bottom: 1px solid var(--border); }
.hours-table tr:last-child td { border: none; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .why-grid, .product-layout, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .product-gallery { position: static; }
  .bulk-inner { flex-direction: column; text-align: center; }
  .newsletter-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 640px) {
  .nav { display: none; }
  .header-inner > .btn-primary { display: none; }
  .menu-toggle { display: block; }
  .footer-grid { grid-template-columns: 1fr; }
  .trust-inner { gap: .75rem; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
}
