@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,500&family=Inter:wght@400;500;600;700&display=swap");

:root {
  color-scheme: light;
  --clay: #a9673f;
  --clay-dark: #7e4b28;
  --forest: #3c4636;
  --forest-soft: #5b6754;
  --cream: #f7f1e4;
  --paper: #fffbf3;
  --ink: #2c2620;
  --muted: #8a7f6c;
  --gold: #c99a4a;
  --rose: #b9695a;
  --sage: #e7e6da;
  --line: #e6ddc9;
  --shadow: 0 24px 60px rgba(60, 45, 25, 0.10);
  --shadow-sm: 0 10px 26px rgba(60, 45, 25, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

.announcement-bar {
  min-height: 40px;
  display: grid;
  place-items: center;
  padding: 9px 16px;
  color: var(--paper);
  background: var(--forest);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-align: center;
}

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

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

button {
  cursor: pointer;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  min-height: 82px;
  padding: 12px clamp(18px, 4vw, 54px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 251, 243, 0.92);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 235px;
}

.brand-logo {
  width: 60px;
  height: 46px;
  object-fit: contain;
  border-radius: 6px;
  background: var(--paper);
}

.brand strong {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--forest);
  letter-spacing: 0.01em;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 11.5px;
  letter-spacing: 0.04em;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2.2vw, 34px);
  color: var(--forest);
  font-weight: 500;
  font-size: 14.5px;
}

.site-nav a {
  padding: 10px 0;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.site-nav a:hover {
  color: var(--clay);
  border-color: var(--clay);
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  font-size: 12px;
  font-weight: 600;
}

.icon-btn,
.cart-btn,
.primary-btn,
.secondary-btn,
.link-btn {
  border: 0;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.icon-btn,
.cart-btn {
  min-height: 42px;
  padding: 0 18px;
  color: var(--forest);
  border: 1px solid var(--line);
  background: var(--paper);
  font-size: 13.5px;
}

.cart-btn span {
  display: inline-grid;
  min-width: 20px;
  height: 20px;
  margin-left: 8px;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--clay);
  font-size: 11px;
}

.hero {
  position: relative;
  min-height: min(680px, calc(100vh - 82px));
  display: grid;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--cream);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(247, 241, 228, 0.95), rgba(247, 241, 228, 0.72) 46%, rgba(247, 241, 228, 0.18));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  padding: clamp(64px, 8vw, 110px) clamp(20px, 6vw, 86px);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--clay);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  color: var(--forest);
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  font-size: clamp(42px, 6.5vw, 78px);
  line-height: 1.05;
}

h2 {
  margin-bottom: 14px;
  color: var(--forest);
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  font-size: clamp(26px, 3.4vw, 40px);
  line-height: 1.1;
}

.hero-content p:not(.eyebrow) {
  max-width: 540px;
  color: var(--forest-soft);
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.6;
}

.hero-actions,
.filters,
.section-head {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.primary-btn,
.secondary-btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  font-size: 14px;
}

.primary-btn {
  color: white;
  background: var(--forest);
  box-shadow: var(--shadow-sm);
}

.secondary-btn {
  color: var(--forest);
  border: 1px solid var(--line);
  background: var(--paper);
}

