:root {
  --ink: #1a1a1a;
  --muted: #666666;
  --paper: #f5f3f0;
  --surface: #ffffff;
  --line: #e0d8d0;
  --accent: #0d7c79;
  --accent-dark: #065a58;
  --accent-light: #4db8b5;
  --coral: #e74c3c;
  --sun: #f39c12;
  --green: #27ae60;
  --success: #2ecc71;
  --warning: #f39c12;
  --danger: #e74c3c;
  --shadow: 0 10px 30px rgba(26, 26, 26, 0.15);
  --shadow-sm: 0 4px 12px rgba(26, 26, 26, 0.08);
  --shadow-lg: 0 20px 50px rgba(26, 26, 26, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--ink);
  background: linear-gradient(135deg, #f9f7f4 0%, #f5f3f0 100%);
  line-height: 1.6;
  font-size: 16px;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 200ms ease;
}

a:hover {
  color: var(--accent-dark);
}

button,
input,
textarea,
select {
  font: inherit;
}

/* ============ TOP BAR ============ */
.top-bar {
  display: flex;
  justify-content: center;
  gap: 24px;
  padding: 12px 16px;
  background: linear-gradient(90deg, var(--ink) 0%, #2a2a2a 100%);
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  flex-wrap: wrap;
}

.top-bar span {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width:100%;
  max-width:1200px;
  margin: 16px auto 0;
  padding: 12px 16px;
  border: 2px solid var(--accent);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--accent-dark);
  white-space: nowrap;
}

.brand-logo{
width:110px;
height:110px;
object-fit:contain;
border-radius:18px;

background:#fff;
padding:5px;

box-shadow:
0 10px 25px rgba(0,0,0,.4),
0 0 20px rgba(255,140,0,.6);

transform:perspective(1000px) rotateY(-8deg);

transition:all .3s ease;
}

.brand-logo:hover{
transform:perspective(1000px) rotateY(0deg) scale(1.08);
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-name {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--accent-dark);
}

.brand-tagline {
  margin: 0;
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 600;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
}

.site-nav a {
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 200ms ease;
  background: transparent;
}

.site-nav a:hover {
  background: rgba(13, 124, 121, 0.1);
  color: var(--accent-dark);
  transform: translateY(-2px);
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  background: linear-gradient(135deg, #25D366 0%, #20BA5B 100%);
  color: #ffffff;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  transition: all 200ms ease;
}

.whatsapp-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.menu-button {
  display: none !important;
  width: 44px;
  height: 44px;
  border: 2px solid var(--line);
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
  transition: all 200ms ease;
  padding: 8px;
}

.menu-button:hover {
  background: rgba(13, 124, 121, 0.1);
  border-color: var(--accent);
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2.5px;
  margin: 5px auto;
  background: var(--ink);
  border-radius: 2px;
  transition: all 200ms ease;
}

/* ============ HERO ============ */
.hero{
    display:grid;
    grid-template-columns:1.1fr 0.9fr;
    gap:48px;
    align-items:center;

    width:100%;
    max-width:1200px;
   
    min-height:70vh;
    margin:40px auto;
    padding:60px 32px;

    border-radius:16px;

    background:
   linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.55)),
   url("ghat.png");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    box-shadow:0 0 30px rgba(255,140,0,0.4);
  
   overflow:hidden;
}


.eyebrow {
  margin: 0 0 16px;
  color: var(--accent-dark);
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}

.eyebrow::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

.hero h1,
.section h2,
.contact-band h2 {
  margin: 0;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

.hero h1 {
  max-width: 700px;
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: #fff;
  font-weight: 900;
  margin-bottom: 15px;
}

.hero-text {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.8;
}

.search-box {
  display: grid;
  grid-template-columns: 1fr auto;
  max-width: 500px;
  margin-top: 32px;
  padding: 8px;
  border: 2px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: all 200ms ease;
}

.search-box:focus-within {
  border-color: var(--accent);
  box-shadow: var(--shadow);
}

.search-box input {
  min-width: 0;
  border: 0;
  padding: 14px 16px;
  background: transparent;
  color: var(--ink);
  outline: none;
  font-size: 0.95rem;
}

.search-box input::placeholder {
  color: #999;
}

.search-box button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 20px;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 200ms ease;
  text-decoration: none;
}

