:root {
  --page: #f6f4ef;
  --surface: #ffffff;
  --surface-soft: #eeeee8;
  --ink: #171915;
  --muted: #666a62;
  --line: #d7d8d0;
  --line-strong: #b9bbb2;
  --green: #1f5a3f;
  --green-dark: #17432f;
  --green-soft: #e4efe8;
  --sale: #ba2e2a;
  --sale-soft: #f8e3e0;
  --gold: #9b6a08;
  --shadow: 0 20px 55px rgba(23, 25, 21, 0.16);
  --radius: 0px;
  --font-sans: Arial, Helvetica, sans-serif;
  --font-display: "Arial Narrow", Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--page);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body.locked {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  border-radius: 0;
}

a {
  color: inherit;
}

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

[hidden] {
  display: none !important;
}

.section-width {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.section-kicker {
  margin: 0;
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
  text-decoration: none;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button-primary {
  color: #fff;
  background: var(--ink);
}

.button-primary:hover {
  border-color: var(--green-dark);
  background: var(--green-dark);
}

.button-secondary {
  background: var(--surface);
}

.button-secondary:hover {
  background: var(--surface-soft);
}

.promo-bar {
  color: #fff;
  background: var(--ink);
}

.promo-track {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 8px 20px;
  overflow-x: auto;
  scrollbar-width: none;
  white-space: nowrap;
  font-size: 11px;
}

.promo-track::-webkit-scrollbar {
  display: none;
}

.promo-track strong {
  color: #dff2e5;
}

.promo-track span::before {
  content: "•";
  margin-right: 24px;
  color: #777b74;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid var(--line-strong);
  background: rgba(246, 244, 239, 0.97);
}

.header-inner {
  width: min(1180px, calc(100% - 40px));
  min-height: 74px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  margin-inline: auto;
}

.brand {
  display: inline-grid;
  width: max-content;
  text-decoration: none;
}

.brand span {
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.07em;
}

.brand small {
  margin-top: 5px;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a,
.text-button {
  border: 0;
  padding: 0;
  color: var(--ink);
  background: transparent;
  text-decoration: none;
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
}

.main-nav a:hover,
.text-button:hover {
  color: var(--green);
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 14px;
}

.cart-trigger {
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--ink);
  color: #fff;
  background: var(--ink);
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
}

.cart-trigger span {
  min-width: 21px;
  height: 21px;
  display: inline-grid;
  place-items: center;
  margin-left: 7px;
  border-radius: 50%;
  color: var(--ink);
  background: #fff;
  font-size: 10px;
}

.hero {
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(40px, 6vw, 80px);
  padding-block: 72px;
}

.hero-copy {
  min-width: 0;
}

.eyebrow-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 18px;
}

.eyebrow-row span {
  padding: 6px 9px;
  border: 1px solid var(--line-strong);
  background: var(--surface);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 610px;
  margin: 14px 0 20px;
  font-family: var(--font-display);
  font-size: clamp(42px, 5.2vw, 72px);
  font-weight: 900;
  line-height: 0.97;
  letter-spacing: -0.055em;
}

.hero-description {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

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

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin: 24px 0 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
  font-size: 11px;
}

.hero-points li::before {
  content: "✓";
  margin-right: 7px;
  color: var(--green);
  font-weight: 900;
}

.hero-products {
  min-width: 0;
  border: 1px solid var(--line-strong);
  background: var(--surface);
}

.hero-products-head,
.hero-products-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px;
}

.hero-products-head {
  border-bottom: 1px solid var(--line);
}

.hero-products-head > div {
  display: grid;
  gap: 2px;
}

.hero-products-head small,
.hero-products-foot small {
  color: var(--muted);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.hero-products-head strong {
  font-size: 13px;
}

.hero-products-head > span {
  color: var(--sale);
  font-size: 20px;
  font-weight: 900;
}

.hero-product-row {
  min-height: 360px;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.18fr) minmax(0, 0.85fr);
  align-items: end;
  gap: 6px;
  padding: 28px 18px 0;
}

.hero-product {
  position: relative;
  min-width: 0;
  display: grid;
  justify-items: center;
  align-content: end;
  text-decoration: none;
}