.primary-btn:hover,
.secondary-btn:hover,
.cart-btn:hover,
.icon-btn:hover {
  transform: translateY(-1px);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  padding: 0 clamp(18px, 5vw, 72px);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.trust-strip span {
  min-height: 64px;
  display: grid;
  place-items: center;
  padding: 14px;
  color: var(--forest-soft);
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  border-right: 1px solid var(--line);
}

.trust-strip span:last-child {
  border-right: 0;
}

.category-quicklinks {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  padding: clamp(30px, 4vw, 48px) clamp(18px, 5vw, 72px);
  background: var(--cream);
}

.category-quicklinks a {
  display: grid;
  min-height: 92px;
  place-items: center;
  border-radius: 14px;
  color: var(--forest);
  background: var(--paper);
  border: 1px solid var(--line);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.01em;
  transition: transform 0.18s ease, border-color 0.18s ease;
}

.category-quicklinks a:hover {
  transform: translateY(-2px);
  border-color: var(--clay);
}

.spotlight-band {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  padding: clamp(38px, 6vw, 82px) clamp(18px, 6vw, 86px);
  background: var(--paper);
}

.spotlight-band img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.spotlight-tags,
.option-row,
.cart-promo div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.spotlight-tags span,
.option-row span,
.cart-promo span {
  border-radius: 999px;
  padding: 7px 12px;
  color: var(--forest);
  background: var(--cream);
  border: 1px solid var(--line);
  font-size: 12px;
  font-weight: 600;
}

.ticker-band {
  display: flex;
  gap: 26px;
  overflow: hidden;
  white-space: nowrap;
  padding: 16px 0;
  color: var(--cream);
  background: var(--forest);
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  font-size: clamp(18px, 3vw, 32px);
}

.ticker-band span {
  animation: drift 22s linear infinite;
}

@keyframes drift {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

.toolbar,
.content-band {
  padding: clamp(34px, 5vw, 72px) clamp(18px, 5vw, 72px);
}

.toolbar {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.filters input,
.filters select,
.contact-form input,
.contact-form textarea,
.admin-form input,
.checkout-form input,
.checkout-form textarea,
.login-form input {
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0 14px;
  color: var(--ink);
  background: white;
  outline-color: var(--clay);
}

.filters input {
  width: min(320px, 72vw);
}

.product-catalog {
  display: grid;
  gap: 34px;
  padding: 0 clamp(18px, 5vw, 72px) clamp(48px, 6vw, 82px);
  background: var(--paper);
}

.category-section {
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}

.category-section .category-head {
  background: var(--cream);
}

.category-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 26px 28px;
  border-bottom: 1px solid var(--line);
}

.category-head h3 {
  margin: 0 0 8px;
  color: var(--forest);
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  font-size: clamp(22px, 2.6vw, 32px);
}

.category-head p {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 14.5px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  padding: 22px;
}

.product-card {
  display: grid;
  grid-template-rows: 210px 1fr;
  min-height: 460px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: white;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.mockup {
  position: relative;
  display: grid;
  min-height: 205px;
  place-items: center;
  overflow: hidden;
  background: var(--cream);
  border: 0;
  width: 100%;
}

.product-ribbon {
  position: absolute;
  z-index: 2;
  left: 12px;
  top: 12px;
  border-radius: 999px;
  padding: 6px 12px;
  color: white;
  background: var(--clay);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.product-image-button {
  padding: 0;
}

.product-photo,
.detail-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mockup-photo {
  filter: saturate(1.02);
}

.mockup-caption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  border-radius: 10px;
  padding: 8px;
  color: var(--forest);
  background: rgba(255, 251, 243, 0.92);
  font-size: 11.5px;
  font-weight: 600;
  text-align: center;
}

.mockup::before,
.mockup::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(169, 103, 63, 0.12);
}

.mockup::before {
  width: 130px;
  height: 44px;
  left: -30px;
  bottom: 30px;
  transform: rotate(-24deg);
}

.mockup::after {
  width: 94px;
  height: 34px;
  right: -16px;
  top: 32px;
  transform: rotate(28deg);
}

.pack {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  color: white;
  font-weight: 600;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.18);
}

.pack.jar {
  width: 108px;
  height: 92px;
  border-radius: 34px 34px 24px 24px;
  background: linear-gradient(145deg, var(--forest), var(--forest-soft));
  box-shadow: inset -14px 0 22px rgba(0, 0, 0, 0.10), var(--shadow-sm);
}

.pack.bottle {
  width: 72px;
  height: 148px;
  border-radius: 20px 20px 16px 16px;
  background: linear-gradient(145deg, var(--clay-dark), var(--forest) 72%);
  box-shadow: inset -10px 0 22px rgba(0, 0, 0, 0.14), var(--shadow-sm);
}

.pack.bottle::before {
  content: "";
  position: absolute;
  top: -24px;
  width: 36px;
  height: 28px;
  border-radius: 8px 8px 3px 3px;
  background: #2c2620;
}

.pack.soap {
  width: 136px;
  height: 70px;
  border-radius: 16px;
  background: linear-gradient(145deg, var(--gold), var(--clay-dark));
  box-shadow: inset -16px 0 25px rgba(0, 0, 0, 0.12), var(--shadow-sm);
}

.pack.pouch {
  width: 110px;
  height: 142px;
  border-radius: 12px 12px 18px 18px;
  background: linear-gradient(145deg, var(--gold), var(--rose));
  box-shadow: var(--shadow-sm);
}

.pack.label {
  width: 74%;
  min-height: 42px;
  padding: 8px;
  border-radius: 10px;
  background: rgba(255, 251, 243, 0.92);
  color: var(--forest);
  text-shadow: none;
  font-size: 12px;
}

.product-info {
  display: grid;
  gap: 10px;
  padding: 18px 20px 20px;
}

.product-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.product-top h3 {
  margin: 0;
  color: var(--ink);
  font-size: 16.5px;
  font-weight: 600;
  line-height: 1.25;
}

.product-title {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 16.5px;
  font-weight: 600;
  line-height: 1.25;
  text-align: left;
}

.badge {
  height: 24px;
  white-space: nowrap;
  border-radius: 999px;
  padding: 5px 10px;
  color: var(--forest);
  background: var(--cream);
  font-size: 11px;
  font-weight: 600;
}

.sku {
  color: var(--muted);
  font-size: 12px;
}

.rating-line {
  color: var(--gold);
  font-size: 12.5px;
  font-weight: 600;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
}

.card-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.price {
  color: var(--forest);
  font-size: 18px;
  font-weight: 700;
}

.price del {
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

.price small {
  color: var(--clay);
  font-size: 12px;
}

.concern-section {
  background: var(--cream);
}

.concern-grid,
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.concern-grid button,
.why-grid article {
  min-height: 120px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px;
  color: var(--forest);
  background: white;
  box-shadow: var(--shadow-sm);
  font-size: 16px;
  font-weight: 600;
  transition: transform 0.18s ease, border-color 0.18s ease;
}

.concern-grid button:hover {
  transform: translateY(-2px);
  border-color: var(--clay);
}

.why-band {
  background: var(--paper);
}

.why-grid article strong,
.why-grid article span {
  display: block;
  font-family: inherit;
}

.why-grid article strong {
  font-weight: 600;
}

.why-grid article span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13.5px;
  font-weight: 400;
}

.two-column {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
  background: var(--cream);
}

.two-column p {
  color: var(--forest-soft);
  line-height: 1.6;
}

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

.testimonial-list article,
.policy-grid article {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px;
  background: var(--paper);
}

.testimonial-list article strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  color: var(--forest);
}

