/* ── Reset & Base ─────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --red:    #c62828;
  --red-dk: #8e0000;
  --red-lt: #ffebee;
  --gold:   #f9a825;
  --dark:   #1a1a1a;
  --gray:   #555;
  --light:  #fafafa;
  --white:  #ffffff;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,0.10);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
}

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

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: var(--red-dk);
  margin-bottom: 10px;
}

.section-sub {
  color: var(--gray);
  font-size: 1rem;
  margin-bottom: 48px;
}

.divider {
  width: 56px;
  height: 3px;
  background: var(--gold);
  margin: 12px 0 16px;
  border-radius: 2px;
}

/* ── Navbar ───────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  z-index: 1000;
  padding: 0 20px;
}

.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-icon {
  width: 42px;
  height: 42px;
  background: var(--red);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.nav-brand {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.nav-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--red-dk);
}

.nav-brand-sub {
  font-size: 0.65rem;
  color: var(--gray);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark);
  transition: color .2s;
}

.nav-links a:hover { color: var(--red); }

.nav-cta {
  background: var(--red);
  color: var(--white) !important;
  padding: 9px 20px;
  border-radius: 50px;
  transition: background .2s !important;
}

.nav-cta:hover { background: var(--red-dk) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all .3s;
}

/* ── Hero ─────────────────────────────────────────────── */
.hero {
  margin-top: 68px;
  min-height: calc(100vh - 68px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  padding: 60px 20px;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--red-lt);
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 18px;
  letter-spacing: 0.03em;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 18px;
}

.hero-title span { color: var(--red); }

.hero-desc {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 32px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-bottom: 36px;
}

.hero-stat strong {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--red);
  font-family: 'Playfair Display', serif;
}

.hero-stat span {
  font-size: 0.78rem;
  color: var(--gray);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background .2s, transform .2s;
}

.btn-primary:hover { background: var(--red-dk); transform: translateY(-2px); }

.btn-outline {
  border: 2px solid var(--red);
  color: var(--red);
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .2s;
}

.btn-outline:hover { background: var(--red); color: var(--white); }

.hero-img-wrap {
  position: relative;
}

.hero-img-main {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.hero-img-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--white);
  border-radius: 14px;
  padding: 14px 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-stars { color: var(--gold); font-size: 1rem; letter-spacing: 1px; }

.hero-img-badge p { font-size: 0.75rem; color: var(--gray); margin-top: 2px; }
.hero-img-badge strong { font-size: 0.9rem; }

/* ── About ────────────────────────────────────────────── */
.about {
  background: var(--red-lt);
  padding: 80px 20px;
}

.about-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.about-img-wrap { position: relative; }

.about-tag {
  position: absolute;
  top: -16px;
  right: -16px;
  background: var(--red);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 8px;
}

.about-text p {
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 28px;
}

.feat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 500;
}

.feat-dot {
  width: 20px;
  height: 20px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
  font-size: 10px;
}

/* ── Products ─────────────────────────────────────────── */
.products {
  padding: 80px 20px;
  text-align: center;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 0;
}

.product-card {
  background: var(--white);
  border: 1px solid #f0e6e6;
  border-radius: var(--radius);
  padding: 32px 20px;
  text-align: center;
  transition: transform .2s, box-shadow .2s;
  cursor: default;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(198, 40, 40, 0.12);
  border-color: var(--red);
}

.product-icon {
  width: 64px;
  height: 64px;
  background: var(--red-lt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 28px;
}

.product-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--dark);
}

.product-card p {
  font-size: 0.8rem;
  color: var(--gray);
  line-height: 1.5;
}

/* ── Why Us ───────────────────────────────────────────── */
.why {
  background: var(--red);
  padding: 80px 20px;
  color: var(--white);
  text-align: center;
}

.why .section-title { color: var(--white); }
.why .section-sub   { color: rgba(255,255,255,0.75); }
.why .divider       { background: var(--gold); margin: 12px auto 16px; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  max-width: 1140px;
  margin: 0 auto;
}

.why-card {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.20);
  border-radius: var(--radius);
  padding: 32px 24px;
  backdrop-filter: blur(4px);
  transition: background .2s;
}

.why-card:hover { background: rgba(255,255,255,0.18); }

.why-icon { font-size: 36px; margin-bottom: 14px; }

.why-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.why-card p {
  font-size: 0.82rem;
  line-height: 1.6;
  opacity: 0.85;
}

/* ── Brands ───────────────────────────────────────────── */
.brands {
  padding: 60px 20px;
  text-align: center;
  background: var(--light);
}

.brands h2 {
  font-size: 1.2rem;
  color: var(--gray);
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  margin-bottom: 32px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.brands-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.brand-pill {
  background: var(--white);
  border: 1px solid #eee;
  border-radius: 50px;
  padding: 10px 24px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 0.03em;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* ── Gallery ──────────────────────────────────────────── */
.gallery {
  padding: 80px 20px;
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}

.gallery-grid img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform .3s;
}

.gallery-grid img:hover { transform: scale(1.02); }

/* ── Contact ──────────────────────────────────────────── */
.contact {
  background: var(--red-lt);
  padding: 80px 20px;
}

.contact-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.contact-info { padding-top: 8px; }

.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--red-lt);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-card h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  color: var(--gray);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.contact-card p, .contact-card a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.5;
}

