/* ═══════════════════════════════════════════════════════════════════════
   SUBHASH MASALE
   ═══════════════════════════════════════════════════════════════════════ */

/* ── DESIGN TOKENS ─────────────────────────────────────────────────── */
:root {
  --red: #c8281a;
  --red-hover: #a8200f;
  --red-soft: #f9ecea;
  --gold: #d4a535;
  --gold-hover: #b88a20;
  --gold-soft: #fdf5e4;
  --black: #111010;
  --ink: #1e1c1c;
  --muted: #6b6560;
  --border: #e4ddd8;
  --bg: #faf8f5;
  --surface: #ffffff;
  --cream: #f5f0ea;
  --success: #1a8c4e;

  --radius-sm: 4px;
  --shadow-card: 0 2px 16px rgba(0, 0, 0, 0.06);
  --shadow-modal: 0 24px 64px rgba(0, 0, 0, 0.16);
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── RESET & BASE ────────────────────────────────────────────────────── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Outfit", sans-serif;
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: var(--cream);
}
::-webkit-scrollbar-thumb {
  background: var(--red);
  border-radius: 3px;
}
img {
  max-width: 100%;
  display: block;
}
button {
  cursor: pointer;
}
a {
  text-decoration: none;
  color: inherit;
}

/* ── ANNOUNCE BAR ────────────────────────────────────────────────────── */
.announce {
  background: var(--black);
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
  padding: 10px 16px;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.announce strong {
  color: #fff;
}

/* ── NAVIGATION ─────────────────────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  height: 68px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}
.logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.logo-mark-fallback {
  font-family: "Cormorant", serif;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  line-height: 1;
}
.logo-text strong {
  display: block;
  font-family: "Cormorant", serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--black);
  letter-spacing: 0.5px;
}
.logo-text small {
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 2.5px;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-links a:hover {
  color: var(--black);
}
.nav-links a:hover::after {
  transform: scaleX(1);
}
.nav-right {
  display: flex;
  gap: 12px;
  align-items: center;
}
.btn-cart {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--black);
  color: #fff;
  border: none;
  padding: 9px 20px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: background var(--transition);
  font-family: "Outfit", sans-serif;
}
.btn-cart:hover {
  background: var(--red);
}
.cart-n {
  background: var(--red);
  color: #fff;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}
.cart-n.bump {
  animation: cartBump 0.3s ease;
}
@keyframes cartBump {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.35);
  }
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
}
.hamburger span {
  width: 22px;
  height: 1.5px;
  background: var(--black);
  display: block;
  transition: 0.3s;
}

/* ── HERO ────────────────────────────────────────────────────────────── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 90vh;
  overflow: hidden;
}
.hero-left {
  background: var(--black);
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero-left::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.hero-left::after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 1px solid rgba(200, 40, 26, 0.15);
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}
.hero-eyebrow span {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}
.hero-eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--red);
}
.hero h1 {
  font-family: "Cormorant", serif;
  font-size: clamp(52px, 6vw, 80px);
  font-weight: 300;
  line-height: 1;
  color: #fff;
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: italic;
  color: rgba(255, 255, 255, 0.45);
}
.hero-desc {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 300;
  max-width: 380px;
  margin-bottom: 40px;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--red);
  color: #fff;
  border: none;
  padding: 13px 30px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition:
    background var(--transition),
    transform 0.15s;
  font-family: "Outfit", sans-serif;
  display: inline-block;
}
.btn-primary:hover {
  background: var(--red-hover);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 13px 28px;
  font-size: 13px;
  transition: all var(--transition);
  font-family: "Outfit", sans-serif;
  display: inline-block;
}
.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 52px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.hero-stat .n {
  font-family: "Cormorant", serif;
  font-size: 28px;
  font-weight: 400;
  color: #fff;
}
.hero-stat .l {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 2px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.hero-right {
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
  position: relative;
  overflow: hidden;
}
.hero-right::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 40px,
    rgba(0, 0, 0, 0.02) 40px,
    rgba(0, 0, 0, 0.02) 41px
  );
}
.hero-visual-stack {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}
.hero-logo-box {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  text-align: center;
}
.hero-logo-box img {
  max-width: 180px;
  max-height: 120px;
  object-fit: contain;
}
.hero-logo-placeholder {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant", serif;
  font-size: 48px;
  font-weight: 600;
  color: #fff;
  margin: 0 auto;
}
.hero-logo-sub {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 6px;
}
.hero-logo-tagline {
  font-size: 11px;
  color: #aaa;
  margin-top: 2px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.hero-cert-row {
  display: flex;
  gap: 8px;
}
.cert-pill {
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 12px 16px;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
}
.cert-pill strong {
  display: block;
  font-size: 13px;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: 0;
  margin-bottom: 2px;
}

/* ── TRUST STRIP ─────────────────────────────────────────────────────── */
.trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-item {
  padding: 24px 30px;
  border-right: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.trust-item:last-child {
  border-right: none;
}
.trust-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
  margin-top: 4px;
}
.trust-item strong {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 3px;
}
.trust-item span {
  font-size: 12px;
  color: var(--muted);
}

/* ── SECTION LAYOUT ──────────────────────────────────────────────────── */
section {
  padding: 90px 60px;
}
.s-label {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.s-title {
  font-family: "Cormorant", serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  color: var(--black);
  line-height: 1.1;
  margin-bottom: 14px;
}
.s-sub {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  font-weight: 300;
  max-width: 500px;
}
.s-header {
  margin-bottom: 54px;
}
.s-header.c {
  text-align: center;
}
.s-header.c .s-sub {
  margin: 0 auto;
}
.price-load-note {
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 1px;
  margin-top: 8px;
  transition: opacity 0.4s;
}

/* ── CATEGORIES ──────────────────────────────────────────────────────── */
.cats-section {
  background: var(--surface);
}
.cats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  max-width: 1200px;
  margin: 0 auto;
}
.cat-card {
  background: var(--surface);
  padding: 40px 28px;
  cursor: pointer;
  transition: background var(--transition);
  position: relative;
  overflow: hidden;
}
.cat-card:hover,
.cat-card:focus-visible {
  background: var(--black);
  outline: none;
}
.cat-card:hover .cat-name,
.cat-card:focus-visible .cat-name {
  color: #fff;
}
.cat-card:hover .cat-desc,
.cat-card:focus-visible .cat-desc {
  color: rgba(255, 255, 255, 0.4);
}
.cat-card:hover .cat-arrow,
.cat-card:focus-visible .cat-arrow {
  color: var(--red);
  transform: translateX(4px);
}
.cat-num {
  font-family: "Cormorant", serif;
  font-size: 48px;
  font-weight: 300;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 20px;
  transition: color var(--transition);
}
.cat-card:hover .cat-num {
  color: rgba(255, 255, 255, 0.08);
}
.cat-icon {
  font-size: 28px;
  margin-bottom: 16px;
  display: block;
}
.cat-name {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 6px;
  transition: color var(--transition);
}
.cat-desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
  transition: color var(--transition);
}
.cat-arrow {
  display: inline-block;
  margin-top: 20px;
  font-size: 18px;
  color: var(--border);
  transition:
    color var(--transition),
    transform var(--transition);
}
.cat-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--red-soft);
  color: var(--red);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
}
.cat-badge--dark {
  background: var(--black);
  color: #fff;
}
.cat-card:hover .cat-badge {
  background: rgba(200, 40, 26, 0.2);
  color: #ff9d97;
}
.cat-card:hover .cat-badge--dark {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

/* ── PRODUCTS ────────────────────────────────────────────────────────── */
.products-section {
  background: var(--bg);
}
.filter-row {
  display: flex;
  gap: 0;
  border: 1px solid var(--border);
  width: fit-content;
  overflow: hidden;
}
.filter-btn {
  padding: 10px 22px;
  border: none;
  background: transparent;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--muted);
  font-family: "Outfit", sans-serif;
  transition: all var(--transition);
  border-right: 1px solid var(--border);
}
.filter-btn:last-child {
  border-right: none;
}
.filter-btn.active,
.filter-btn:hover {
  background: var(--black);
  color: #fff;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 1px;
  background: var(--border);
  max-width: 1200px;
  margin: 0 auto;
}
/* ── CLEANED PRODUCT CARDS ─────────────────────────────────────────── */
.product-card {
  position: relative;
  background: #ffffff;
  border: 1px solid #eaeaea;
  display: flex;
  flex-direction: column;
  padding: 16px;
  box-sizing: border-box;
  cursor: pointer;

  /* Retains the smooth entry fade-in layout animation */
  opacity: 0;
  transform: translateY(16px);
}
.product-card.vis,
.product-card.in {
  animation: pIn 0.45s ease forwards;
}
@keyframes pIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Premium Solid Black Label Tags */
.prod-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #000000;
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 8px;
  z-index: 2;
  text-transform: uppercase;
}