.hero-product img {
  width: 100%;
  height: 245px;
  object-fit: contain;
  filter: drop-shadow(0 15px 10px rgba(30, 30, 25, 0.14));
  transition: transform 160ms ease;
}

.hero-product.featured img {
  height: 285px;
}

.hero-product:hover img {
  transform: translateY(-5px);
}

.hero-product > strong {
  width: 100%;
  min-height: 45px;
  display: grid;
  place-items: center;
  padding: 10px 5px;
  border-top: 1px solid var(--line);
  text-align: center;
  font-size: 10px;
}

.mini-badge {
  position: absolute;
  z-index: 2;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 9px;
  color: #fff;
  background: var(--sale);
  white-space: nowrap;
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-products-foot {
  display: grid;
  grid-template-columns: auto auto 1fr;
  border-top: 1px solid var(--line-strong);
}

.hero-products-foot > div {
  display: grid;
  gap: 2px;
}

.hero-products-foot strong {
  font-size: 17px;
}

.hero-products-foot a {
  justify-self: end;
  font-size: 10px;
  font-weight: 800;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line-strong);
  background: var(--surface);
}

.proof-strip article {
  min-width: 0;
  min-height: 145px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 15px;
  padding: 24px 20px;
  border-right: 1px solid var(--line);
}

.proof-strip article:last-child {
  border-right: 0;
}

.proof-strip article > strong {
  color: var(--green);
  font-size: 27px;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.proof-strip h2 {
  margin: 3px 0 6px;
  font-size: 14px;
}

.proof-strip p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.finder {
  padding-top: 90px;
}

.finder-heading h2,
.section-heading h2 {
  margin: 9px 0 0;
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 50px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.05em;
}

.finder-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 28px;
  border: 1px solid var(--line-strong);
}

.finder-grid button {
  min-height: 140px;
  display: grid;
  align-content: space-between;
  padding: 20px;
  border: 0;
  border-right: 1px solid var(--line-strong);
  color: var(--ink);
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.finder-grid button:last-child {
  border-right: 0;
}

.finder-grid button:hover {
  background: var(--surface);
}

.finder-grid span {
  color: var(--muted);
  font-size: 9px;
}

.finder-grid strong {
  margin-top: 28px;
  font-size: 18px;
}

.finder-grid small {
  margin-top: 6px;
  color: var(--muted);
  font-size: 10px;
}

.shop-section,
.reviews-section {
  padding-top: 105px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 30px;
}

.section-heading > p {
  max-width: 440px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.section-heading code {
  padding: 2px 5px;
  background: var(--surface-soft);
  font-size: 11px;
}

.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.filter {
  min-height: 36px;
  padding: 0 13px;
  border: 1px solid var(--line-strong);
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  font-size: 10px;
  font-weight: 800;
}

.filter.active,
.filter:hover {
  color: #fff;
  border-color: var(--ink);
  background: var(--ink);
}

.karachi-status {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 10px;
  white-space: nowrap;
}

.karachi-status i {
  width: 8px;
  height: 8px;
  display: inline-block;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--green);
}

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

.product-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: var(--surface);
}

.product-media {
  position: relative;
  min-height: 295px;
  display: grid;
  place-items: center;
  padding: 38px 20px 18px;
  border-bottom: 1px solid var(--line);
}

.product-media > a {
  width: 100%;
  display: grid;
  place-items: center;
}

.product-media img {
  width: 100%;
  height: 230px;
  object-fit: contain;
  filter: drop-shadow(0 13px 9px rgba(30, 30, 25, 0.12));
  transition: transform 160ms ease;
}

.product-card:hover .product-media img {
  transform: translateY(-4px);
}

