:root {
  --ink: #1d1730;
  --muted-ink: #675f78;
  --paper: #fffdf0;
  --white: #ffffff;
  --yellow: #f4d51f;
  --yellow-soft: #fff3a6;
  --green: #1c8e4a;
  --green-dark: #0e5d34;
  --purple: #33206f;
  --magenta: #bd1d6b;
  --blue: #1f77b4;
  --orange: #f28c28;
  --line: #e1d9b7;
  --shadow: 0 18px 45px rgba(29, 23, 48, 0.16);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans Devanagari", sans-serif;
  line-height: 1.5;
}

body.drawer-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: -10rem;
  z-index: 100;
  background: var(--ink);
  color: var(--white);
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 1rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  background: rgba(255, 253, 240, 0.92);
  border-bottom: 1px solid rgba(225, 217, 183, 0.9);
  backdrop-filter: blur(16px);
}

.nav-shell {
  max-width: var(--max);
  margin: 0 auto;
  min-height: 74px;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 25%, var(--magenta), var(--purple));
  color: var(--yellow);
  border: 3px solid var(--yellow);
  font-weight: 950;
  font-size: 1rem;
  box-shadow: 0 6px 18px rgba(51, 32, 111, 0.25);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
  line-height: 1.1;
}

.brand small {
  color: var(--muted-ink);
  font-size: 0.78rem;
  margin-top: 0.1rem;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}

.nav-links a {
  border-radius: 999px;
  color: var(--muted-ink);
  font-weight: 850;
  padding: 0.65rem 0.85rem;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--ink);
  background: var(--yellow-soft);
}

.call-button,
.menu-toggle,
.icon-button {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
}

.call-button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.55rem 0.8rem;
  font-weight: 950;
  white-space: nowrap;
  box-shadow: 0 8px 18px rgba(29, 23, 48, 0.08);
}

.call-button span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-size: 0.9rem;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}

.menu-toggle span:not(.sr-only) {
  width: 18px;
  height: 2px;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  padding: 8rem 1.25rem 3.25rem;
}

.hero-media,
.hero-media img,
.hero-overlay,
.hero-sign-band {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(29, 23, 48, 0.92) 0%, rgba(29, 23, 48, 0.7) 46%, rgba(29, 23, 48, 0.28) 100%),
    linear-gradient(180deg, rgba(244, 213, 31, 0.14), rgba(28, 142, 74, 0.18));
}

.hero-sign-band {
  inset: auto 0 0;
  height: 22%;
  background: linear-gradient(90deg, rgba(244, 213, 31, 0.95), rgba(28, 142, 74, 0.92), rgba(51, 32, 111, 0.96));
  opacity: 0.9;
  clip-path: polygon(0 28%, 100% 0, 100% 100%, 0 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--yellow);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section .eyebrow,
.contact-section .eyebrow {
  color: var(--magenta);
}

.hero h1 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(2.9rem, 7vw, 6.6rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.hindi-title {
  max-width: 850px;
  margin: 1rem 0 0;
  color: var(--yellow);
  font-size: clamp(1.35rem, 3vw, 2.35rem);
  font-weight: 950;
  line-height: 1.2;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.36);
}

.hero-copy {
  max-width: 720px;
  margin: 1.1rem 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
}

.hero-actions,
.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-actions {
  margin-top: 1.6rem;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.78rem 1.1rem;
  font-weight: 950;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--yellow);
  color: #211700;
  border-color: #e2c300;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.36);
}

.button.whatsapp {
  background: var(--green);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.2);
}

.button.dark-text {
  color: var(--ink);
  border-color: var(--line);
}

.hero-facts {
  margin: 2.5rem 0 0;
  padding: 0;
}

.hero-facts div {
  min-width: 140px;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(12px);
}

.hero-facts dt {
  font-size: 1.45rem;
  font-weight: 950;
}

.hero-facts dd {
  margin: 0.1rem 0 0;
  color: rgba(255, 255, 255, 0.8);
}

.notice {
  background: var(--purple);
  color: var(--white);
}

.section-inner {
  width: min(var(--max), calc(100% - 2.5rem));
  margin: 0 auto;
}

