/* ===========================
   AAKAAR LAB — 3DSETS STYLE
   Clean · Editorial · White
   =========================== */

/* ---------- Variables ---------- */
:root {
  --orange: #e60023;          /* Brand Red (Matches Logo) */
  --orange-dark: #c2001b;     /* Darker Red */
  --orange-light: rgba(230,0,35,0.08);
  --teal: #ffa000;            /* Warm Amber Accent */
  --teal-dark: #d48000;
  --bg: #f5f6f8;              /* Soft Light Grey Background */
  --bg-light: #ffffff;        /* Pure White Blocks */
  --bg-off: #f8f9fa;
  --text: #212121;            /* Dark text */
  --text-2: #666666;          /* Secondary text */
  --text-muted: #9e9e9e;
  --border: #e0e0e0;          /* Muted borders */
  --whatsapp: #25D366;
  --whatsapp-dark: #128C7E;
  --radius: 4px;              /* Flipkart sharp cards/radius */
  --radius-sm: 2px;
  --radius-lg: 8px;
  --shadow: 0 1px 4px 0 rgba(0,0,0,0.08);
  --shadow-hover: 0 4px 12px 0 rgba(0,0,0,0.12);
  --transition: all 0.15s ease-in-out;
  --font: 'Open Sans', sans-serif;
  --font2: 'Outfit', sans-serif;
  --header-h: 56px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--bg); color: var(--text); overflow-x: hidden; line-height: 1.6; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: var(--font); border: none; background: none; }
ul { list-style: none; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-light); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 3px; }
.hidden { display: none !important; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }

/* ---------- Fraud Banner ---------- */
.fraud-banner {
  background: #1a1a1a; color: #fff;
  padding: 7px 0; font-size: 0.8rem; font-weight: 600;
  text-align: center; position: relative; z-index: 1000;
}
.fraud-banner-content {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; padding-right: 32px; flex-wrap: wrap;
}
.fraud-close {
  position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
  background: none; color: rgba(255,255,255,0.6); font-size: 0.9rem;
  width: 24px; height: 24px; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; transition: var(--transition);
}
.fraud-close:hover { color: #fff; background: rgba(255,255,255,0.1); }

/* ---------- Flipkart-style Two-Row Header Layout ---------- */
.header-group {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  width: 100%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.main-header {
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  height: 56px;
  display: flex;
  align-items: center;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 24px;
}
.nav-brand-section {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo-img {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  object-fit: contain;
  background: #fff;
  padding: 1px;
  border: 1px solid var(--border);
}
.logo-text {
  display: flex;
  flex-direction: column;
}
.logo-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: 0.04em;
  font-family: var(--font2);
  font-style: italic;
}

/* Wide Search Bar Wrapper */
.nav-search-wrapper {
  flex: 1;
  max-width: 560px;
}
.nav-search {
  position: relative;
  width: 100%;
}
.nav-search input {
  background: #f0f2f5;
  border: 1px solid transparent;
  color: var(--text);
  padding: 8px 36px 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  outline: none;
  transition: var(--transition);
  font-family: var(--font);
  width: 100%;
  height: 36px;
}
.nav-search input:focus {
  border-color: var(--orange);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(255,96,0,0.1);
}
.nav-search-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--orange);
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Nav Actions Section */
.nav-actions-section {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

/* Category Sub-Header */
.sub-header-categories {
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  height: 40px;
  display: flex;
  align-items: center;
}
.sub-nav-center {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: center;
  width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.sub-nav-center::-webkit-scrollbar {
  display: none;
}
.sub-nav-center .nav-cat-btn {
  padding: 6px 0;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-2);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
  flex-shrink: 0;
  cursor: pointer;
  border-radius: 0;
  display: flex;
  align-items: center;
  gap: 4px;
}
.sub-nav-center .nav-cat-btn:hover {
  color: var(--orange);
}
.sub-nav-center .nav-cat-btn.active {
  color: var(--orange);
  border-bottom-color: var(--orange);
}
.cat-icon {
  font-size: 0.95rem;
}
.nav-login-link {
  font-size: 0.88rem;
  font-weight: 700;
  color: #ffffff;
  background: var(--orange);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  padding: 6px 20px;
  border: 1px solid var(--orange);
  box-shadow: var(--shadow);
}
.nav-login-link:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
}
.cart-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  color: var(--text);
  border: none;
  padding: 6px 12px;
  font-size: 0.88rem;
  font-weight: 700;
  transition: var(--transition);
  border-radius: 0;
}
.cart-btn:hover {
  transform: translateY(-1px);
  color: var(--orange);
}
.cart-btn.flash {
  animation: btnFlash 0.4s ease;
}
@keyframes btnFlash { 0%,100%{color:var(--text)} 50%{color:var(--orange)} }
.cart-count {
  background: var(--orange); 
  color: #ffffff;
  border-radius: 50%;
  padding: 1px 6px;
  font-size: 0.72rem;
  font-weight: 800;
  min-width: 18px;
  text-align: center;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  display: block;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
/* ---------- Lineup Banner (Orange Card Layout) ---------- */
.lineup-banner {
  padding: 48px 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.lineup-layout {
  display: block;
}
.lineup-card-orange {
  background: var(--orange);
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  padding: 48px;
  align-items: center;
  box-shadow: 0 12px 48px rgba(255,99,25,0.25);
  color: #fff;
}
.lineup-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.lineup-title {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-family: var(--font2);
  color: #fff;
}
.lineup-desc {
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.9);
}
.lineup-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn-dark-lineup {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1a1a1a;
  color: #fff;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 700;
  border: none;
  transition: var(--transition);
  cursor: pointer;
}
.btn-dark-lineup:hover {
  background: #000;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.btn-light-lineup {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  color: #fff;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 700;
  border: 1px solid rgba(255,255,255,0.3);
  transition: var(--transition);
  cursor: pointer;
}
.btn-light-lineup:hover {
  background: #fff;
  color: var(--orange);
  border-color: #fff;
  transform: translateY(-1px);
}
.lineup-visual {
  position: relative;
  width: 100%;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 26px; border-radius: var(--radius-sm); font-size: 0.9rem;
  font-weight: 700; transition: var(--transition); font-family: var(--font);
  border: none; cursor: pointer;
}
.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(255,99,25,0.3); }
.btn-light { background: var(--bg-off); color: var(--text); border: 1px solid var(--border); }
.btn-light:hover { border-color: var(--orange); color: var(--orange); }
.btn-whatsapp { background: var(--whatsapp); color: #fff; }
.btn-whatsapp:hover { background: var(--whatsapp-dark); }
.btn-outline { background: transparent; color: var(--orange); border: 2px solid var(--orange); }
.btn-outline:hover { background: var(--orange); color: #fff; }

/* ---------- Flipkart Carousel Slider ---------- */
.flipkart-slider-section {
  padding: 8px 0;
  background: var(--bg);
}
.slider-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 8px;
}
.hero-slider {
  position: relative; 
  border-radius: var(--radius); 
  overflow: hidden;
  aspect-ratio: 10/3; /* Original landscape aspect ratio */
  background: #fff; 
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,0.06);
  width: 100%;
}
.slider-track { display: flex; height: 100%; transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
.slide { 
  min-width: calc(100% / 3); 
  height: 100%; 
  flex-shrink: 0; 
  overflow: hidden; 
  position: relative; 
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-right: 1px solid rgba(0,0,0,0.06);
  padding: 4px;
}
.slide img { 
  width: 100%; 
  height: 100%; 
  object-fit: contain; 
  transition: transform 0.3s ease;
}
.slide:hover img {
  transform: scale(1.04);
}
.slide-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: #fff; padding: 16px 12px 8px; font-size: 0.82rem; font-weight: 600;
  text-align: center;
}
@media (max-width: 768px) {
  .slide {
    min-width: 100%;
    border-right: none;
  }
}
.slider-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 40px; height: 70px; /* Rectangular side arrows like Flipkart */
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(0,0,0,0.06); color: #212121; font-size: 1.5rem;
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  z-index: 5; transition: var(--transition);
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}
.slider-btn:hover { background: #fff; color: var(--orange); }
.slider-prev { left: 0; border-radius: 0 4px 4px 0; }
.slider-next { right: 0; border-radius: 4px 0 0 4px; }
.slider-dots {
  position: absolute; bottom: 8px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 6px; z-index: 5;
}
.slider-dot {
  width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.4);
  cursor: pointer; transition: var(--transition);
}
.slider-dot.active { background: #fff; width: 8px; }

/* ---------- 3dsets Crossroad Blocks Styling ---------- */
.crossroad-section {
  padding: 48px 0;
  background: var(--bg-light);
  border-bottom: 1px solid var(--border);
}
.crossroad-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  width: 100%;
}
.crossroad-row:last-child {
  margin-bottom: 0;
}
.crossroad-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--bg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: var(--transition);
  padding: 32px;
  min-height: 320px;
  text-decoration: none;
  color: var(--text);
  z-index: 1;
}
.crossroad-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}
.large-card {
  flex: 3;
}
.small-card {
  flex: 1;
}
.three-cols .col-card {
  flex: 1;
  min-height: 280px;
}
.teal-bg {
  background-color: var(--teal) !important;
  border-color: var(--teal) !important;
}
.teal-bg .crossroad-content h2,
.teal-bg .crossroad-content p {
  color: #fff !important;
}
.teal-bg .btn-arrow-right {
  background: #fff !important;
  color: var(--teal) !important;
  border-color: #fff !important;
}
.crossroad-content {
  position: relative;
  z-index: 3;
  max-width: 80%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.crossroad-content h2 {
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1.3;
  color: var(--text);
  font-family: var(--font2);
}
.crossroad-content p {
  font-size: 0.88rem;
  color: var(--text-2);
}
.crossroad-img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: auto;
  height: 90%;
  object-fit: contain;
  z-index: 2;
  pointer-events: none;
  transition: transform 0.5s ease;
}
.crossroad-card:hover .crossroad-img {
  transform: scale(1.04);
}
.btn-arrow-right {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--orange);
  color: #fff;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.84rem;
  font-weight: 700;
  width: fit-content;
  transition: var(--transition);
  margin-top: 14px;
  border: 1px solid var(--orange);
  z-index: 3;
}
.crossroad-card:hover .btn-arrow-right {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
}