.contact-card a { color: var(--red); }
.contact-card a:hover { text-decoration: underline; }

.open-badge {
  display: inline-block;
  background: #e8f5e9;
  color: #2e7d32;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 50px;
  margin-top: 4px;
}

.map-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-wrap iframe {
  width: 100%;
  height: 380px;
  border: none;
  display: block;
}

/* ── WhatsApp Float ───────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  z-index: 900;
  transition: transform .2s;
}

.wa-float:hover { transform: scale(1.12); }

.wa-float svg { width: 30px; height: 30px; fill: white; }

/* ── Shop (Dynamic Products) ──────────────────────────── */
.shop {
  padding: 80px 20px;
  background: var(--light);
  text-align: center;
}

.shop-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 36px;
}

.filter-pill {
  padding: 7px 18px;
  border-radius: 50px;
  border: 1.5px solid #ddd;
  background: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray);
  cursor: pointer;
  transition: all .2s;
  font-family: 'Poppins', sans-serif;
}

.filter-pill:hover  { border-color: var(--red); color: var(--red); }
.filter-pill.active { background: var(--red); color: var(--white); border-color: var(--red); }

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

.shop-skel {
  height: 320px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
  border-radius: var(--radius);
}

@keyframes shimmer { 0%{background-position:200% 0} 100%{background-position:-200% 0} }

.shop-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  border: 1px solid #f0e6e6;
  display: flex;
  flex-direction: column;
  transition: transform .25s, box-shadow .25s;
  text-align: left;
}

.shop-card:hover { transform: translateY(-5px); box-shadow: 0 10px 32px rgba(198,40,40,0.13); }

.shop-img-wrap {
  position: relative;
  background: #fafafa;
  aspect-ratio: 1/1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shop-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.shop-em {
  font-size: 56px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.shop-cat {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--red);
  color: white;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  letter-spacing: 0.03em;
}

.shop-oos {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #333;
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 50px;
}

.shop-info {
  padding: 14px 16px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.shop-brand {
  font-size: 0.7rem;
  color: var(--gray);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.shop-name {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.35;
  margin-bottom: 10px;
  flex: 1;
}

.shop-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 12px;
}

.shop-sp  { font-size: 1.1rem; font-weight: 700; color: var(--red); }
.shop-mrp { font-size: 0.8rem; color: #aaa; text-decoration: line-through; }

.shop-btn {
  display: block;
  text-align: center;
  padding: 10px;
  background: #25d366;
  color: white;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  transition: background .2s;
}

.shop-btn:hover { background: #1ebe5d; }
.shop-btn-oos { background: #ccc; cursor: default; pointer-events: none; }

/* ── Inquiry Form ─────────────────────────────────────── */
.inquiry {
  padding: 80px 20px;
  background: var(--white);
}

.inquiry-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: center;
}

.inquiry-promo h2 { margin-bottom: 0; }

.inquiry-promo p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.8;
  margin: 16px 0 28px;
}

.promo-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.promo-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 500;
}

.promo-item span:first-child {
  font-size: 1.3rem;
}

.inquiry-form-card {
  background: var(--white);
  border: 1px solid #f0e6e6;
  border-radius: 20px;
  padding: 36px 32px;
  box-shadow: 0 8px 40px rgba(198,40,40,0.08);
}

.inquiry-form-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.inquiry-form-card p {
  font-size: 0.82rem;
  color: var(--gray);
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 14px;
  border: 1.5px solid #eee;
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  color: var(--dark);
  background: var(--light);
  outline: none;
  transition: border-color .2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  background: var(--white);
}

.form-group textarea { resize: vertical; min-height: 90px; }

.btn-wa {
  width: 100%;
  padding: 15px;
  background: #25d366;
  color: white;
  border: none;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background .2s, transform .2s;
  margin-top: 6px;
}

.btn-wa:hover { background: #1ebe5d; transform: translateY(-2px); }

.btn-wa svg { width: 22px; height: 22px; fill: white; }

.form-note {
  text-align: center;
  font-size: 0.72rem;
  color: var(--gray);
  margin-top: 10px;
}

@media (max-width: 900px) {
  .inquiry-inner { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ── Footer ───────────────────────────────────────────── */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.6);
  text-align: center;
  padding: 28px 20px;
  font-size: 0.82rem;
}

.footer strong { color: var(--white); }

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 900px) {
  .hero, .about-inner, .contact-inner {
    grid-template-columns: 1fr;
  }

  .hero { margin-top: 68px; padding: 40px 20px; text-align: center; }
  .hero-desc { margin: 0 auto 28px; }
  .hero-stats { justify-content: center; }
  .hero-actions { justify-content: center; }
  .hero-img-wrap { order: -1; }
  .hero-img-main { height: 320px; }

  .about-img-wrap { order: -1; }
  .about-img { height: 280px; }
  .about-tag { top: -12px; right: -8px; }

  .contact-inner { gap: 32px; }
}

@media (max-width: 700px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0; right: 0;
    background: var(--white);
    padding: 20px;
    gap: 18px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  }

  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid img { height: 240px; }

  .about-features { grid-template-columns: 1fr; }

  .hero-stats { gap: 20px; }
}