/* Image Container with Dynamic Placeholder Toggle */
.prod-img-container {
  position: relative;
  width: 100%;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fdfdfd;
  overflow: hidden;
  margin-bottom: 12px;
}

.live-prod-img {
  width: auto;
  height: 100%;
  object-fit: contain;
}

.fallback-emoji {
  font-size: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
}

/* Info Architecture */
.prod-cat {
  font-size: 11px;
  color: #888888;
  letter-spacing: 0.5px;
  font-weight: 500;
  display: block;
  margin-bottom: 4px;
}

.prod-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.prod-name {
  font-size: 15px;
  font-weight: 600;
  color: #111111;
  margin: 0;
}

/* Inline Weight / Size Badge Container */
.prod-size-badge {
  background: #f0f0f0;
  color: #444444;
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 4px;
  white-space: nowrap;
}

/* Footer layout (Price left, Black Add Button right) */
.prod-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.prod-price {
  display: flex;
  align-items: center;
  gap: 6px;
}

.current-price {
  font-size: 16px;
  font-weight: 600;
  color: #111111;
}

.prod-old {
  font-size: 13px;
  color: #b5b5b5;
  text-decoration: line-through;
}

/* Solid Black Circular + Button */
.add-btn {
  width: 32px;
  height: 32px;
  background: #000000;
  color: #ffffff;
  border: none;
  border-radius: 50%;
  font-size: 16px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.add-btn:hover {
  transform: scale(1.08);
}
.add-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  border: none;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s,
    transform 0.15s;
  line-height: 1;
}
.add-btn:hover {
  background: var(--gold);
  transform: scale(1.1);
}