.testimonial-list article strong::before {
  content: "★★★★★  ";
  display: block;
  margin-bottom: 6px;
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 2px;
}

.testimonial-list p {
  color: var(--muted);
  line-height: 1.6;
  font-size: 14.5px;
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  background: var(--paper);
}

.contact-form,
.admin-form,
.checkout-form,
.login-form {
  display: grid;
  gap: 12px;
}

textarea {
  min-height: 104px;
  padding-top: 12px;
  resize: vertical;
}

.admin-panel {
  background: white;
}

.section-head {
  justify-content: space-between;
  margin-bottom: 22px;
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 18px;
}

.stat {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
  background: var(--cream);
}

.stat strong {
  display: block;
  color: var(--forest);
  font-size: 24px;
  font-family: "Playfair Display", Georgia, serif;
}

.admin-form {
  grid-template-columns: 1fr 1fr 130px 120px auto;
  margin-bottom: 20px;
}

.admin-table-wrap {
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.admin-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  background: var(--paper);
}

.admin-table th,
.admin-table td {
  padding: 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.admin-table th {
  color: var(--forest);
  background: var(--cream);
  font-weight: 600;
  font-size: 13px;
}

.drawer {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: none;
  justify-content: flex-end;
  background: rgba(30, 24, 16, 0.42);
}

.drawer.open {
  display: flex;
}

.drawer-panel {
  width: min(520px, 100%);
  height: 100%;
  overflow: auto;
  padding: 24px;
  background: var(--paper);
  box-shadow: -18px 0 40px rgba(0, 0, 0, 0.14);
}

.detail-panel {
  width: min(820px, 100%);
}

.detail-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 24px;
  align-items: start;
}

.detail-mockup {
  min-height: 360px;
  border-radius: 16px;
}