.product-sale-badge,
.product-bestseller {
  position: absolute;
  z-index: 2;
  top: 12px;
  padding: 6px 8px;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-sale-badge {
  left: 12px;
  color: #fff;
  background: var(--sale);
}

.product-bestseller {
  right: 12px;
  border: 1px solid var(--green);
  color: var(--green);
  background: #fff;
}

.product-body {
  padding: 17px;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 9px;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.product-meta span {
  color: var(--muted);
}

.product-meta strong {
  color: var(--green);
  text-align: right;
}

.product-title-link {
  text-decoration: none;
}

.product-title {
  min-height: 42px;
  margin: 0;
  font-size: 16px;
  line-height: 1.3;
}

.product-title-link:hover {
  color: var(--green);
}

.product-benefit {
  min-height: 54px;
  margin: 10px 0 14px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.65;
}

.product-size-row {
  display: flex;
  justify-content: space-between;
  padding-block: 10px;
  border-block: 1px solid var(--line);
  font-size: 10px;
}

.product-size-row span {
  color: var(--muted);
}

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

.price-wrap {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.price-wrap strong {
  font-size: 22px;
  font-weight: 900;
}

.price-wrap del {
  color: #8c8f87;
  font-size: 11px;
}

.price-saving {
  padding: 5px 7px;
  color: var(--sale);
  background: var(--sale-soft);
  font-size: 8px;
  font-weight: 900;
}

.product-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
  margin-top: 15px;
}

.add-button,
.buy-whatsapp-button {
  min-height: 44px;
  padding: 0 9px;
  cursor: pointer;
  font-size: 10px;
  font-weight: 900;
}

.add-button {
  border: 1px solid var(--ink);
  color: #fff;
  background: var(--ink);
}

.add-button:hover {
  border-color: var(--green-dark);
  background: var(--green-dark);
}

.buy-whatsapp-button {
  border: 1px solid var(--green);
  color: var(--green);
  background: transparent;
}

.buy-whatsapp-button:hover {
  color: #fff;
  background: var(--green);
}

.share-card-link {
  width: 100%;
  margin-top: 10px;
  padding: 0;
  border: 0;
  color: var(--muted);
  background: transparent;
  text-align: left;
  text-decoration: underline;
  cursor: pointer;
  font-size: 9px;
}

.delivery-banner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(220px, 0.8fr) auto;
  align-items: center;
  gap: 30px;
  margin-top: 80px;
  padding: 30px;
  border: 1px solid var(--line-strong);
  background: var(--green-soft);
}

.delivery-banner h2 {
  margin: 8px 0 0;
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.delivery-banner > p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.review-overview {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  padding: 26px;
  border: 1px solid var(--line-strong);
  background: var(--surface);
}

.review-score {
  min-width: 140px;
  display: grid;
  gap: 5px;
}

.review-score > strong {
  font-size: 44px;
  font-weight: 900;
  line-height: 1;
}

.review-score span {
  color: var(--gold);
  letter-spacing: 0.08em;
}

.review-score small {
  color: var(--muted);
  font-size: 9px;
}

.review-overview > p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.review-card {
  min-height: 190px;
  display: grid;
  align-content: space-between;
  padding: 22px;
  border: 1px solid var(--line-strong);
  background: var(--surface);
}

.review-card-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 11px;
}

.review-card-head span {
  color: var(--gold);
  white-space: nowrap;
}

.review-card p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.review-card small {
  font-size: 9px;
  font-weight: 800;
}

.order-guide {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 70px;
  margin-top: 105px;
  padding: 54px;
  border: 1px solid var(--line-strong);
  background: var(--surface);
}

.order-guide-copy h2 {
  margin: 10px 0 15px;
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 50px);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.order-guide-copy > p:not(.section-kicker) {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.order-guide-copy .button {
  margin-top: 18px;
}

.steps {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-strong);
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line-strong);
}

.steps li > span {
  color: var(--green);
  font-size: 22px;
  font-weight: 900;
}

.steps strong {
  font-size: 15px;
}

.steps p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.faq-section {
  padding-block: 105px;
}

.section-heading.compact {
  margin-bottom: 24px;
}

.faq-list {
  border-top: 1px solid var(--line-strong);
}

.faq-list details {
  border-bottom: 1px solid var(--line-strong);
}

.faq-list summary {
  padding: 21px 5px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 900;
}

.faq-list p {
  max-width: 760px;
  margin: -4px 5px 22px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.site-footer {
  color: #fff;
  background: var(--ink);
}

.footer-inner {
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.footer-brand {
  color: #fff;
}

.footer-inner p {
  color: #aeb0a9;
  font-size: 11px;
}

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

.footer-links a,
.footer-links button {
  padding: 0;
  border: 0;
  color: #fff;
  background: transparent;
  text-decoration: none;
  cursor: pointer;
  font-size: 10px;
  font-weight: 800;
}

.footer-note {
  padding-block: 16px;
  border-top: 1px solid #393b36;
  color: #8e9189;
  font-size: 9px;
}

.page-overlay {
  position: fixed;
  z-index: 90;
  inset: 0;
  background: rgba(17, 19, 16, 0.58);
}

.cart-drawer {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  width: min(460px, 100%);
  height: 100vh;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--line-strong);
  background: var(--page);
  box-shadow: var(--shadow);
  transform: translateX(102%);
  transition: transform 220ms ease;
}

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

.drawer-header {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line-strong);
}