/* Price skeleton shimmer */
.price-skeleton {
  display: inline-block;
  width: 56px;
  height: 18px;
  background: linear-gradient(
    90deg,
    var(--border) 25%,
    var(--cream) 50%,
    var(--border) 75%
  );
  background-size: 200%;
  animation: shimmer 1.4s infinite;
  border-radius: 3px;
  vertical-align: middle;
}
@keyframes shimmer {
  0% {
    background-position: 200%;
  }
  100% {
    background-position: -200%;
  }
}

/* ── ABOUT ────────────────────────────────────────────────────────────── */
.about-section {
  background: var(--surface);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}
.about-body {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.9;
  font-weight: 300;
}
.about-nums {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 40px;
  border-top: 1px solid var(--border);
}
.about-num {
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  padding-right: 24px;
}
.about-num:nth-child(even) {
  padding-left: 24px;
  padding-right: 0;
  border-left: 1px solid var(--border);
}
.about-num strong {
  display: block;
  font-family: "Cormorant", serif;
  font-size: 36px;
  font-weight: 400;
  color: var(--black);
  line-height: 1;
}
.about-num span {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 4px;
  display: block;
}

.director-card {
  border: 1px solid var(--border);
  padding: 40px;
}
.dir-top {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 28px;
}
.dir-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.dir-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.dir-avatar-fallback {
  font-family: "Cormorant", serif;
  font-size: 22px;
  color: #fff;
  font-weight: 400;
}
.dir-name {
  font-family: "Cormorant", serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--black);
}
.dir-role {
  font-size: 12px;
  color: var(--muted);
  margin-top: 3px;
}
.dir-phone {
  font-size: 12px;
  color: var(--red);
  margin-top: 6px;
  letter-spacing: 0.5px;
}
.dir-quote {
  font-family: "Cormorant", serif;
  font-style: italic;
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
  padding-left: 20px;
  border-left: 2px solid var(--red);
  margin-bottom: 28px;
}
.exh-label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.exh-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.exh-item {
  border: 1px solid var(--border);
  padding: 10px 14px;
  font-size: 12px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.exh-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}