.search-box button,
.button.primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(13, 124, 121, 0.3);
}

.search-box button:hover,
.button.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(13, 124, 121, 0.4);
}

.search-box button:active,
.button.primary:active {
  transform: translateY(-1px);
}

.button.secondary {
  background: var(--surface);
  border: 2px solid var(--line);
  color: var(--ink);
}

.button.secondary:hover {
  background: rgba(13, 124, 121, 0.05);
  border-color: var(--accent);
  color: var(--accent-dark);
}

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

.shop-window {
    padding: 18px;

    transform: scale(0.85);
    transform-origin: top center;

    border: 2px solid var(--line);
    border-radius: 16px;
    background: var(--surface);
    box-shadow: var(--shadow);
}
.window-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--line);
}

.window-head img{
width:90px;
height:90px;
border-radius:18px;
object-fit:cover;

background:#fff;
padding:5px;

box-shadow:
0 10px 25px rgba(0,0,0,.4),
0 0 20px rgba(255,140,0,.6);

transform:perspective(1000px) rotateY(-8deg);

transition:all .3s ease;
}

.window-head img:hover{
transform:perspective(1000px) rotateY(0deg) scale(1.08);
}

.window-head strong,
.window-head span {
  display: block;
}

.window-head strong {
  font-size: 1rem;
  color: var(--ink);
}

.window-head span {
  color: var(--muted);
  font-weight: 500;
  font-size: 0.9rem;
}

.shelf {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 20px 0;
  padding: 20px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(13, 124, 121, 0.08) 0%, rgba(45, 204, 113, 0.08) 100%);
}

.pack {
  position: relative;
  display: block;
  min-height: 120px;
  border-radius: 12px;
  background: var(--accent);
  box-shadow: var(--shadow-sm);
  transition: all 200ms ease;
  cursor: pointer;
}

.pack:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}