.drawer-header small {
  color: var(--muted);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.drawer-header h2 {
  margin: 4px 0 0;
  font-size: 28px;
  line-height: 1;
}

.icon-button {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line-strong);
  color: var(--ink);
  background: var(--surface);
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}

.drawer-promo {
  display: grid;
  gap: 3px;
  padding: 13px 20px;
  color: #fff;
  background: var(--green);
}

.drawer-promo strong {
  font-size: 11px;
}

.drawer-promo span {
  opacity: 0.82;
  font-size: 9px;
}

.cart-empty {
  margin: auto;
  padding: 35px 24px;
  text-align: center;
}

.cart-empty > strong {
  color: #d3d4ce;
  font-size: 75px;
  font-weight: 900;
  line-height: 1;
}

.cart-empty h3 {
  margin: 10px 0 7px;
  font-size: 25px;
}

.cart-empty p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 12px;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
}

.cart-item {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr) auto;
  align-items: center;
  gap: 13px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
}

.cart-item-image {
  width: 78px;
  height: 88px;
  display: grid;
  place-items: center;
  background: var(--surface);
}

.cart-item-image img {
  width: 90%;
  height: 90%;
  object-fit: contain;
}

.cart-item h3 {
  margin: 0;
  font-size: 12px;
  line-height: 1.4;
}

.cart-item-subtitle {
  margin: 4px 0 10px;
  color: var(--muted);
  font-size: 9px;
}

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

.cart-item-controls button {
  width: 29px;
  height: 29px;
  padding: 0;
  border: 1px solid var(--line-strong);
  background: transparent;
  cursor: pointer;
}

.cart-item-controls strong {
  min-width: 18px;
  text-align: center;
  font-size: 11px;
}

.cart-item-price {
  display: grid;
  justify-items: end;
  gap: 12px;
}

.cart-item-price strong {
  font-size: 12px;
}

.cart-item-price button {
  padding: 0;
  border: 0;
  color: var(--sale);
  background: transparent;
  cursor: pointer;
  font-size: 9px;
  text-decoration: underline;
}

.cart-footer {
  padding: 20px 22px 22px;
  border-top: 1px solid var(--line-strong);
  background: var(--surface);
}

.cart-totals {
  display: grid;
  gap: 9px;
}

.cart-totals > div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 12px;
}

.cart-grand-total {
  margin-top: 6px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--ink) !important;
}

.cart-grand-total strong {
  font-size: 22px;
}

.whatsapp-order-button {
  width: 100%;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 17px;
  padding: 0 17px;
  border: 0;
  color: #fff;
  background: var(--green);
  cursor: pointer;
  font-size: 11px;
  font-weight: 900;
}

.whatsapp-order-button:hover {
  background: var(--green-dark);
}

.cart-note {
  margin: 10px 0 0;
  color: var(--muted);
  text-align: center;
  font-size: 9px;
  line-height: 1.55;
}

.product-modal {
  position: fixed;
  z-index: 110;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 22px;
  pointer-events: none;
}

.product-modal-card {
  position: relative;
  width: min(860px, 100%);
  max-height: calc(100vh - 44px);
  max-height: calc(100dvh - 44px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  overflow-y: auto;
  border: 1px solid var(--line-strong);
  background: var(--page);
  box-shadow: var(--shadow);
  pointer-events: auto;
}

.modal-close {
  position: absolute;
  z-index: 3;
  top: 15px;
  right: 15px;
}

.modal-media {
  min-height: 520px;
  display: grid;
  place-items: center;
  padding: 50px;
  border-right: 1px solid var(--line-strong);
  background: var(--surface);
}

.modal-media img {
  width: 100%;
  height: 410px;
  object-fit: contain;
  filter: drop-shadow(0 17px 12px rgba(30, 30, 25, 0.14));
}

.modal-copy {
  display: grid;
  align-content: center;
  padding: 56px 42px;
}

.modal-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 20px;
}