.notice-inner {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.notice p {
  margin: 0;
}

.notice a {
  color: var(--yellow);
  font-weight: 950;
  white-space: nowrap;
}

.section {
  padding: 5rem 0;
}

.section.muted {
  background:
    linear-gradient(180deg, rgba(244, 213, 31, 0.18), rgba(255, 253, 240, 0.65)),
    #fbf6d4;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.section-heading h2,
.contact-copy h2,
.market-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow),
.market-copy p,
.contact-copy p {
  max-width: 560px;
  color: var(--muted-ink);
  margin: 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.service-card {
  min-height: 268px;
  display: grid;
  align-content: start;
  gap: 0.8rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 30px rgba(29, 23, 48, 0.06);
}

.service-card.priority {
  background: var(--purple);
  color: var(--white);
  border-color: var(--purple);
}

.service-card.priority p {
  color: rgba(255, 255, 255, 0.78);
}

.service-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  background: var(--yellow);
  color: var(--purple);
  font-weight: 950;
  border: 2px solid rgba(51, 32, 111, 0.16);
}

.service-card h3 {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.2;
}

.service-card p {
  margin: 0;
  color: var(--muted-ink);
}

.shop-layout {
  display: grid;
  grid-template-columns: minmax(230px, 280px) 1fr;
  gap: 1.25rem;
  align-items: start;
}

.shop-sidebar {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 30px rgba(29, 23, 48, 0.06);
}

.search-field,
.select-field {
  display: grid;
  gap: 0.4rem;
}

.search-field span,
.select-field span,
.filter-label {
  color: var(--muted-ink);
  font-size: 0.82rem;
  font-weight: 900;
}

.search-field input,
.select-field select,
.quick-form input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffef8;
  color: var(--ink);
  min-height: 44px;
  padding: 0.7rem 0.8rem;
}

.search-field input:focus,
.select-field select:focus,
.quick-form input:focus {
  outline: 3px solid rgba(244, 213, 31, 0.38);
  border-color: var(--orange);
}

.filter-group {
  display: grid;
  gap: 0.55rem;
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.chip {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--muted-ink);
  padding: 0.52rem 0.72rem;
  font-size: 0.9rem;
  font-weight: 850;
}