.pack.oil { background: linear-gradient(135deg, var(--sun) 0%, #e8a80c 100%); }
.pack.soap { background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%); }
.pack.food { background: linear-gradient(135deg, var(--coral) 0%, #c0392b 100%); }
.pack.footwear { background: linear-gradient(135deg, var(--green) 0%, #229954 100%); }

.deal-card {
  display: grid;
  gap: 8px;
  padding: 16px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent-dark) 0%, #043d3b 100%);
  color: #ffffff;
}

.deal-card span {
  color: var(--sun);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}

.deal-card strong {
  font-size: 1.05rem;
  line-height: 1.4;
}

.deal-card small {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
}

/* ============ QUICK STATS ============ */
.quick-stats {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 40px;
  overflow: hidden;
  border: 2px solid var(--line);
  border-radius: 12px;
  background: var(--line);
  box-shadow: var(--shadow-sm);
}

.quick-stats div {
    padding: 10px;
    min-height: 70px;
    background: var(--surface);
    transition: all 200ms ease;
}

.quick-stats strong{
    font-size:1.4rem !important;
}

.quick-stats span{
    font-size:0.85rem !important;
}

.quick-stats div:hover {
  background: linear-gradient(135deg, rgba(13, 124, 121, 0.05) 0%, rgba(243, 156, 18, 0.05) 100%);
}

.quick-stats strong {
  display: block;
  color: var(--accent-dark);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 8px;
}

.quick-stats span {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.9rem;
}

/* ============ CATEGORY STRIP ============ */
.category-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;

    width: 100%;
    max-width: 1200px;

    margin: 0 auto 32px;
}

.category-strip a,
.product-tag {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 9px 14px;
  border: 2px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
  transition: all 200ms ease;
  cursor: pointer;
}

.category-strip a:hover {
  background: rgba(13, 124, 121, 0.08);
  border-color: var(--accent);
  color: var(--accent-dark);
  transform: translateY(-2px);
}

/* ============ SECTIONS ============ */
.section,
.contact-band {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 0;
}

.section-heading {
  max-width: 800px;
  margin-bottom: 48px;
}

.section h2,
.contact-band h2 {
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  color: var(--ink);
  font-weight: 900;
  margin-bottom: 16px;
}

.section-heading p:not(.eyebrow),
.about p,
.contact-band p:not(.eyebrow) {
  color: var(--muted);
  font-weight: 500;
  font-size: 1.rem;
}

/* ============ CATALOG ============ */
.catalog-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  align-items: start;
  margin-top: 40px;
}

.filter-panel {
  position: sticky;
  top: 120px;
  display: grid;
  gap: 4px;
  padding: 20px;
  border: 2px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.filter-panel h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 800;
}

.filter-panel a {
  padding: 12px;
  border-radius: 8px;
  color: var(--muted);
  font-weight: 600;
  transition: all 200ms ease;
  display: block;
}

.filter-panel a:hover {
  background: rgba(13, 124, 121, 0.1);
  color: var(--accent-dark);
  padding-left: 16px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.product-card {
  display: grid;
  align-content: start;
  min-height: 380px;
  padding: 20px;
  border: 2px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: all 200ms ease;
  overflow: hidden;
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
  box-shadow: var(--shadow);
}

.product-visual {
  position: relative;
  display: grid;
  place-items: center;
  height: 160px;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(135deg, #f0f8f7 0%, #f9f3e6 100%);
  margin-bottom: 16px;
}

.product-visual::before {
  content: '';
  position: absolute;
  inset: 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: inset 0 -8px 16px rgba(26, 26, 26, 0.05);
}

.product-visual::after,
.product-visual i {
  content: '';
  position: relative;
  z-index: 1;
  display: block;
}

.product-visual.kitchen { background: linear-gradient(135deg, #dceee8, #f8d37b); }
.product-visual.storage { background: linear-gradient(135deg, #f8d37b, #fff4d1); }
.product-visual.cleaning { background: linear-gradient(135deg, #f3b3a3, #fff3ee); }
.product-visual.bathroom { background: linear-gradient(135deg, #dceee8, #ffffff); }
.product-visual.oil { background: linear-gradient(135deg, #fff1bd, #f0b84b); }
.product-visual.soap { background: linear-gradient(135deg, #dceee8, #ffffff); }
.product-visual.food { background: linear-gradient(135deg, #f3b3a3, #f9e2d8); }
.product-visual.footwear { background: linear-gradient(135deg, #dceee8, #fffdf9); }
.product-visual.pooja { background: linear-gradient(135deg, #fff1bd, #fffdf9); }
.product-visual.decor { background: linear-gradient(135deg, #f3b3a3, #fffdf9); }
.product-visual.daily { background: linear-gradient(135deg, #dceee8, #f8d37b); }
.product-visual.combo { background: linear-gradient(135deg, #f3b3a3, #fff1bd); }

.product-visual.kitchen i { width: 70px; height: 46px; border: 10px solid var(--accent); border-top: 0; border-radius: 0 0 18px 18px; }
.product-visual.storage i { width: 78px; height: 60px; border: 6px solid var(--ink); border-radius: 12px; background: var(--sun); }
.product-visual.cleaning i { width: 12px; height: 82px; border-radius: 99px; background: var(--coral); transform: rotate(28deg); }
.product-visual.bathroom i { width: 74px; height: 62px; border-radius: 12px 12px 26px 26px; background: var(--accent); }
.product-visual.oil i { width: 44px; height: 82px; border: 6px solid var(--ink); border-radius: 12px 12px 18px 18px; background: var(--sun); }
.product-visual.soap i { width: 90px; height: 52px; border-radius: 18px; background: var(--accent); }
.product-visual.food i { width: 74px; height: 86px; clip-path: polygon(12% 100%, 88% 100%, 78% 20%, 63% 0, 37% 0, 22% 20%); background: var(--coral); }
.product-visual.footwear i { width: 96px; height: 38px; border-radius: 60px 18px 18px 22px; background: var(--accent); transform: rotate(-8deg); }
.product-visual.pooja i { width: 74px; height: 34px; border-radius: 0 0 38px 38px; background: var(--sun); }
.product-visual.decor i { width: 64px; height: 74px; border-radius: 32px 32px 12px 12px; background: var(--coral); }
.product-visual.daily i { width: 92px; height: 68px; border-radius: 12px; background: var(--accent); box-shadow: 20px 16px 0 var(--sun); }
.product-visual.combo i { width: 86px; height: 72px; border-radius: 14px; background: var(--coral); box-shadow: -20px 18px 0 var(--accent), 22px 20px 0 var(--sun); }

.product-tag {
  justify-self: start;
  min-height: 32px;
  margin-bottom: 12px;
  padding: 6px 11px;
  color: var(--accent-dark);
  background: rgba(13, 124, 121, 0.08);
  border: 1px solid rgba(13, 124, 121, 0.2);
}

.product-card h3 {
  margin: 12px 0 8px;
  font-size: 1.1rem;
  color: var(--ink);
  font-weight: 800;
}

.product-card p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.price-row strong {
  color: var(--accent-dark);
  font-weight: 700;
}

.price-row a {
  padding: 8px 12px;
  border-radius: 8px;
  background: var(--accent);
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 700;
  transition: all 200ms ease;
}

.price-row a:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(13, 124, 121, 0.3);
}

/* ============ OFFER BAND ============ */
.offer-band {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 48px 32px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 100%);
  color: #ffffff;
  box-shadow: var(--shadow);
}

.offer-band .eyebrow {
  color: var(--sun);
}

.offer-band .eyebrow::before {
  background: var(--sun);
}

.offer-band p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.9);
}

.offer-band .button.primary {
  background: var(--sun);
  color: var(--ink);
  box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
}

.offer-band .button.primary:hover {
  background: #e8b30b;
  box-shadow: 0 8px 25px rgba(243, 156, 18, 0.4);
}

/* ============ SERVICE PANEL ============ */
.service-panel {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 32px;
  align-items: start;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.steps article {
  display: grid;
  gap: 16px;
  min-height: 160px;
  padding: 24px;
  border: 2px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  transition: all 200ms ease;
}

.steps article:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.steps strong {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 900;
  box-shadow: 0 4px 12px rgba(13, 124, 121, 0.3);
}

.steps span {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* ============ ABOUT ============ */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  border-top: 2px solid var(--line);
  border-bottom: 2px solid var(--line);
  padding: 20px 0;
}

.about p {
  margin: 0;
  font-size: 1.05rem;
  color: #333;
  line-height: 1.8;
}

/* ============ CONTACT BAND ============ */
.contact-band {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 32px;
  border: 2px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.95rem;
}

input,
textarea {
  width: 100%;
  border: 2px solid var(--line);
  border-radius: 10px;
  padding: 14px 16px;
  background: #ffffff;
  color: var(--ink);
  transition: all 200ms ease;
  font-size: 0.95rem;
}

input:focus,
textarea:focus {
  border-color: var(--accent);
  outline: none;
  box-shadow: 0 0 0 4px rgba(13, 124, 121, 0.1);
}

.form-note {
  min-height: 28px;
  margin: 0;
  color: var(--success);
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
}

/* ============ FOOTER ============ */
.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: start;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 0;
  color: var(--muted);
  font-weight: 600;
  border-top: 2px solid var(--line);
}

.footer-content {
  display: grid;
  gap: 8px;
}

.footer-content p {
  margin: 0;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: 16px;
}

.footer-links a {
  color: var(--accent);
  font-weight: 700;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .catalog-layout,
  .hero,
  .service-panel,
  .about,
  .contact-band {
    grid-template-columns: 1fr;
  }

  .hero {
  min-height: 650px;
  padding: 20px 15px;

  background-position: center center;
  background-size: cover;
}
  .filter-panel {
    position: static;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
  }

  .filter-panel h3 {
    margin: 0;
    flex-basis: 100%;
  }

  .filter-panel a {
    padding: 8px 12px;
  }

  .product-grid,
  .steps,
  .quick-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .shelf {
    grid-template-columns: repeat(2, 1fr);
  }

  .site-header {
    width: 100%;
   max-width: 1200px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .top-bar {
    gap: 12px;
    padding: 10px 12px;
    font-size: 0.75rem;
  }

  .site-header {
    flex-wrap: wrap;
    gap: 12px;
    padding: 10px 12px;
  }

  .brand {
    gap: 8px;
    font-size: 1.1rem;
  }

  .brand-logo {
    width: 55px;
    height: 55px;
  }

  .brand-name {
    font-size: 1.2rem;
  }

  .brand-tagline {
    font-size: 0.65rem;
  }

  .whatsapp-btn {
    display: none;
  }

  .menu-button {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .site-nav {
    display: none;
    flex-basis: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding-top: 8px;
    border-top: 2px solid var(--line);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px;
    text-align: left;
  }

  .hero {
  min-height: 650px;
  padding: 20px 15px;
  gap: 20px;

  background-position: top center;
  background-size: cover;
}

  .hero h1 {
  font-size: 1.3rem;
}

  .search-box {
    grid-template-columns: 1fr;
  }

  .search-box button {
    margin-top: 8px;
  }

  .quick-stats,
  .product-grid,
  .steps,
  .shelf,
  .offer-band {
    grid-template-columns: 1fr;
  }

  .section,
  .contact-band {
    padding: 48px 0;
  }

  .category-strip {
    width: 100%;
    max-width: 1200px;
  }

  .contact-band {
    gap: 24px;
  }

  .offer-band {
    grid-template-columns: 1fr;
    padding: 32px 20px;
  }

  .offer-band .button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .top-bar {
    flex-direction: column;
    gap: 6px;
    padding: 8px;
  }

  .site-header,
  .hero,
  .quick-stats,
  .category-strip,
  .section,
  .contact-band,
  .site-footer {
    width: 100%;
    max-width: 1200px;
  }

  .hero h1 {
    font-size: 1.3rem;
  }

  .hero-text {
    font-size: 0.95rem;
  }

  .eyebrow {
    font-size: 0.75rem;
  }

  .button,
  .search-box button,
  .price-row a {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }

  .search-box {
    max-width: 500px;
  }

  .section h2 {
    font-size: 1.4rem;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 20px;
  }

  .site-footer {
    gap: 16px;
    padding: 24px 0;
  }
}

#products{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(250px,1fr));
  gap:20px;
  margin-top:30px;
}

#products .product-card{
  background:#fff;
  padding:15px;
  border-radius:12px;
  text-align:center;
}

#products .product-card img{
  width:100%;
  height:220px;
  object-fit:cover;
  border-radius:10px;
}

/* ===== BHAGWA PREMIUM THEME ===== */

body{
  background:#0d0905 !important;
  color:#ffffff !important;
  background-image:
  radial-gradient(circle at top right, rgba(255,140,0,.25), transparent 35%),
  radial-gradient(circle at bottom left, rgba(255,120,0,.15), transparent 40%);
}

.site-header{
  background:rgba(20,10,0,.95) !important;
  border:1px solid #ff8c00 !important;
  box-shadow:0 0 25px rgba(255,140,0,.35) !important;
}

.brand-name{
  color:#ff9d00 !important;
}

.brand-tagline{
  color:#ffd28a !important;
}

.site-nav a{
  color:#ffffff !important;
}

.site-nav a:hover{
  color:#ff9d00 !important;
}

 .hero{
background:
linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.55)),
url("ghat.png");

background-size: cover;
background-position: center center;
background-repeat: no-repeat;

min-height: 750px;
}

border:1px solid #ff8c00 !important;
border-radius:20px !important;
box-shadow:0 0 35px rgba(255,140,0,.25) !important;
}

.hero h1{
  color:#ffffff !important;
  font-weight:900 !important;
}

.hero-text{
  color:#f3d7aa !important;
}

.shop-window{
   background:rgba(26,16,7,0.30) !important;
    backdrop-filter:blur(8px);
    -webkit-backdrop-filter:blur(8px);

    border:1px solid rgba(255,140,0,0.4) !important;
}

.window-head strong{
  color:#ff9d00 !important;
}

.window-head span{
  color:#f3d7aa !important;
}

.quick-stats div{
  background:#1a1007 !important;
  border:1px solid rgba(255,140,0,.4) !important;
}

.quick-stats strong{
  color:#ff9d00 !important;
}

.quick-stats span{
  color:#f3d7aa !important;
}

.category-strip a{
  background:#1a1007 !important;
  color:#ffffff !important;
  border:1px solid #ff8c00 !important;
}

.category-strip a:hover{
  background:#ff8c00 !important;
  color:#000000 !important;
}

.product-card{
  background:#1a1007 !important;
  color:#ffffff !important;
  border:1px solid #ff8c00 !important;
  box-shadow:0 0 15px rgba(255,140,0,.15);
}

.product-card:hover{
  transform:translateY(-5px);
  box-shadow:0 0 25px rgba(255,140,0,.35);
}

.product-card h3{
  color:#ffb347 !important;
}

.product-card p{
  color:#f3d7aa !important;
}

.product-tag{
  background:#ff8c00 !important;
  color:#000000 !important;
  border:none !important;
}

.offer-band{
  background:linear-gradient(135deg,#ff8c00,#cc6f00) !important;
}

.steps article{
  background:#1a1007 !important;
  border:1px solid #ff8c00 !important;
  color:#ffffff !important;
}

.about{
  border-top:1px solid #ff8c00 !important;
  border-bottom:1px solid #ff8c00 !important;
}

.contact-form{
  background:#1a1007 !important;
  border:1px solid #ff8c00 !important;
}

input,
textarea{
  background:#0f0a05 !important;
  color:#ffffff !important;
  border:1px solid #ff8c00 !important;
}

input::placeholder,
textarea::placeholder{
  color:#cccccc;
}

.site-footer{
  border-top:1px solid #ff8c00 !important;
  color:#f3d7aa !important;
}

.footer-links a{
  color:#ff9d00 !important;
}

.whatsapp-btn,
.button.primary{
  background:linear-gradient(135deg,#ff8c00,#cc6f00) !important;
  color:#ffffff !important;
}

.button.secondary{
  background:#1a1007 !important;
  color:#ffffff !important;
  border:1px solid #ff8c00 !important;
}

#products .product-card{
  background:#1a1007 !important;
  border:1px solid #ff8c00 !important;
}

#products .product-card img{
  width:100%;
  height:220px;
  object-fit:cover;
  border-radius:10px;
}

.section h2,
.hero h1,
.contact-band h2,
.about h2{
  color:#ffffff !important;
}

.section-heading p,
.about p,
.contact-band p{
  color:#f3d7aa !important;
}

.eyebrow{
  color:#ff9d00 !important;
}

.eyebrow::before{
  background:#ff9d00 !important;
}

.pack{
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
gap:10px;
color:white;
font-weight:700;
text-align:center;

transform-style:preserve-3d;
transform:perspective(1000px) rotateX(8deg);

box-shadow:
0 10px 20px rgba(0,0,0,0.35),
0 0 15px rgba(255,140,0,0.35);

transition:all .3s ease;
}

.pack:hover{
transform:perspective(1000px) rotateX(0deg) translateY(-10px) scale(1.08);

box-shadow:
0 20px 35px rgba(0,0,0,0.45),
0 0 25px rgba(255,140,0,0.6);
}

.pack span{
font-size:42px;
filter:drop-shadow(0 5px 8px rgba(0,0,0,.5));
}

.pack p{
margin:0;
font-size:15px;
font-weight:800;
color:#fff;
text-shadow:0 2px 5px rgba(0,0,0,.5);
}
.trust-bar{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:15px;
margin:30px auto;
width: 100%;
max-width: 1200px;
}

.trust-bar div{
background:#1a1007;
border:1px solid #ff8c00;
padding:15px;
text-align:center;
border-radius:12px;
color:#fff;
font-weight:700;
}
.review-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
gap:12px;
margin-top:20px;
}

.review-card{
background:#1a1007;
border:1px solid #ff8c00;
padding:12px;
border-radius:12px;
color:white;
min-height:120px;
}

.review-card p{
color:#f3d7aa;
font-size:14px;
line-height:1.5;
}

.review-card strong{
color:#ff9d00;
font-size:15px;
}
.site-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(6px);
}
 .whatsapp-float{
  position:fixed;
  bottom:20px;
  right:20px;
  width:60px;
  height:60px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:#25D366;
  color:white;
  font-size:30px;
  text-decoration:none;
  box-shadow:0 0 20px rgba(37,211,102,.5);
  z-index:9999;
}

.whatsapp-float:hover{
  transform:scale(1.1);
}
.trust-badges {
  display: flex;
  justify-content: space-around; /* या space-between, ज़रूरत अनुसार */
  flex-wrap: wrap;
  gap: 20px;
  padding: 30px;
  background: var(--ink);
  border-radius: 12px;
}

.trust-card {
  background: var(--surface);
  color: var(--ink);
  padding: 20px;
  border-radius: 8px;
  font-weight: 600;
  flex: 1 1 200px; /* कार्ड को एक छोटा आकार दो और बराबर स्पेस दो */
  text-align: center;
}

.trust-card:hover {
  transform: scale(1.05);
  background: linear-gradient(135deg, rgba(255, 140, 0, 0.1), transparent 100%);
  cursor: pointer;
}
.delivery-area{
  max-width: 700px;
  margin: 20px auto;
  padding: 15px 20px;
  text-align: center;
  background: #24170d;
  border: 1px solid #ff8c00;
  border-radius: 12px;
}

.delivery-area h2{
  margin: 0 0 10px;
  color: #ffb347;
  font-size: 1.5rem;
}

.delivery-area p{
  margin: 0;
  color: #fff;
  font-size: 1rem;
}
.offer-banner{
  width: fit-content;
  margin: 20px auto;
  padding: 8px 20px;

  font-size: 0.95rem;
  font-weight: 600;

  color: #fff;

  background: linear-gradient(90deg,#ff8c00,#ffb347);

  border-radius: 30px;

  box-shadow: 0 0 10px rgba(255,140,0,.3);

  text-align: center;
}
@media (max-width:768px){

  .hero{
    grid-template-columns:1fr;
    gap:20px;
    padding:20px;
  }

}
@media (max-width:768px){

  .category-strip{
    justify-content:center;
    padding:0 10px;
  }

  .category-strip a{
    font-size:0.8rem;
    padding:8px 12px;
  }

}

@media (max-width:768px){

  .hero,
  .quick-stats,
  .category-strip,
  .delivery-area{
    width:100% !important;
    max-width:100% !important;
  }

  body{
    overflow-x:hidden;
  }
}
/* MOBILE FIX */

@media (max-width: 768px){

  body{
    overflow-x:hidden;
  }

  .hero{
    grid-template-columns:1fr !important;
    width:100% !important;
    max-width:100% !important;
    padding:20px !important;
    gap:20px !important;
  }

  .quick-stats{
    display:grid !important;
    grid-template-columns:1fr 1fr !important;
    width:100% !important;
    max-width:100% !important;
  }

  .category-strip{
    width:100% !important;
    max-width:100% !important;
    justify-content:center;
  }

  .delivery-area,
  .offer-banner{
    width:95% !important;
    max-width:95% !important;
  }

  img{
    max-width:100%;
    height:auto;
  }

  *{
    min-width:0;
  }
}
@media (max-width:768px){

  *{
    max-width:100%;
    box-sizing:border-box;
  }

  body{
    overflow-x:hidden;
  }

  .hero,
  .hero-copy,
  .hero aside,
  .seller-card,
  .offer-card{
    width:100% !important;
    max-width:100% !important;
  }

  .category-grid{
    grid-template-columns:1fr !important;
  }
}
@media (max-width:768px){

  .hero{
    width:100% !important;
    padding:10px !important;
  }

  .hero *{
    max-width:100% !important;
  }

  .seller-card,
  .store-card,
  .owner-card{
    width:100% !important;
    margin:0 auto !important;
  }

  body,
  html{
    overflow-x:hidden !important;
  }
}

.footer-links h3{
    color:#ffb347;
    margin-bottom:10px;
    font-size:1.1rem;
}
.trust-line{
    text-align:center;
    margin:15px auto;
    padding:10px;
    color:#ffd280;
    font-weight:700;
    border:1px solid rgba(255,140,0,.3);
    border-radius:10px;
    background:rgba(255,140,0,.08);
    width:min(1200px, calc(100% - 32px));
}