.certs {
  display: flex;
  gap: 8px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.cert-tag {
  border: 1px solid var(--border);
  padding: 6px 14px;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ── WHY US ──────────────────────────────────────────────────────────── */
.why-section {
  background: var(--black);
}
.why-section .s-title {
  color: #fff;
}
.why-section .s-sub {
  color: rgba(255, 255, 255, 0.35);
}
.why-section .s-label {
  color: var(--red);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.06);
  max-width: 1100px;
  margin: 0 auto;
}
.why-card {
  background: var(--black);
  padding: 44px 36px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s;
}
.why-card:hover {
  border-bottom-color: var(--red);
}
.why-n {
  font-family: "Cormorant", serif;
  font-size: 52px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.683);
  line-height: 1;
  margin-bottom: 20px;
}
.why-card h3 {
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 10px;
}
.why-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.8;
  font-weight: 300;
}

/* ── CONTACT ─────────────────────────────────────────────────────────── */

/* ── FOOTER ──────────────────────────────────────────────────────────── */
footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.45);
  padding: 64px 60px 28px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 56px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.f-brand-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}
.f-logo-mark {
  background: #fff !important;
}
.f-logo-mark .logo-mark-fallback {
  color: var(--black) !important;
}
.f-brand-name {
  color: #fff !important;
}
.f-brand-tagline {
  color: rgba(255, 255, 255, 0.3) !important;
}
.f-desc {
  font-family: "Cormorant", serif;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.35);
  margin: 20px 0;
}
.social-row {
  display: flex;
  gap: 8px;
}
.soc-btn {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.4);
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  transition: all 0.2s;
}
.soc-btn:hover {
  border-color: var(--red);
  color: var(--red);
  background: rgba(200, 40, 26, 0.1);
}
.fssai-pill {
  display: inline-block;
  margin-top: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 16px;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
}
.fssai-pill strong {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}
footer h4 {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 20px;
}
footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
footer ul a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.2s;
  font-weight: 300;
}
footer ul a:hover {
  color: #fff;
}
.footer-disclaimer {
  margin-top: 20px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.25);
  line-height: 1.6;
}
.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11.5px;
  letter-spacing: 0.3px;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-link-btn {
  background: none;
  border: none;
  color: var(--red);
  font-size: 11.5px;
  font-family: "Outfit", sans-serif;
  cursor: pointer;
  padding: 0;
  transition: opacity 0.2s;
}
.footer-link-btn:hover {
  opacity: 0.75;
}

/* ── WHATSAPP FLOAT ──────────────────────────────────────────────────── */
.wa-float {
  position: fixed;
  left: 22px;
  bottom: 28px;
  z-index: 999;
  width: 52px;
  height: 52px;
  background: #22c35e;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  border-radius: 50%;
  box-shadow: 0 4px 18px rgba(34, 195, 94, 0.35);
  animation: waPulse 3s ease infinite;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(34, 195, 94, 0.5);
}
@keyframes waPulse {
  0%,
  100% {
    box-shadow: 0 4px 18px rgba(34, 195, 94, 0.35);
  }
  50% {
    box-shadow:
      0 4px 28px rgba(34, 195, 94, 0.6),
      0 0 0 8px rgba(34, 195, 94, 0.1);
  }
}

/* ── CART PANEL ──────────────────────────────────────────────────────── */
.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 199;
  background: rgba(0, 0, 0, 0.35);
  display: none;
  backdrop-filter: blur(2px);
  transition: opacity var(--transition);
}
.cart-overlay.open {
  display: block;
}
.cart-panel {
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  width: 420px;
  background: var(--surface);
  z-index: 200;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--border);
}
.cart-panel.open {
  transform: translateX(0);
}
.cart-head {
  padding: 22px 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}
.cart-head h2 {
  font-family: "Cormorant", serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--black);
}
.cart-x {
  background: none;
  border: none;
  font-size: 20px;
  color: var(--muted);
  line-height: 1;
  transition: color 0.2s;
}
.cart-x:hover {
  color: var(--red);
}
.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  min-height: 80px;
}
.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--muted);
}
.empty-state .e-icon {
  font-size: 40px;
  margin-bottom: 12px;
}
.cart-item-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.ci-emoji {
  font-size: 30px;
  width: 44px;
  text-align: center;
}
.ci-info {
  flex: 1;
}
.ci-info strong {
  font-size: 13.5px;
  display: block;
  color: var(--ink);
  font-weight: 500;
}
.ci-info span {
  font-size: 12px;
  color: var(--muted);
}
.ci-price {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  white-space: nowrap;
}
.ci-rm {
  background: none;
  border: none;
  color: var(--border);
  font-size: 16px;
  transition: color 0.2s;
  flex-shrink: 0;
}
.ci-rm:hover {
  color: var(--red);
}