.chip[aria-pressed="true"] {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

.store-mini-card {
  display: grid;
  gap: 0.2rem;
  padding: 0.95rem;
  border-radius: var(--radius);
  background: #f7efff;
  border: 1px solid #dec6fb;
}

.panel-title {
  margin: 0;
  color: var(--magenta);
  font-weight: 950;
  font-size: 0.82rem;
  text-transform: uppercase;
}

.store-mini-card span {
  color: var(--muted-ink);
}

.results-bar {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.results-bar p {
  margin: 0;
  color: var(--muted-ink);
  font-weight: 850;
}

.text-button {
  border: 0;
  background: transparent;
  color: var(--blue);
  font-weight: 950;
  padding: 0.4rem 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.product-card {
  display: grid;
  grid-template-rows: 168px 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 30px rgba(29, 23, 48, 0.06);
}

.product-image {
  position: relative;
  min-height: 168px;
  overflow: hidden;
  background: var(--yellow-soft);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.product-card:hover .product-image img {
  transform: scale(1.04);
}

.badge {
  position: absolute;
  left: 0.75rem;
  top: 0.75rem;
  border-radius: 999px;
  background: rgba(51, 32, 111, 0.92);
  color: var(--yellow);
  padding: 0.35rem 0.55rem;
  font-size: 0.75rem;
  font-weight: 950;
}

.product-body {
  display: grid;
  gap: 0.75rem;
  padding: 0.95rem;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted-ink);
  font-size: 0.82rem;
  font-weight: 850;
}

.product-card h3 {
  min-height: 2.4em;
  margin: 0;
  font-size: 1.04rem;
  line-height: 1.2;
}

.product-card p {
  margin: 0;
  color: var(--muted-ink);
}

.add-row {
  display: grid;
  grid-template-columns: 1fr 112px;
  gap: 0.55rem;
  align-items: center;
}

.quantity-stepper {
  display: grid;
  grid-template-columns: 34px 1fr 34px;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  background: #fffef8;
}

.quantity-stepper button {
  border: 0;
  background: transparent;
  color: var(--purple);
  font-weight: 950;
}

.quantity-stepper span {
  display: grid;
  place-items: center;
  font-weight: 950;
}

.product-card .button {
  min-height: 42px;
  padding: 0.55rem 0.8rem;
}

.empty-state {
  padding: 4rem 1rem;
  text-align: center;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.empty-state h3 {
  margin: 0 0 0.4rem;
  font-size: 1.35rem;
}

.empty-state p {
  margin: 0;
  color: var(--muted-ink);
}

.store-visual-section {
  background: var(--purple);
  color: var(--white);
}

.split-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: center;
}

.market-copy p {
  color: rgba(255, 255, 255, 0.78);
  margin-top: 1rem;
}

.market-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.5rem;
}

.market-list span {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 0.55rem 0.75rem;
  color: rgba(255, 255, 255, 0.9);
}

.photo-stack {
  position: relative;
}

.main-photo {
  width: 100%;
  height: 430px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.sign-card {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  display: grid;
  gap: 0.2rem;
  padding: 1rem;
  border-radius: var(--radius);
  background: linear-gradient(90deg, var(--yellow), #b9db33 45%, var(--green));
  color: var(--purple);
  border: 3px solid var(--purple);
  box-shadow: var(--shadow);
}

.sign-card strong {
  color: var(--magenta);
  font-size: clamp(1.25rem, 3vw, 2rem);
  line-height: 1.1;
}

.sign-card span {
  font-weight: 950;
}

.contact-section {
  background: #fff7ca;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 470px);
  gap: 2rem;
  align-items: start;
}

.contact-copy p {
  margin-top: 1rem;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.info-panel {
  display: grid;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(29, 23, 48, 0.06);
}

.info-panel div {
  display: grid;
  gap: 0.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--line);
}

.info-panel div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.info-panel span {
  color: var(--magenta);
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 950;
}

.info-panel strong {
  line-height: 1.35;
}

.site-footer {
  background: var(--paper);
  border-top: 1px solid var(--line);
  padding: 2rem 0 5.5rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr minmax(280px, 400px);
  gap: 1.5rem;
  align-items: center;
}

.footer-inner p {
  margin: 0;
  color: var(--muted-ink);
}

.quick-form {
  display: grid;
  gap: 0.45rem;
}

.quick-form label {
  font-weight: 950;
}

.quick-form div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem;
}

.quick-form span {
  min-height: 1.2rem;
  color: var(--green-dark);
  font-weight: 850;
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 45;
  background: rgba(12, 10, 21, 0.58);
}

.cart-drawer {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 50;
  width: min(440px, 100%);
  display: grid;
  grid-template-rows: auto 1fr auto;
  transform: translateX(105%);
  transition: transform 220ms ease;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.cart-drawer.open {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem;
  border-bottom: 1px solid var(--line);
}

.drawer-header h2 {
  margin: 0;
  font-size: 2rem;
  line-height: 1;
}

.icon-button {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  font-weight: 950;
}

.cart-items {
  overflow: auto;
  padding: 0.8rem 1.2rem;
}

.cart-empty {
  display: grid;
  place-items: center;
  min-height: 260px;
  text-align: center;
  color: var(--muted-ink);
}

.cart-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 0.8rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
}

.cart-item img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: var(--radius);
}

.cart-item-info {
  display: grid;
  gap: 0.55rem;
}

.cart-item-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 0.75rem;
}

.cart-item h3 {
  margin: 0;
  font-size: 0.98rem;
}

.cart-item p {
  margin: 0.1rem 0 0;
  color: var(--muted-ink);
  font-size: 0.9rem;
}

.cart-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.remove-button {
  border: 0;
  background: transparent;
  color: var(--magenta);
  font-weight: 950;
  padding: 0.25rem 0;
}

.drawer-footer {
  display: grid;
  gap: 0.9rem;
  padding: 1.2rem;
  border-top: 1px solid var(--line);
  background: var(--white);
}

.checkout-button {
  width: 100%;
}

.checkout-status {
  min-height: 1.4rem;
  margin: 0;
  color: var(--green-dark);
  font-weight: 850;
  text-align: center;
}

.basket-fab {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 35;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  min-height: 50px;
  border: 0;
  border-radius: 999px;
  padding: 0.45rem 0.5rem 0.45rem 1rem;
  background: var(--purple);
  color: var(--white);
  font-weight: 950;
  box-shadow: var(--shadow);
}

.basket-fab strong {
  display: grid;
  place-items: center;
  min-width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 5rem;
  z-index: 80;
  transform: translate(-50%, 140%);
  max-width: min(420px, calc(100% - 2rem));
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  padding: 0.8rem 1rem;
  box-shadow: var(--shadow);
  opacity: 0;
  transition: transform 180ms ease, opacity 180ms ease;
}

.toast.show {
  transform: translate(-50%, 0);
  opacity: 1;
}

@media (max-width: 1050px) {
  .service-grid,
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-inner,
  .split-inner,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .main-photo {
    height: 360px;
  }
}

@media (max-width: 780px) {
  .nav-shell {
    min-height: 68px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: fixed;
    left: 1rem;
    right: 1rem;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    border-radius: var(--radius);
  }

  .call-button strong {
    display: none;
  }

  .hero {
    min-height: 86vh;
    padding-top: 6.5rem;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(29, 23, 48, 0.48) 0%, rgba(29, 23, 48, 0.9) 100%);
  }

  .section {
    padding: 3.5rem 0;
  }

  .section-heading,
  .notice-inner,
  .results-bar {
    align-items: start;
    flex-direction: column;
  }

  .shop-layout {
    grid-template-columns: 1fr;
  }

  .shop-sidebar {
    position: static;
  }
}

@media (max-width: 580px) {
  .section-inner {
    width: min(100% - 1.25rem, var(--max));
  }

  .hero {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .brand strong {
    font-size: 0.9rem;
  }

  .brand small {
    font-size: 0.72rem;
  }

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

  .hero-facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.45rem;
  }

  .hero-facts div {
    min-width: 0;
    padding: 0.75rem 0.5rem;
  }

  .hero-facts dt {
    font-size: 1rem;
  }

  .hero-facts dd {
    font-size: 0.76rem;
  }

  .add-row,
  .quick-form div {
    grid-template-columns: 1fr;
  }
}