.modal-topline span {
  padding: 7px 9px;
  color: #fff;
  background: var(--sale);
  font-size: 9px;
  font-weight: 900;
}

.modal-topline strong {
  color: var(--green);
  font-size: 9px;
}

.modal-copy h2 {
  margin: 10px 0 14px;
  font-family: var(--font-display);
  font-size: clamp(31px, 4vw, 40px);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.modal-copy > p:not(.section-kicker) {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.modal-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 25px;
  padding-block: 17px;
  border-block: 1px solid var(--line);
}

.modal-price strong {
  font-size: 31px;
  font-weight: 900;
}

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

.modal-price span {
  margin-left: auto;
  font-size: 11px;
  font-weight: 900;
}

.modal-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 18px;
}

.share-product {
  margin-top: 15px;
  padding: 0;
  border: 0;
  color: var(--muted);
  background: transparent;
  text-align: left;
  text-decoration: underline;
  cursor: pointer;
  font-size: 10px;
}

.whatsapp-float {
  position: fixed;
  z-index: 65;
  right: 18px;
  bottom: 18px;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  font-size: 11px;
  font-weight: 900;
}

.mobile-cart {
  position: fixed;
  z-index: 70;
  left: 10px;
  right: 10px;
  bottom: max(10px, env(safe-area-inset-bottom));
  min-height: 60px;
  display: none;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 15px;
  padding: 8px 9px 8px 15px;
  color: #fff;
  background: var(--ink);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.28);
}

.mobile-cart > div {
  min-width: 0;
  display: grid;
}

.mobile-cart strong {
  font-size: 14px;
}

.mobile-cart small {
  overflow: hidden;
  color: #b9bbb4;
  font-size: 9px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mobile-cart button {
  min-height: 42px;
  padding: 0 15px;
  border: 0;
  color: var(--ink);
  background: #fff;
  cursor: pointer;
  font-size: 10px;
  font-weight: 900;
}

.sale-popup {
  position: fixed;
  z-index: 75;
  left: 18px;
  bottom: 18px;
  width: min(370px, calc(100% - 36px));
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr) 26px;
  align-items: center;
  gap: 12px;
  padding: 10px 10px 10px 12px;
  border: 1px solid var(--line-strong);
  background: var(--surface);
  box-shadow: 0 18px 48px rgba(31, 30, 25, 0.2);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 200ms ease, transform 200ms ease;
}

.sale-popup.show {
  opacity: 1;
  transform: translateY(0);
}

.sale-popup-media {
  width: 62px;
  height: 70px;
  display: grid;
  place-items: center;
}