/* Cart form */
.cart-form {
  padding: 16px 20px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.cart-form-title {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.cart-input {
  width: 100%;
  border: 1px solid var(--border);
  background: var(--bg);
  padding: 11px 14px;
  font-size: 13px;
  font-family: "Outfit", sans-serif;
  color: var(--ink);
  outline: none;
  transition: border 0.2s;
  margin-bottom: 10px;
  border-radius: 0;
  display: block;
}
.cart-input:focus {
  border-color: var(--black);
}
.cart-input::placeholder {
  color: var(--muted);
  font-weight: 300;
}
.cart-textarea {
  resize: none;
  height: 68px;
  margin-bottom: 10px;
}
.remember-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--muted);
  cursor: pointer;
  user-select: none;
}
.remember-row input[type="checkbox"] {
  width: 15px;
  height: 15px;
  accent-color: var(--red);
  cursor: pointer;
  flex-shrink: 0;
}

/* Cart footer */
.cart-foot {
  padding: 18px 20px;
  flex-shrink: 0;
}
.cart-tot {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 4px;
  font-size: 14px;
}
.cart-tot strong {
  font-family: "Cormorant", serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--black);
}
.cart-tot-note {
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 14px;
  font-style: italic;
}
.btn-chk {
  width: 100%;
  background: var(--gold);
  color: #fff;
  border: none;
  padding: 15px;
  font-size: 13px;
  font-weight: 600;
  font-family: "Outfit", sans-serif;
  letter-spacing: 0.8px;
  transition: background var(--transition);
  text-transform: uppercase;
}
.btn-chk:hover {
  background: var(--gold-hover);
}
.btn-chk:disabled {
  background: var(--muted);
  cursor: not-allowed;
}

/* ── PRODUCT MODAL ────────────────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(4px);
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.modal-box {
  background: var(--surface);
  width: 100%;
  max-width: 480px;
  position: relative;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-modal);
  max-height: 90vh;
  overflow-y: auto;
}
.modal-overlay.open .modal-box {
  transform: translateY(0) scale(1);
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  width: 32px;
  height: 32px;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  color: var(--muted);
  z-index: 2;
}
.modal-close:hover {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}
.modal-emoji {
  font-size: 80px;
  text-align: center;
  padding: 36px 24px 20px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  line-height: 1;
}
.modal-meta-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 24px 4px;
}
.modal-cat {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}
.modal-tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: var(--red);
  color: #fff;
  padding: 3px 8px;
}
.modal-name {
  font-family: "Cormorant", serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--black);
  padding: 0 24px 8px;
  line-height: 1.2;
}
.modal-desc {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.8;
  padding: 0 24px 18px;
  font-weight: 300;
}
.modal-price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 0 24px 20px;
  border-bottom: 1px solid var(--border);
}
.modal-price {
  font-family: "Cormorant", serif;
  font-size: 32px;
  font-weight: 400;
  color: var(--black);
}
.modal-old {
  font-size: 14px;
  color: var(--border);
  text-decoration: line-through;
}
.modal-savings {
  font-size: 12px;
  color: var(--success);
  font-weight: 500;
  background: rgba(26, 140, 78, 0.08);
  padding: 3px 8px;
}
.modal-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  gap: 16px;
}
.modal-qty-row {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--border);
  overflow: hidden;
}
.modal-qty-btn {
  width: 40px;
  height: 44px;
  background: var(--bg);
  border: none;
  font-size: 20px;
  color: var(--ink);
  transition:
    background 0.2s,
    color 0.2s;
  font-family: "Outfit", sans-serif;
  line-height: 1;
}
.modal-qty-btn:hover {
  background: var(--black);
  color: #fff;
}
.modal-qty-val {
  width: 48px;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  color: var(--black);
  font-family: "Outfit", sans-serif;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  height: 44px;
  line-height: 44px;
}
.btn-add-modal {
  flex: 1;
  background: var(--gold);
  color: #fff;
  border: none;
  padding: 14px 20px;
  font-size: 13px;
  font-weight: 600;
  font-family: "Outfit", sans-serif;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  transition: background var(--transition);
  height: 44px;
}
.btn-add-modal:hover {
  background: var(--gold-hover);
}

/* ── PRIVACY MODAL ────────────────────────────────────────────────────── */
.privacy-modal-box {
  max-width: 560px;
  padding-bottom: 24px;
}
.privacy-modal-box .modal-name {
  padding: 28px 28px 0;
  font-size: 28px;
}
.privacy-content {
  padding: 0 28px;
}
.privacy-date {
  font-size: 12px;
  color: var(--muted);
  margin: 12px 0 20px;
}
.privacy-content h4 {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--black);
  margin: 22px 0 8px;
  font-weight: 600;
}
.privacy-content p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 4px;
}
.privacy-content a {
  color: var(--red);
}
.privacy-content strong {
  color: var(--ink);
  font-weight: 500;
}
.privacy-content em {
  font-style: italic;
}