.detail-list {
  display: grid;
  gap: 10px;
  margin: 20px 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.drawer-panel.slim {
  width: min(420px, 100%);
}

.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.drawer-head h2 {
  margin: 0;
  font-size: 30px;
}

.cart-items {
  display: grid;
  gap: 12px;
}

.cart-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
}

.qty-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.qty-controls button {
  width: 32px;
  height: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  margin: 22px 0;
  padding-top: 18px;
  border-top: 2px solid var(--forest);
  color: var(--forest);
  font-size: 20px;
  font-family: "Playfair Display", Georgia, serif;
}

.upi-box {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 16px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px;
  background: var(--cream);
}

.cart-promo {
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px;
  background: var(--cream);
}

.qr-code {
  display: grid;
  width: 104px;
  height: 104px;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(5, 1fr);
  gap: 4px;
  padding: 8px;
  background: white;
}

.qr-code span {
  background: var(--forest);
}

.qr-code span:nth-child(2n),
.qr-code span:nth-child(7),
.qr-code span:nth-child(13),
.qr-code span:nth-child(18) {
  background: transparent;
}

.link-btn {
  padding: 0;
  color: var(--forest);
  background: transparent;
  text-decoration: underline;
}

.social-login {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.social-login button {
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--forest);
  background: white;
  font-weight: 600;
}

.login-note {
  color: var(--muted);
  font-size: 13px;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 60;
  transform: translateX(-50%) translateY(20px);
  max-width: min(560px, calc(100vw - 32px));
  padding: 14px 20px;
  border-radius: 999px;
  color: white;
  background: var(--forest);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transition: 0.2s ease;
}

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

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 18px;
  padding: 34px;
  color: var(--cream);
  background: var(--forest);
  font-size: 14px;
}

footer strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 16px;
}

.admin-page {
  background: var(--cream);
}

.admin-login-panel {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 440px);
  gap: 30px;
  align-items: center;
  padding: clamp(48px, 8vw, 100px) clamp(18px, 6vw, 86px);
  min-height: calc(100vh - 82px);
}

.admin-login-form,
.product-editor {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.admin-hidden {
  display: none !important;
}

.product-editor {
  grid-template-columns: repeat(4, 1fr);
}

.product-editor textarea,
.admin-form-actions {
  grid-column: 1 / -1;
}

.admin-form-actions,
.table-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.danger-btn {
  min-height: 46px;
  border: 1px solid rgba(185, 105, 90, 0.3);
  border-radius: 10px;
  padding: 0 14px;
  color: #8e3c2c;
  background: #fbeee8;
  font-weight: 600;
}

.admin-thumb {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--line);
}

.table-description {
  max-width: 420px;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

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

  .testimonial-list,
  .policy-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: auto auto 1fr;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 18px;
    right: 18px;
    top: 82px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 10px 16px;
    background: white;
    box-shadow: var(--shadow);
  }

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

  .header-actions {
    justify-self: end;
  }

  .hero {
    min-height: 620px;
  }

  .hero::after {
    background: linear-gradient(180deg, rgba(247, 241, 228, 0.95), rgba(247, 241, 228, 0.74), rgba(247, 241, 228, 0.24));
  }

  .trust-strip,
  .two-column,
  .admin-stats,
  .admin-login-panel,
  .detail-grid,
  .spotlight-band,
  .concern-grid,
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }

  .toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .filters {
    align-items: stretch;
  }

  .filters input,
  .filters select {
    width: 100%;
  }

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

  .admin-form,
  .product-editor {
    grid-template-columns: 1fr 1fr;
  }

  .category-head {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .site-header {
    gap: 10px;
    padding-inline: 12px;
  }

  .brand {
    min-width: 0;
  }

  .brand small,
  .icon-btn#loginOpen {
    display: none;
  }

  .brand strong {
    font-size: 14px;
  }

  .brand-logo {
    width: 46px;
    height: 36px;
  }

  .product-grid,
  .trust-strip,
  .category-quicklinks,
  .two-column,
  .admin-stats,
  .admin-form,
  .product-editor,
  .admin-login-panel,
  .detail-grid,
  .spotlight-band,
  .concern-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    min-height: 0;
  }

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