.sale-popup-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.sale-popup-copy {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.sale-popup-copy small {
  color: var(--sale);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.09em;
}

.sale-popup-copy strong {
  overflow: hidden;
  font-size: 11px;
  line-height: 1.3;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sale-popup-copy span {
  color: var(--muted);
  font-size: 9px;
}

.sale-popup-copy b {
  color: var(--ink);
}

.sale-popup > button {
  width: 26px;
  height: 26px;
  align-self: start;
  padding: 0;
  border: 0;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-size: 18px;
}

.toast {
  position: fixed;
  z-index: 200;
  left: 50%;
  bottom: 25px;
  max-width: calc(100% - 30px);
  transform: translate(-50%, 14px);
  padding: 11px 15px;
  color: #fff;
  background: var(--ink);
  opacity: 0;
  pointer-events: none;
  text-align: center;
  font-size: 11px;
  font-weight: 800;
  transition: opacity 180ms ease, transform 180ms ease;
}

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

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

  .main-nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-copy {
    max-width: 760px;
  }

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

  .proof-strip article:nth-child(2) {
    border-right: 0;
  }

  .proof-strip article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

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

  .delivery-banner {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .delivery-banner > p {
    grid-column: 1 / -1;
    grid-row: 2;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 74px;
  }

  .section-width,
  .header-inner {
    width: min(100% - 24px, 1180px);
  }

  .promo-track {
    justify-content: flex-start;
    padding-inline: 12px;
  }

  .site-header,
  .header-inner {
    min-height: 66px;
  }

  .text-button {
    display: none;
  }

  .brand span {
    font-size: 22px;
  }

  .hero {
    gap: 45px;
    padding-block: 50px;
  }

  .hero h1 {
    font-size: clamp(42px, 12vw, 56px);
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-points {
    display: grid;
    gap: 9px;
  }

  .hero-product-row {
    min-height: 300px;
    padding-inline: 9px;
  }

  .hero-product img {
    height: 195px;
  }

  .hero-product.featured img {
    height: 230px;
  }

  .hero-products-foot {
    grid-template-columns: 1fr 1fr;
  }

  .hero-products-foot a {
    grid-column: 1 / -1;
    justify-self: start;
    margin-top: 4px;
  }

  .proof-strip {
    grid-template-columns: 1fr;
  }

  .proof-strip article,
  .proof-strip article:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-strip article:last-child {
    border-bottom: 0;
  }

  .finder {
    padding-top: 70px;
  }

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

  .finder-grid button:nth-child(2) {
    border-right: 0;
  }

  .finder-grid button:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line-strong);
  }

  .section-heading {
    display: grid;
    align-items: start;
    gap: 15px;
  }

  .shop-section,
  .reviews-section {
    padding-top: 78px;
  }

  .shop-toolbar {
    display: grid;
  }

  .karachi-status {
    justify-self: start;
  }

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

  .product-media {
    min-height: 245px;
    padding-inline: 14px;
  }

  .product-media img {
    height: 190px;
  }

  .product-body {
    padding: 14px;
  }

  .product-title {
    min-height: 43px;
    font-size: 14px;
  }

  .product-benefit {
    display: none;
  }

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

  .delivery-banner {
    grid-template-columns: 1fr;
    margin-top: 58px;
    padding: 24px;
  }

  .delivery-banner > p {
    grid-column: auto;
    grid-row: auto;
  }

  .delivery-banner .button {
    justify-self: start;
  }

  .review-overview {
    grid-template-columns: 1fr;
  }

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

  .order-guide {
    grid-template-columns: 1fr;
    gap: 38px;
    margin-top: 78px;
    padding: 32px 24px;
  }

  .faq-section {
    padding-block: 78px;
  }

  .footer-inner {
    min-height: 250px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }

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

  .modal-media {
    min-height: 300px;
    padding: 38px;
    border-right: 0;
    border-bottom: 1px solid var(--line-strong);
  }

  .modal-media img {
    height: 245px;
  }

  .modal-copy {
    padding: 32px 24px;
  }

  .mobile-cart {
    display: grid;
  }

  .whatsapp-float,
  .sale-popup {
    bottom: 82px;
  }
}

@media (max-width: 540px) {
  .promo-track {
    font-size: 10px;
  }

  .header-actions {
    gap: 8px;
  }

  .cart-trigger {
    min-height: 40px;
    padding-inline: 11px;
  }

  .hero-products-head {
    align-items: flex-start;
  }

  .hero-product-row {
    grid-template-columns: 0.8fr 1.2fr 0.8fr;
    min-height: 255px;
  }

  .hero-product img {
    height: 155px;
  }

  .hero-product.featured img {
    height: 190px;
  }

  .hero-product > strong {
    min-height: 42px;
    font-size: 9px;
  }

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

  .finder-grid button,
  .finder-grid button:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line-strong);
  }

  .finder-grid button:last-child {
    border-bottom: 0;
  }

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

  .product-media {
    min-height: 310px;
  }

  .product-media img {
    height: 255px;
  }

  .product-title {
    min-height: 0;
    font-size: 17px;
  }

  .product-benefit {
    min-height: 0;
    display: block;
    font-size: 11px;
  }

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

  .cart-item {
    grid-template-columns: 66px minmax(0, 1fr);
  }

  .cart-item-image {
    width: 66px;
    height: 78px;
  }

  .cart-item-price {
    grid-column: 2;
    justify-items: start;
    grid-auto-flow: column;
    justify-content: start;
    align-items: center;
  }

  .product-modal {
    padding: 8px;
  }

  .product-modal-card {
    max-height: calc(100vh - 16px);
    max-height: calc(100dvh - 16px);
  }

  .modal-actions {
    grid-template-columns: 1fr;
  }

  .sale-popup {
    left: 10px;
    width: calc(100% - 20px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