/* ── SUCCESS TOAST ────────────────────────────────────────────────────── */
.success-toast {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 500;
  background: var(--black);
  color: #fff;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 340px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  transform: translateY(100px);
  opacity: 0;
  transition:
    transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.4s ease;
  pointer-events: none;
}
.success-toast.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.toast-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--success);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.success-toast strong {
  display: block;
  font-size: 13px;
  color: #fff;
  margin-bottom: 2px;
}
.success-toast span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
}

/* ── MOBILE NAV ───────────────────────────────────────────────────────── */
.mob-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 150;
  background: var(--black);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
}
.mob-nav.open {
  display: flex;
}
.mob-link {
  font-family: "Cormorant", serif;
  font-size: 32px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
}
.mob-link:hover {
  color: #fff;
}
.mob-close {
  position: absolute;
  top: 24px;
  right: 28px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 28px;
}

/* ── REVEAL ANIMATIONS ────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.rd1 {
  transition-delay: 0.1s;
}
.rd2 {
  transition-delay: 0.2s;
}
.rd3 {
  transition-delay: 0.3s;
}

/* ── RESPONSIVE ─────────────────────────────────────────────────────── */
@media (max-width: 1000px) {
  nav {
    padding: 0 24px;
  }
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-right {
    display: none;
  }
  .hero-left {
    padding: 60px 28px;
    min-height: 80vh;
  }
  section {
    padding: 60px 24px;
  }
  .cats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .trust {
    grid-template-columns: 1fr 1fr;
  }
  .cart-panel {
    width: 100%;
    max-width: 420px;
  }
}
@media (max-width: 600px) {
  .cats-grid {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .c-form-grid {
    grid-template-columns: 1fr;
  }
  .about-nums {
    grid-template-columns: 1fr;
  }
  .about-num:nth-child(even) {
    padding-left: 0;
    border-left: none;
  }
  .hero-stats {
    flex-wrap: wrap;
    gap: 20px;
  }
  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  }
  .filter-row {
    flex-wrap: wrap;
    width: 100%;
  }
  .filter-btn {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .modal-actions {
    flex-direction: column;
  }
  .modal-qty-row {
    width: 100%;
    justify-content: center;
  }
  .btn-add-modal {
    width: 100%;
  }
  .success-toast {
    right: 16px;
    left: 16px;
    max-width: none;
  }
  .cart-panel {
    max-width: 100%;
  }
  footer {
    padding: 48px 24px 24px;
  }
}
/* ── DYNAMIC SPREADSHEET IMAGES MATCH ── */
.prod-img img.live-prod-img {
  width: 100%;
  height: 100%;
  max-height: 150px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  pointer-events: none;
}

/* ── MODAL IMAGES FIXED SQUARE & NO SCROLL ────────────────────────── */
.modal-main-image-wrap {
  width: 50%;
  aspect-ratio: 1 / 1; /* 🌟 Forces a clean, square 1:1 box aspect */
  height: auto; /* Removes old static 300px height causing overflow */
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.modal-main-image-wrap img {
  width: 70%;
  height: 70%;
  object-fit: none; /* Preserves original spice aspect layout ratio */
}

/* Adjust the inner grid padding to make sure everything sits nicely */
.modal-layout-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px; /* Reduced from 32px to save structural space */
  padding: 8px; /* Squeezes layout heights inside bounds */
}

.modal-thumbnails-track {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.modal-thumb {
  width: 70px;
  height: 70px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  object-fit: contain;
  cursor: pointer;
  background: #fff;
  padding: 4px;
  transition: var(--transition);
}

.modal-thumb:hover,
.modal-thumb.active {
  border-color: var(--red);
}

@media (max-width: 768px) {
  .modal-layout-grid {
    grid-template-columns: 1fr;
  }
}
.prod-size-badge {
  background-color: var(
    --gold-dark,
    #cda250
  ); /*  theme ka gold ya accent colour */
  color: #000;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 4px;
  text-transform: lowercase;
}
/* ── NEW WHATSAPP HERO WRAPPER WITH DYNAMIC SPACE ───────────────────── */
.hero-actions-wrapper {
  display: block;
  clear: both;

  /* 👇 TOP SE SPACE: Yeh 2 lines ka perfect gap bana dega */
  margin-top: 36px;

  /* 👇 LEFT SE RIGHT PUSH: Jitna aage badhana ho, is 70px ko bada dena */
  padding-left: 70px;
}

/* ── PREMIUM WHATSAPP BUTTON STYLING ────────────────────────────────── */
.btn-whatsapp-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  padding: 16px 24px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}

.btn-whatsapp-hero:hover {
  background: #20ba5a;
}
/* Card Structure & Layout */
.product-card {
  position: relative;
  background: #fff;
  border: 1px solid #eaeaea;
  display: flex;
  flex-direction: column;
  padding: 16px;
  box-sizing: border-box;
}

/* Crisp Black Tag Labels */
.prod-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #000000;
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 8px;
  z-index: 2;
  text-transform: uppercase;
}