@media (max-width: 900px) {
  .crossroad-row {
    flex-direction: column;
  }
  .large-card, .small-card, .three-cols .col-card {
    flex: none;
    width: 100%;
    min-height: 240px;
  }
  .crossroad-img {
    height: 70%;
  }
}

/* ---------- Products Section ---------- */
.products-section {
  padding: 60px 0;
  background: var(--bg);
  scroll-margin-top: 130px; /* Offset for sticky header and category tabs */
}
.products-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 32px; gap: 16px; flex-wrap: wrap;
}
.products-title {
  font-size: 1.6rem; font-weight: 800; color: var(--text); font-family: var(--font2);
}

.search-box { position: relative; }
.search-box input {
  background: var(--bg-light); border: 1.5px solid var(--border); color: var(--text);
  padding: 9px 38px 9px 16px; border-radius: 100px; font-size: 0.86rem;
  outline: none; transition: var(--transition); font-family: var(--font); width: 280px;
}
.search-box input:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(255,99,25,0.1); }
.search-box input::placeholder { color: var(--text-muted); }
.search-icon { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); color: var(--text-muted); pointer-events: none; }

/* Product Grid — 4 columns like 3dsets */
.products-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
/* Product Card — Flipkart style */
.product-card {
  background: var(--bg-light); 
  border: 1px solid rgba(0,0,0,0.06); 
  border-radius: var(--radius);
  overflow: hidden; 
  transition: var(--transition); 
  position: relative;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.product-card:hover { 
  transform: translateY(-2px); 
  box-shadow: var(--shadow-hover); 
  border-color: rgba(0,0,0,0.12);
}

/* Badge */
.product-badge {
  position: absolute; top: 8px; left: 8px; z-index: 3;
  padding: 2px 8px; border-radius: var(--radius-sm); font-size: 0.65rem; font-weight: 700;
  color: #fff; text-transform: uppercase;
}
.product-badge.new { background: #26a541; }
.product-badge.popular { background: var(--orange); }
.product-badge.sale { background: var(--teal); color: #fff; }
.product-badge.out-of-stock { background: #9e9e9e; }

/* Image wrapper — Flipkart vertical 1:1 or clean bounds */
.product-image-wrapper { position: relative; aspect-ratio: 1/1; overflow: hidden; background: #fff; padding: 12px; }
.product-image-wrapper img { width: 100%; height: 100%; object-fit: contain; transition: transform 0.3s ease; }
.product-card:hover .product-image-wrapper img { transform: scale(1.03); }
.product-overlay {
  position: absolute; inset: 0; background: rgba(0,0,0,0.02);
  opacity: 0; transition: var(--transition);
}
.product-card:hover .product-overlay { opacity: 1; }

/* Product info */
.product-info { padding: 14px; display: flex; flex-direction: column; gap: 4px; flex: 1; justify-content: flex-end; }
.product-category-tag { font-size: 0.65rem; color: var(--text-2); font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }
.product-name { font-size: 0.86rem; font-weight: 600; color: var(--text); line-height: 1.3; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.product-desc { font-size: 0.74rem; color: var(--text-2); line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; display: none; } /* Hide descriptions on card in Flipkart style */
.product-meta { display: flex; flex-direction: column; gap: 4px; margin-top: 4px; }
.product-price { font-size: 0.95rem; font-weight: 700; color: #212121; }
.product-price .original { font-size: 0.74rem; color: var(--text-muted); text-decoration: line-through; margin-left: 6px; font-weight: 400; }
.product-rating { font-size: 0.72rem; color: #fff; background: #26a541; padding: 2px 6px; border-radius: 3px; font-weight: 700; display: inline-flex; align-items: center; gap: 3px; width: fit-content; }

/* Action row */
.product-actions { display: flex; gap: 6px; padding: 0 14px 14px; }
.btn-buy-now {
  flex: 1; background: #ff9f00; color: #fff; border: none;
  padding: 8px 10px; border-radius: var(--radius-sm); font-family: var(--font);
  font-size: 0.78rem; font-weight: 700; cursor: pointer; transition: var(--transition);
  display: flex; align-items: center; justify-content: center; gap: 4px;
  text-transform: uppercase;
}
.btn-buy-now:hover:not(:disabled) { background: #f19300; }
.btn-buy-now:disabled { opacity: 0.45; cursor: not-allowed; background: var(--text-muted); }
.btn-add-cart {
  background: #ff5722; color: #fff; border: none;
  padding: 8px 10px; border-radius: var(--radius-sm); font-size: 0.78rem;
  font-weight: 700; cursor: pointer; transition: var(--transition);
  text-transform: uppercase;
}
.btn-add-cart:hover:not(:disabled) { background: #e54b1d; }
.btn-add-cart:disabled { opacity: 0.4; cursor: not-allowed; }

.no-products { text-align: center; padding: 60px 20px; grid-column: 1/-1; }
.no-products-icon { font-size: 3rem; margin-bottom: 12px; }
.no-products h3 { font-size: 1.1rem; color: var(--text); margin-bottom: 6px; }
.no-products p { color: var(--text-muted); font-size: 0.9rem; }

/* ---------- Section Tag ---------- */
.section-tag {
  display: inline-block; background: var(--orange-light); color: var(--orange);
  padding: 4px 14px; border-radius: 100px; font-size: 0.72rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 10px;
}

/* ---------- About (3dsets columns style) ---------- */
.about-section {
  padding: 80px 0;
  background: var(--bg-light);
  border-top: 1px solid var(--border);
  position: relative;
  text-align: center;
}
.about-title-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 600px;
  margin: 0 auto 48px;
}
.about-logo-badge {
  width: 50px;
  height: 50px;
  object-fit: contain;
}
.about-title-block h2 {
  font-size: 2.1rem;
  font-weight: 300;
  line-height: 1.3;
  color: var(--text);
}
.about-title-block h2 strong {
  font-weight: 800;
}
.about-grid-3dsets {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 40px;
  text-align: center;
}
.about-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.about-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
}
.about-icon-check {
  color: var(--orange);
  font-size: 1.3rem;
  font-weight: bold;
}
.about-col h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
}
.about-col p {
  font-size: 0.86rem;
  color: var(--text-2);
  line-height: 1.7;
  max-width: 320px;
}
.about-social-block {
  display: flex;
  justify-content: center;
  gap: 12px;
}
.social-link-3dsets {
  display: inline-flex;
  align-items: center;
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  font-size: 0.86rem;
  font-weight: 700;
  border: 1px solid var(--border);
  background: #fff;
  transition: var(--transition);
}
.social-link-3dsets.youtube {
  color: #dc2626;
  border-color: rgba(220,38,38,0.25);
}
.social-link-3dsets.youtube:hover {
  background: #dc2626;
  color: #fff;
  border-color: #dc2626;
}
.social-link-3dsets.instagram {
  color: #e1306c;
  border-color: rgba(225,48,108,0.25);
}
.social-link-3dsets.instagram:hover {
  background: #e1306c;
  color: #fff;
  border-color: #e1306c;
}

@media (max-width: 900px) {
  .about-grid-3dsets {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ---------- Contact ---------- */
.contact-section { padding: 72px 0; background: var(--bg); border-top: 1px solid var(--border); }
.contact-title { font-size: 1.8rem; font-weight: 800; font-family: var(--font2); margin-bottom: 32px; }
.contact-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 16px;
}
.contact-info-card {
  background: var(--bg-light); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 22px; display: flex; align-items: flex-start; gap: 14px; transition: var(--transition);
}
.contact-info-card:hover { border-color: var(--orange); box-shadow: var(--shadow); }
.ci-icon {
  width: 42px; height: 42px; border-radius: 9px;
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0;
}
.contact-info-card strong { display: block; font-weight: 700; font-size: 0.92rem; margin-bottom: 3px; }
.contact-info-card p { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 5px; }
.contact-info-card a { font-size: 0.84rem; color: var(--orange); font-weight: 600; }
.contact-info-card a:hover { text-decoration: underline; }

.order-steps-card {
  background: var(--bg-light); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 22px;
}
.order-steps-card h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 14px; }
.step { display: flex; align-items: center; gap: 12px; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 0.85rem; color: var(--text-2); }
.step:last-child { border-bottom: none; }
.step-num { width: 24px; height: 24px; border-radius: 50%; background: var(--orange); color: #fff; font-size: 0.72rem; font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

/* Official Contact Card */
.official-contact-card {
  background: #1a1a1a; border-radius: var(--radius); padding: 24px;
  display: flex; flex-direction: column; gap: 14px; color: #fff;
  transition: var(--transition);
}
.official-contact-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.oc-top { display: flex; align-items: center; gap: 14px; }
.oc-top h3 { font-size: 1.05rem; font-weight: 800; }
.oc-number { font-size: 1.4rem; font-weight: 900; color: var(--whatsapp); }
.oc-warn { font-size: 0.8rem; color: rgba(255,255,255,0.65); line-height: 1.6; }

/* ---------- Footer ---------- */
.footer { background: #1a1a1a; color: rgba(255,255,255,0.75); padding: 56px 0 0; }
.footer-inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 40px;
}
.footer-brand { display: flex; flex-direction: column; gap: 14px; }
.footer-logo { width: 48px; height: 48px; border-radius: 8px; object-fit: contain; border: 1px solid rgba(255,255,255,0.15); padding: 4px; background: rgba(255,255,255,0.08); }
.footer-brand p { font-size: 0.84rem; line-height: 1.7; color: rgba(255,255,255,0.55); }
.footer-social { display: flex; gap: 8px; }
.fsocial-btn {
  width: 36px; height: 36px; border-radius: 7px; background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); transition: var(--transition);
}
.fsocial-btn:hover { background: var(--orange); color: #fff; }
.footer-col h4 { font-size: 0.78rem; font-weight: 700; color: rgba(255,255,255,0.9); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 14px; }
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col li a { font-size: 0.83rem; color: rgba(255,255,255,0.55); }
.footer-col li a:hover { color: #fff; }
.footer-number { font-size: 1rem; font-weight: 800; color: var(--whatsapp); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding: 18px 0;
  display: flex; justify-content: space-between; font-size: 0.78rem; color: rgba(255,255,255,0.35);
}

/* ---------- Product Modal ---------- */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.55); backdrop-filter: blur(6px);
  z-index: 2000; display: none; align-items: center; justify-content: center; padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--bg); border-radius: var(--radius-lg); border: 1px solid var(--border);
  max-width: 840px; width: 100%; max-height: 90vh; overflow-y: auto; position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,0.15); animation: modalIn 0.28s ease-out;
}
@keyframes modalIn { from{opacity:0;transform:scale(0.95) translateY(12px)} to{opacity:1;transform:none} }
.modal-close {
  position: absolute; top: 14px; right: 14px; z-index: 2; background: var(--bg-light);
  border: 1px solid var(--border); color: var(--text-2); width: 32px; height: 32px;
  border-radius: 50%; font-size: 0.85rem; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: var(--transition);
}
.modal-close:hover { background: #ef4444; color: #fff; border-color: #ef4444; }
.modal-content { display: grid; grid-template-columns: 1fr 1fr; }
.modal-img { width: 100%; aspect-ratio: 25/16; object-fit: cover; border-radius: var(--radius-lg) 0 0 var(--radius-lg); }
.modal-details { padding: 24px; display: flex; flex-direction: column; gap: 10px; }
.modal-cat { font-size: 0.7rem; color: var(--text-muted); font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }
.modal-name { font-size: 1.2rem; font-weight: 800; color: var(--text); font-family: var(--font2); line-height: 1.3; }
.modal-price { font-size: 1.35rem; font-weight: 800; color: var(--text); }
.modal-desc { font-size: 0.84rem; color: var(--text-2); line-height: 1.7; }
.modal-specs { background: var(--bg-light); border-radius: var(--radius-sm); padding: 12px; border: 1px solid var(--border); }
.modal-specs h4 { font-size: 0.72rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 8px; }
.spec-item { display: flex; justify-content: space-between; padding: 5px 0; border-bottom: 1px solid var(--border); font-size: 0.8rem; }
.spec-item:last-child { border-bottom: none; }
.spec-item span:first-child { color: var(--text-muted); }
.spec-item span:last-child { font-weight: 700; color: var(--text); }
.modal-actions { display: flex; gap: 8px; margin-top: auto; }
.modal-actions .btn-buy-now { flex: 1; padding: 11px; font-size: 0.9rem; }
.modal-actions .btn-add-cart { padding: 11px 14px; font-size: 1rem; }

/* ---------- Cart Sidebar ---------- */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.35); z-index: 1900;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-sidebar {
  position: fixed; top: 0; right: -420px; width: 420px; height: 100vh;
  background: var(--bg); border-left: 1px solid var(--border);
  z-index: 1950; display: flex; flex-direction: column;
  transition: right 0.32s cubic-bezier(0.4,0,0.2,1);
  box-shadow: -6px 0 24px rgba(0,0,0,0.1);
}
.cart-sidebar.open { right: 0; }
.cart-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px; border-bottom: 1px solid var(--border);
}
.cart-header h3 { font-size: 1.05rem; font-weight: 800; }
.cart-close-btn {
  background: var(--bg-light); border: 1px solid var(--border); color: var(--text-2);
  width: 30px; height: 30px; border-radius: 50%; font-size: 0.85rem;
  display: flex; align-items: center; justify-content: center; transition: var(--transition);
}
.cart-close-btn:hover { background: #ef4444; color: #fff; border-color: #ef4444; }
.cart-items { flex: 1; overflow-y: auto; padding: 14px 22px; display: flex; flex-direction: column; gap: 10px; }
.cart-item {
  display: flex; align-items: flex-start; gap: 10px;
  background: var(--bg-light); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 10px;
}
.cart-item img { width: 60px; height: 60px; object-fit: cover; border-radius: var(--radius-sm); flex-shrink: 0; }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name { font-size: 0.84rem; font-weight: 600; margin-bottom: 3px; color: var(--text); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.cart-item-price { color: var(--orange); font-weight: 700; font-size: 0.88rem; margin-bottom: 6px; }
.cart-qty-ctrl { display: flex; align-items: center; gap: 7px; font-size: 0.84rem; }
.qty-btn {
  width: 22px; height: 22px; background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius-sm); cursor: pointer; font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center; transition: var(--transition);
}
.qty-btn:hover { background: var(--orange); border-color: var(--orange); color: #fff; }
.cart-item-remove { background: none; border: none; color: var(--text-muted); font-size: 0.82rem; cursor: pointer; padding: 4px; transition: var(--transition); flex-shrink: 0; }
.cart-item-remove:hover { color: #ef4444; }
.cart-empty { text-align: center; padding: 40px 20px; color: var(--text-muted); }
.cart-empty-icon { font-size: 3rem; margin-bottom: 10px; }
.cart-footer { padding: 14px 22px; border-top: 1px solid var(--border); }
.cart-total { display: flex; justify-content: space-between; font-size: 1rem; font-weight: 700; margin-bottom: 12px; }
.cart-total-amount { color: var(--orange); }
.cart-checkout-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%;
  background: var(--orange); color: #fff; border: none; padding: 13px;
  border-radius: var(--radius-sm); font-family: var(--font); font-size: 0.95rem; font-weight: 700;
  cursor: pointer; transition: var(--transition);
}
.cart-checkout-btn:hover { background: var(--orange-dark); }

/* ---------- Checkout Modal ---------- */
.checkout-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.6); backdrop-filter: blur(8px);
  z-index: 3000; display: none; align-items: flex-start; justify-content: center;
  padding: 20px; overflow-y: auto;
}
.checkout-overlay.open { display: flex; }
.checkout-modal {
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-lg);
  width: 100%; max-width: 700px; margin: auto;
  animation: modalIn 0.3s ease-out; box-shadow: 0 24px 80px rgba(0,0,0,0.15);
}
.co-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 28px; border-bottom: 1px solid var(--border);
  position: sticky; top: 0; background: var(--bg);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0; z-index: 1;
}
.co-header h2 { font-size: 1.2rem; font-weight: 800; }
.co-close {
  background: var(--bg-light); border: 1px solid var(--border); color: var(--text-2);
  width: 34px; height: 34px; border-radius: 50%; cursor: pointer; font-size: 0.95rem;
  display: flex; align-items: center; justify-content: center; transition: var(--transition);
}
.co-close:hover { background: #ef4444; color: #fff; border-color: #ef4444; }
.co-body { padding: 22px 28px 28px; display: flex; flex-direction: column; gap: 20px; }
.co-section { background: var(--bg-light); border: 1px solid var(--border); border-radius: var(--radius); padding: 18px 22px; }
.co-section-title { font-size: 0.75rem; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 14px; padding-bottom: 9px; border-bottom: 1px solid var(--border); }
.co-items { display: flex; flex-direction: column; gap: 8px; margin-bottom: 12px; }
.co-item { display: flex; align-items: center; gap: 10px; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 9px 12px; }
.co-item img { width: 48px; height: 48px; object-fit: cover; border-radius: var(--radius-sm); flex-shrink: 0; }
.co-item-name { font-size: 0.84rem; font-weight: 600; margin-bottom: 2px; }
.co-item-price { font-size: 0.75rem; color: var(--text-muted); }
.co-item-subtotal { margin-left: auto; font-size: 0.9rem; font-weight: 700; color: var(--orange); white-space: nowrap; }
.co-total-row { display: flex; justify-content: space-between; align-items: center; font-size: 1rem; font-weight: 800; padding-top: 10px; border-top: 1px solid var(--border); }
.co-total-amt { color: var(--orange); font-size: 1.2rem; }
.co-form { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.co-field { display: flex; flex-direction: column; gap: 5px; }
.co-field.full-width { grid-column: 1/-1; }
.co-field label { font-size: 0.72rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; }
.co-field input, .co-field textarea, .co-field select { background: var(--bg); border: 1.5px solid var(--border); color: var(--text); padding: 9px 12px; border-radius: var(--radius-sm); font-family: var(--font); font-size: 0.88rem; outline: none; transition: var(--transition); resize: none; }
.co-field input:focus, .co-field textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(255,99,25,0.1); }
.co-field input::placeholder, .co-field textarea::placeholder { color: var(--text-muted); }
.co-field input.field-error, .co-field textarea.field-error { border-color: #ef4444; animation: shake 0.3s ease; }
@keyframes shake { 0%,100%{transform:translateX(0)} 25%{transform:translateX(-5px)} 75%{transform:translateX(5px)} }
.payment-methods { display: flex; flex-direction: column; gap: 8px; margin-bottom: 12px; }
.payment-option input[type=radio] { display: none; }
.pm-card { display: flex; align-items: center; gap: 12px; background: var(--bg); border: 2px solid var(--border); border-radius: var(--radius); padding: 12px 16px; cursor: pointer; transition: var(--transition); }
.pm-card:hover { border-color: var(--orange); }
.payment-option.selected .pm-card { border-color: var(--orange); background: rgba(255,99,25,0.04); }
.pm-icon { font-size: 1.4rem; flex-shrink: 0; }
.pm-title { font-size: 0.9rem; font-weight: 700; }
.pm-subtitle { font-size: 0.76rem; color: var(--text-muted); margin-top: 1px; }
.pm-check { margin-left: auto; width: 20px; height: 20px; border-radius: 50%; border: 2px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 0.7rem; color: transparent; flex-shrink: 0; transition: var(--transition); }
.payment-option.selected .pm-check { background: var(--orange); border-color: var(--orange); color: #fff; }
.payment-details { border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 18px; background: var(--bg); animation: fadeIn 0.25s ease; }
@keyframes fadeIn { from{opacity:0;transform:translateY(6px)} to{opacity:1;transform:none} }
.pd-upi { display: flex; gap: 20px; align-items: flex-start; flex-wrap: wrap; }
.pd-qr-wrap { display: flex; flex-direction: column; align-items: center; gap: 6px; flex-shrink: 0; }
.pd-qr-img { width: 130px; height: 130px; border-radius: var(--radius-sm); border: 2px solid var(--orange); padding: 4px; background: #fff; object-fit: cover; }
.pd-scan-label { font-size: 0.7rem; color: var(--text-muted); font-weight: 600; }
.pd-upi-info { flex: 1; }
.pd-label { font-size: 0.7rem; color: var(--text-muted); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 5px; }
.pd-upi-id { font-size: 1rem; font-weight: 800; color: var(--orange); background: var(--bg-light); border: 1px solid var(--border); padding: 7px 12px; border-radius: var(--radius-sm); margin-bottom: 9px; word-break: break-all; }
.pd-copy-btn { background: var(--bg-light); border: 1px solid var(--border); color: var(--text); padding: 6px 12px; border-radius: var(--radius-sm); cursor: pointer; font-size: 0.78rem; font-weight: 600; transition: var(--transition); margin-bottom: 12px; font-family: var(--font); }
.pd-copy-btn:hover { border-color: var(--orange); color: var(--orange); }
.pd-upi-note { font-size: 0.8rem; color: var(--text-2); line-height: 1.7; }
.pd-upi-note ol { padding-left: 14px; margin-top: 5px; }
.pd-upi-note li { margin-bottom: 3px; }
.pd-cod { text-align: center; padding: 8px 0; }
.pd-cod-icon { font-size: 2.2rem; margin-bottom: 10px; }
.pd-cod h4 { font-size: 1rem; margin-bottom: 7px; }
.pd-cod p { color: var(--text-2); margin-bottom: 12px; font-size: 0.87rem; }
.pd-cod-note { display: flex; align-items: flex-start; gap: 7px; background: rgba(251,191,36,0.08); border: 1px solid rgba(251,191,36,0.3); border-radius: var(--radius-sm); padding: 10px 12px; font-size: 0.82rem; color: #92400e; text-align: left; }
.pd-bank h4 { font-size: 0.95rem; margin-bottom: 12px; }
.bank-detail { display: flex; justify-content: space-between; align-items: center; padding: 9px 0; border-bottom: 1px solid var(--border); font-size: 0.87rem; }
.bank-detail:last-of-type { border-bottom: none; }
.bank-detail span { color: var(--text-muted); }
.bank-detail strong { font-weight: 700; }
.pd-bank-note { margin-top: 12px; font-size: 0.82rem; color: var(--text-2); background: var(--bg-light); border-radius: var(--radius-sm); padding: 10px; }
.co-place-btn { width: 100%; background: #16a34a; color: #fff; border: none; padding: 14px; border-radius: var(--radius-sm); font-family: var(--font); font-size: 1.05rem; font-weight: 800; cursor: pointer; transition: var(--transition); }
.co-place-btn:hover { background: #15803d; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(22,163,74,0.3); }
.co-disclaimer { text-align: center; font-size: 0.74rem; color: var(--text-muted); margin-top: -8px; }
.co-success { text-align: center; padding: 36px 28px; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.co-success-icon { font-size: 3.5rem; animation: bounceIn 0.45s ease; }
@keyframes bounceIn { 0%{transform:scale(0.3);opacity:0} 60%{transform:scale(1.1)} 100%{transform:scale(1);opacity:1} }
.co-success h2 { font-size: 1.5rem; font-weight: 800; }
.co-success > p { color: var(--text-2); font-size: 0.95rem; }
.co-order-id { background: var(--bg-light); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 9px 18px; font-size: 0.86rem; color: var(--text-2); }
.co-order-id strong { color: var(--orange); }
.co-success-details { width: 100%; background: var(--bg-light); border: 1px solid var(--border); border-radius: var(--radius); padding: 14px 18px; display: flex; flex-direction: column; gap: 10px; text-align: left; }
.co-success-row { display: flex; justify-content: space-between; align-items: flex-start; gap: 10px; padding-bottom: 9px; border-bottom: 1px solid var(--border); font-size: 0.87rem; }
.co-success-row:last-child { border-bottom: none; padding-bottom: 0; }
.co-success-row > span:first-child { color: var(--text-muted); flex-shrink: 0; }
.co-success-row ul { padding-left: 14px; margin: 0; }
.co-success-row ul li { margin-bottom: 3px; }
.status-badge { padding: 3px 10px; border-radius: 100px; font-size: 0.75rem; font-weight: 700; display: inline-block; }
.status-badge.pending { background: rgba(251,191,36,0.15); color: #92400e; }
.status-badge.confirmed { background: rgba(34,197,94,0.12); color: #166534; }
.status-badge.shipped { background: rgba(59,130,246,0.12); color: #1e40af; }
.status-badge.delivered { background: rgba(34,197,94,0.12); color: #166534; }
.status-badge.cancelled { background: rgba(239,68,68,0.1); color: #991b1b; }
.co-success-note { background: rgba(37,211,102,0.06); border: 1px solid rgba(37,211,102,0.25); border-radius: var(--radius-sm); padding: 12px 16px; font-size: 0.85rem; color: var(--text-2); width: 100%; }
.co-success-btns { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; width: 100%; }
.co-wa-btn { display: flex; align-items: center; gap: 7px; background: var(--whatsapp); color: #fff; border: none; padding: 11px 22px; border-radius: var(--radius-sm); font-family: var(--font); font-size: 0.9rem; font-weight: 700; cursor: pointer; transition: var(--transition); text-decoration: none; }
.co-wa-btn:hover { background: var(--whatsapp-dark); }
.co-close-btn { background: var(--bg-light); border: 1px solid var(--border); color: var(--text); padding: 11px 22px; border-radius: var(--radius-sm); font-family: var(--font); font-size: 0.9rem; font-weight: 600; cursor: pointer; transition: var(--transition); }
.co-close-btn:hover { border-color: var(--orange); color: var(--orange); }

/* ---------- Floating WhatsApp ---------- */
.floating-whatsapp {
  position: fixed; bottom: 26px; right: 26px; z-index: 1000;
  background: var(--whatsapp); width: 54px; height: 54px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4); transition: var(--transition);
  animation: waPulse 2.5s infinite;
}
@keyframes waPulse { 0%,100%{box-shadow:0 4px 20px rgba(37,211,102,0.4)} 50%{box-shadow:0 4px 36px rgba(37,211,102,0.65)} }
.floating-whatsapp:hover { transform: scale(1.1); }
.floating-tooltip {
  position: absolute; right: 64px; top: 50%; transform: translateY(-50%);
  background: #1a1a1a; color: #fff; padding: 5px 10px; border-radius: var(--radius-sm);
  font-size: 0.74rem; font-weight: 600; white-space: nowrap; opacity: 0; pointer-events: none; transition: var(--transition);
}
.floating-whatsapp:hover .floating-tooltip { opacity: 1; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .bento-grid { grid-template-columns: 1fr 1fr; }
  .bento-large { grid-column: 1/-1; grid-row: auto; }
  .bento-cta { grid-column: 1/-1; }
}

@media (max-width: 900px) {
  .nav-links { display: none; position: fixed; top: calc(var(--header-h) + var(--catbar-h)); left: 0; right: 0; background: var(--bg); border-bottom: 1px solid var(--border); padding: 10px 16px; flex-direction: column; gap: 4px; z-index: 850; box-shadow: 0 6px 20px rgba(0,0,0,0.08); }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .hero-layout { grid-template-columns: 1fr; gap: 28px; }
  .hero-title { font-size: 2rem; }
  .about-grid { grid-template-columns: 1fr; gap: 28px; }
  .modal-content { grid-template-columns: 1fr; }
  .modal-img { border-radius: var(--radius-lg) var(--radius-lg) 0 0; aspect-ratio: 16/9; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .hero-title { font-size: 1.7rem; }
  .hero-actions { flex-direction: column; }
  .bento-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .cart-sidebar { width: 100%; right: -100%; }
  .footer-inner { grid-template-columns: 1fr; }
  .co-body { padding: 14px 16px; gap: 14px; }
  .co-header { padding: 14px 18px; }
  .co-form { grid-template-columns: 1fr; }
  .pd-upi { flex-direction: column; align-items: center; }
  .checkout-modal { border-radius: 0; }
  .checkout-overlay { padding: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .products-header { flex-direction: column; align-items: flex-start; }
  .search-box input { width: 100%; }
  .search-box { width: 100%; }
}

@media (max-width: 420px) {
  .products-grid { grid-template-columns: 1fr; }
}

/* ---------- Flipkart-style Login Modal ---------- */
.login-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1001;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.login-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.login-modal {
  width: 650px;
  max-width: 95vw;
  height: 480px;
  max-height: 90vh;
  background: #ffffff;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 30px rgba(0,0,0,0.2);
  transform: translateY(20px);
  transition: transform 0.25s ease;
}
.login-overlay.open .login-modal {
  transform: translateY(0);
}
.login-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.3rem;
  color: #878787;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
}
.login-close-btn:hover {
  color: var(--orange);
}
.login-modal-container {
  display: flex;
  height: 100%;
}
.login-left-panel {
  width: 40%;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  padding: 40px 32px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
}
.login-left-panel h2 {
  font-size: 1.8rem;
  font-weight: 700;
  font-family: var(--font2);
  margin-bottom: 12px;
}
.login-left-panel p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.85);
}
.login-left-logo {
  width: 64px;
  height: 64px;
  border-radius: var(--radius);
  background: #fff;
  padding: 4px;
  margin-top: auto;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.login-right-panel {
  width: 60%;
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
}
.login-form {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.login-input-group {
  position: relative;
  margin-bottom: 24px;
}
.login-input-group input {
  width: 100%;
  border: none;
  border-bottom: 2px solid var(--border);
  padding: 8px 0;
  outline: none;
  font-size: 0.95rem;
  background: transparent;
  transition: var(--transition);
  font-family: var(--font);
}
.login-input-group input:focus {
  border-bottom-color: var(--orange);
}
.login-input-group label {
  position: absolute;
  left: 0;
  top: 8px;
  color: var(--text-muted);
  transition: all 0.2s ease;
  pointer-events: none;
  font-size: 0.92rem;
}
.login-input-group input:focus ~ label,
.login-input-group input:not(:placeholder-shown) ~ label {
  top: -16px;
  font-size: 0.78rem;
  color: var(--orange);
  font-weight: 600;
}
.login-terms {
  font-size: 0.72rem;
  color: var(--text-2);
  line-height: 1.4;
  margin-bottom: 20px;
}
.login-terms a {
  color: var(--orange);
  font-weight: 600;
}
.btn-login-submit {
  background: var(--orange);
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 700;
  height: 48px;
  border-radius: 2px;
  border: none;
  box-shadow: 0 2px 4px 0 rgba(0,0,0,0.1);
  transition: var(--transition);
}
.btn-login-submit:hover {
  background: var(--orange-dark);
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.15);
}
.login-divider {
  display: flex;
  align-items: center;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.78rem;
  margin: 18px 0;
}
.login-divider::before,
.login-divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid var(--border);
}
.login-divider span {
  padding: 0 10px;
}
.btn-login-otp-toggle {
  background: #ffffff;
  color: var(--orange);
  font-size: 0.92rem;
  font-weight: 700;
  height: 48px;
  border-radius: 2px;
  border: 1px solid var(--border);
  box-shadow: 0 2px 4px 0 rgba(0,0,0,0.04);
  transition: var(--transition);
}
.btn-login-otp-toggle:hover {
  background: #fafafa;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.06);
}
.login-footer-links {
  margin-top: auto;
  text-align: center;
  padding-top: 24px;
}
.link-signup {
  font-size: 0.82rem;
  color: var(--orange);
  font-weight: 700;
}
.link-signup:hover {
  text-decoration: underline;
}

/* User dropdown button */
.nav-user-dropdown {
  position: relative;
  display: inline-block;
}
.nav-user-btn {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--orange);
  background: transparent;
  transition: var(--transition);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.nav-user-btn:hover {
  background: rgba(255,96,0,0.06);
}
.nav-dropdown-content {
  display: none;
  position: absolute;
  right: 0;
  background-color: #ffffff;
  min-width: 150px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  z-index: 1005;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  margin-top: 4px;
}
.nav-dropdown-content a {
  color: var(--text);
  padding: 10px 16px;
  text-decoration: none;
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  transition: var(--transition);
}
.nav-dropdown-content a:hover {
  background-color: var(--bg-off);
  color: var(--orange);
}
.nav-user-dropdown:hover .nav-dropdown-content {
  display: block;
}

@media (max-width: 680px) {
  .login-modal {
    height: auto;
    max-height: 85vh;
  }
  .login-modal-container {
    flex-direction: column;
  }
  .login-left-panel {
    width: 100%;
    padding: 24px;
  }
  .login-left-panel p {
    display: none;
  }
  .login-left-logo {
    display: none;
  }
  .login-right-panel {
    width: 100%;
    padding: 24px;
  }
}

/* ---------- Flipkart-style Location Selector ---------- */
.nav-location {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  margin-right: 12px;
  flex-shrink: 0;
}
.nav-location:hover {
  background: rgba(255, 96, 0, 0.06);
}
.loc-icon {
  font-size: 1.1rem;
}
.loc-info {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}
.loc-label {
  font-size: 0.65rem;
  color: var(--text-2);
  font-weight: 600;
}
.loc-value {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text);
}

/* Location Modal Overlay */
.location-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1010;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.location-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.location-modal {
  width: 420px;
  max-width: 90vw;
  background: #ffffff;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 30px rgba(0,0,0,0.2);
  transform: translateY(20px);
  transition: transform 0.25s ease;
}
.location-overlay.open .location-modal {
  transform: translateY(0);
}
.location-close-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  background: none;
  border: none;
  font-size: 1.2rem;
  color: #878787;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
}
.location-close-btn:hover {
  color: var(--orange);
}
.location-modal-container {
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
}
.location-modal-container h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text);
  font-family: var(--font2);
  margin-bottom: 6px;
}
.location-sub {
  font-size: 0.82rem;
  color: var(--text-2);
  line-height: 1.4;
  margin-bottom: 16px;
}
.location-input-group {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}
.location-input-group input {
  flex: 1;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 0.9rem;
  outline: none;
  font-family: var(--font);
}
.location-input-group input:focus {
  border-color: var(--orange);
}
.btn-pincode-check {
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  padding: 0 20px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.btn-pincode-check:hover {
  background: var(--orange-dark);
}
.location-divider-line {
  display: flex;
  align-items: center;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.75rem;
  margin: 16px 0;
}
.location-divider-line::before,
.location-divider-line::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid var(--border);
}
.location-divider-line span {
  padding: 0 10px;
}
.btn-location-gps {
  width: 100%;
  border: 1px solid var(--orange);
  color: var(--orange);
  background: #fff;
  padding: 12px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: var(--transition);
}
.btn-location-gps:hover {
  background: var(--orange-light);
}
.pincode-result-msg {
  margin-top: 14px;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  text-align: left;
}
.pincode-result-msg.success {
  background: rgba(38,165,65,0.08);
  color: #26a541;
  border: 1px solid rgba(38,165,65,0.15);
}
.pincode-result-msg.error {
  background: rgba(239,68,68,0.08);
  color: #ef4444;
  border: 1px solid rgba(239,68,68,0.15);
}

@media (max-width: 768px) {
  .nav-location {
    display: none; /* Hide in dense header viewports on mobile */
  }
}

/* ---------- Flipkart Accordion & Price Details Styles ---------- */
.checkout-layout {
  display: flex;
  gap: 20px;
  padding: 22px 28px 28px;
  align-items: flex-start;
}
.checkout-steps-panel {
  flex: 7;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.checkout-price-panel {
  flex: 3;
  position: sticky;
  top: 80px;
}
.co-step {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: var(--transition);
}
.co-step.disabled {
  opacity: 0.6;
  pointer-events: none;
}
.co-step.active {
  box-shadow: var(--shadow-hover);
  border-color: rgba(0,0,0,0.12);
}
.co-step-header {
  display: flex;
  align-items: center;
  padding: 16px 24px;
  background: #ffffff;
  position: relative;
  gap: 16px;
}
.co-step.active .co-step-header {
  background: #e60023; /* Matching brand Red color */
  color: #ffffff;
}
.co-step-number {
  width: 20px;
  height: 20px;
  border-radius: 2px;
  background: #f0f2f5;
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  flex-shrink: 0;
}
.co-step.active .co-step-number {
  background: #ffffff;
  color: var(--orange);
}
.co-step-title-group {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
.co-step-title {
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.co-step-subtitle {
  font-size: 0.78rem;
  color: var(--text-2);
  font-weight: 600;
  margin-top: 2px;
  max-width: 450px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.co-step.active .co-step-subtitle {
  color: rgba(255, 255, 255, 0.85);
}
.co-step-check {
  color: #26a541;
  font-weight: 900;
  margin-left: 6px;
}
.co-step.active .co-step-check {
  color: #ffffff;
}
.co-step-change-btn {
  margin-left: auto;
  background: #ffffff;
  border: 1px solid var(--border);
  color: var(--orange);
  padding: 8px 16px;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  cursor: pointer;
}
.co-step-change-btn:hover {
  background: var(--orange-light);
  border-color: var(--orange);
}
.co-step-body {
  padding: 24px;
  border-top: 1px solid var(--border);
  background: #ffffff;
  animation: slideDown 0.2s ease-out;
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Buttons */
.btn-flipkart-orange {
  background: #fb641b;
  color: #ffffff;
  border: none;
  font-weight: 700;
  padding: 12px 32px;
  font-size: 0.88rem;
  text-transform: uppercase;
  border-radius: 2px;
  box-shadow: 0 1px 2px 0 rgba(0,0,0,0.1);
  transition: var(--transition);
  cursor: pointer;
  display: block;
  width: fit-content;
  margin-top: 16px;
}
.btn-flipkart-orange:hover {
  background: #e1520e;
  box-shadow: 0 2px 4px 0 rgba(0,0,0,0.15);
}

/* Price Details Card */
.price-details-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px;
}
.pd-card-title {
  font-size: 0.84rem;
  font-weight: 800;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}
.pd-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 12px 0;
}
.pd-divider-dashed {
  border: none;
  border-top: 1px dashed var(--border);
  margin: 16px 0;
}
.pd-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  margin-bottom: 14px;
  color: var(--text);
}
.pd-row:last-of-type {
  margin-bottom: 0;
}
.pd-row.green-text {
  color: #26a541;
  font-weight: 600;
}
.pd-row.total-row {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 0;
}
.pd-savings-msg {
  color: #26a541;
  font-size: 0.85rem;
  font-weight: 700;
  margin-top: 14px;
  background: rgba(38,165,65,0.06);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  border: 1px dashed rgba(38,165,65,0.15);
  text-align: center;
}
.green-text {
  color: #26a541;
}

@media (max-width: 900px) {
  .checkout-layout {
    flex-direction: column;
    padding: 14px 16px;
    gap: 16px;
  }
  .checkout-steps-panel, .checkout-price-panel {
    width: 100%;
    flex: none;
  }
  .checkout-price-panel {
    position: static;
  }
}

/* Admin Messaging Buttons */
.od-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  margin-right: 8px;
  margin-bottom: 8px;
  color: #ffffff;
}
.od-action-btn.wa-confirm {
  background: #25D366;
}
.od-action-btn.wa-confirm:hover {
  background: #128C7E;
}
.od-action-btn.email-confirm {
  background: #e60023;
}
.od-action-btn.email-confirm:hover {
  background: #c2001b;
}
.od-action-btn.copy-confirm {
  background: #4b5563;
}
.od-action-btn.copy-confirm:hover {
  background: #374151;
}
.od-action-btn.approve-order {
  background: #16a34a;
  font-size: 0.95rem;
  padding: 12px 24px;
  width: 100%;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(22,163,74,0.2);
}
.od-action-btn.approve-order:hover {
  background: #15803d;
}