/* Image Container with Dynamic Placeholder Toggle */
.prod-img-container {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1; /* Forces perfect 1:1 square aspect box */
  height: auto; /* Removes old fixed heights */
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fdfdfd;
  overflow: hidden;
  margin-bottom: 12px;
}

.live-prod-img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Ensures the entire item fits cleanly without stretching */
  background: #fdfdfd; /* Fills the box canvas background */
}

.fallback-emoji {
  font-size: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
}

/* Category & Title Row Settings */
.prod-cat {
  font-size: 11px;
  color: #888888;
  letter-spacing: 0.5px;
  font-weight: 500;
  display: block;
  margin-bottom: 4px;
}

.prod-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.prod-name {
  font-size: 15px;
  font-weight: 600;
  color: #111;
  margin: 0;
}

/* Grey Size Badge Container */
.prod-size-badge {
  background: #f0f0f0;
  color: #444;
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 4px;
  white-space: nowrap;
}

/* Footer layout (Price left, Black Add Button right) */
.prod-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.prod-price {
  display: flex;
  align-items: center;
  gap: 6px;
}

.current-price {
  font-size: 16px;
  font-weight: 600;
  color: #111;
}

.prod-old {
  font-size: 13px;
  color: #b5b5b5;
  text-decoration: line-through;
}

/* Solid Black Circular Button */
.add-btn {
  width: 32px;
  height: 32px;
  background: #000000;
  color: #ffffff;
  border: none;
  border-radius: 50%;
  font-size: 16px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.add-btn:hover {
  transform: scale(1.08);
}
/* ── RESPONSIVE PRODUCT MODAL ──────────────────────────────────────── */
.prod-modal {
  background: var(--surface);
  width: 90%; /* Fluid layout on smaller viewports */
  max-width: 720px; /* Hard ceiling so it never blows out on desktop */
  max-height: 85vh; /* Never grows taller than 85% of the viewport height */
  border-radius: var(--radius-sm);
  padding: 32px;
  position: relative;
  box-shadow: var(--shadow-modal);

  /* Enables internal scrolling if content overflows on small screens or heavy zoom */
  overflow-y: auto;

  /* Smooth scale-up structural entry */
  transform: scale(0.95);
  transition: transform var(--transition);
}

/* When the overlay parent is active */
.prod-modal-overlay.open .prod-modal {
  transform: scale(1);
}
