:root {
  --yellow: #ffd814;
  --yellow-soft: #fff8d7;
  --yellow-pale: #fffdf2;
  --red: #ef1b16;
  --red-dark: #bd1713;
  --green: #0a9f38;
  --green-soft: #eaf8ed;
  --ink: #1e293b;
  --muted: #64748b;
  --line: #eadfbd;
  --white: #ffffff;
  --shadow: 0 20px 55px rgba(160, 91, 0, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #fffdf5 0%, #fff9df 45%, #ffffff 100%);
}

body.menu-open {
  overflow: hidden;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 253, 242, 0.92);
  border-bottom: 1px solid rgba(234, 223, 189, 0.8);
  backdrop-filter: blur(14px);
}

.nav-shell {
  width: min(1180px, calc(100% - 32px));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

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

.brand img,
.footer-brand img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(239, 27, 22, 0.16);
}

.brand strong,
.footer-brand strong {
  display: block;
  font-size: 1rem;
  letter-spacing: 0;
}

.brand small,
.footer-brand span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  margin-top: 2px;
}

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

.nav-links a {
  color: #40506a;
  font-size: 0.94rem;
  font-weight: 600;
  padding: 10px 12px;
  border-radius: 8px;
}

.nav-links a:hover {
  background: var(--yellow-soft);
  color: var(--red-dark);
}

.nav-cta,
.primary-btn,
.secondary-btn,
.contact-form button,
.about-card a {
  min-height: 46px;
  border: 0;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  font-weight: 800;
  cursor: pointer;
}

.nav-cta,
.primary-btn,
.contact-form button {
  color: #fff;
  background: var(--red);
  box-shadow: 0 12px 24px rgba(239, 27, 22, 0.2);
}

.nav-cta:hover,
.primary-btn:hover,
.contact-form button:hover {
  background: var(--red-dark);
}

.secondary-btn,
.about-card a {
  color: var(--red-dark);
  background: #fff;
  border: 1px solid rgba(239, 27, 22, 0.2);
}

.menu-toggle {
  display: none;
  position: relative;
  z-index: 60;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 10px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
  transition: transform 220ms ease, opacity 180ms ease;
  transform-origin: center;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  width: min(1180px, calc(100% - 32px));
  min-height: calc(100vh - 78px);
  margin: 0 auto;
  padding: 70px 0 42px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.82fr);
  align-items: center;
  gap: 48px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 18px;
  font-size: clamp(2.65rem, 6vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 650px;
  color: #4b5b73;
  font-size: 1.15rem;
  line-height: 1.75;
}

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

.app-strip {
  max-width: 640px;
  margin-top: 18px;
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid #d7edc8;
  border-radius: 8px;
  background: #f4fbef;
}

.app-strip strong,
.app-strip span {
  display: block;
}

.app-strip strong {
  color: #176a2f;
  margin-bottom: 4px;
}

.app-strip span {
  color: #587064;
  font-size: 0.9rem;
  line-height: 1.45;
}

.app-strip a {
  min-height: 40px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: 8px;
  color: #fff;
  background: var(--green);
  font-weight: 800;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.trust-row span {
  padding: 10px 14px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
  color: #45556c;
  font-weight: 700;
}

.hero-panel {
  position: relative;
  min-height: 520px;
  border: 1px solid rgba(234, 223, 189, 0.9);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 36%, rgba(255, 216, 20, 0.42), transparent 46%),
    linear-gradient(145deg, #ffffff 0%, #fff5bf 100%);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 34px;
}

.hero-panel img {
  width: min(78%, 360px);
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  filter: drop-shadow(0 24px 34px rgba(239, 27, 22, 0.18));
}

.delivery-badge {
  position: absolute;
  top: 22px;
  left: 22px;
  right: 22px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(234, 223, 189, 0.9);
}

.delivery-badge span {
  color: var(--green);
  font-weight: 800;
}

.whatsapp-label,
.whatsapp-card span,
.floating-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.whatsapp-label svg,
.whatsapp-card svg,
.floating-whatsapp svg,
.floating-whatsapp img {
  width: 22px;
  height: 22px;
  fill: currentColor;
  flex: 0 0 auto;
}

.delivery-badge strong {
  color: var(--red-dark);
  font-size: 0.94rem;
}

.hero-card-grid {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.hero-card-grid span {
  min-height: 58px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #31435a;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(234, 223, 189, 0.9);
  font-weight: 800;
}

.search-band,
.promise-band,
.about-section,
.privacy-policy-section,
.contact-section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.search-band {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 440px);
  gap: 18px;
  align-items: center;
  padding: 20px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 16px 40px rgba(160, 91, 0, 0.1);
}

.search-band strong {
  display: block;
  font-size: 1.05rem;
}

.search-band span {
  color: var(--muted);
  font-size: 0.94rem;
}

.search-box input {
  width: 100%;
  min-height: 52px;
  border: 1px solid #e5d69b;
  border-radius: 8px;
  padding: 0 16px;
  outline: none;
}

.search-box input:focus,
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(239, 27, 22, 0.08);
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 84px 0 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 30px;
}

.section-heading h2,
.promise-band h2,
.about-section h2,
.privacy-policy-section h2,
.contact-section h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow),
.promise-band p:not(.eyebrow),
.about-section p,
.privacy-policy-section p,
.contact-section p {
  color: var(--muted);
  line-height: 1.7;
}

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

.category-card {
  min-height: 164px;
  padding: 18px 14px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #fff;
  text-align: center;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.category-card:hover,
.category-card.active {
  transform: translateY(-4px);
  border-color: rgba(239, 27, 22, 0.35);
  box-shadow: 0 14px 32px rgba(160, 91, 0, 0.12);
}

.category-icon {
  width: 76px;
  height: 76px;
  margin: 0 auto 14px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--red);
  background: linear-gradient(145deg, var(--yellow-soft), #fff);
  border: 3px solid #fff0a9;
  font-weight: 900;
  font-size: 1.45rem;
}

.category-card strong {
  display: block;
  color: #31435a;
  font-size: 0.94rem;
  line-height: 1.35;
}

.deals-section {
  padding-bottom: 84px;
}

.compact-heading {
  margin-bottom: 22px;
}

.deal-toolbar {
  display: flex;
  justify-content: flex-start;
  gap: 16px;
  align-items: center;
  margin-bottom: 22px;
}

.filter-tabs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.filter-tabs button {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: #40506a;
  padding: 0 14px;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
}

.filter-tabs button.active {
  color: #fff;
  border-color: var(--red);
  background: var(--red);
}

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

.empty-state {
  grid-column: 1 / -1;
  min-height: 160px;
  display: grid;
  place-items: center;
  border: 1px dashed var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--muted);
  text-align: center;
}

.product-card {
  min-height: 306px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 12px 30px rgba(160, 91, 0, 0.08);
}

.product-visual {
  height: 154px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(255, 216, 20, 0.55), rgba(10, 159, 56, 0.12)),
    #fffdf2;
}

.product-visual img {
  width: min(82%, 178px);
  height: 126px;
  object-fit: contain;
  filter: drop-shadow(0 14px 16px rgba(160, 91, 0, 0.12));
}

.product-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 16px;
}

.product-body small {
  color: var(--green);
  font-weight: 800;
  text-transform: uppercase;
}

.product-body h3 {
  margin: 8px 0 8px;
  font-size: 1.05rem;
  line-height: 1.35;
}

.product-body p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
  margin-bottom: 0;
}

.promise-band {
  padding: 56px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--yellow) 0%, #fff1a8 100%);
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 36px;
  align-items: center;
}

.whatsapp-section,
.payment-safety,
.service-area-section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 28px;
  border-radius: 8px;
}

.whatsapp-section {
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr minmax(260px, 360px);
  gap: 28px;
  align-items: center;
  background: #f5fff7;
  border: 1px solid #c8efcf;
}

.whatsapp-copy h2,
.payment-safety h2 {
  margin-bottom: 12px;
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
  line-height: 1.1;
}

.whatsapp-copy p:not(.eyebrow),
.payment-safety p {
  color: var(--muted);
  line-height: 1.7;
}

.whatsapp-card {
  min-height: 210px;
  padding: 26px;
  display: grid;
  align-content: center;
  gap: 10px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, #0a9f38, #087a2b);
  box-shadow: 0 18px 38px rgba(10, 159, 56, 0.24);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.whatsapp-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 44px rgba(10, 159, 56, 0.3);
}

.whatsapp-card span {
  width: fit-content;
  padding: 8px 12px;
  border-radius: 8px;
  color: #087a2b;
  background: #fff;
  font-weight: 900;
}

.whatsapp-card strong {
  font-size: 1.7rem;
  line-height: 1.1;
}

.whatsapp-card small {
  color: #dcffe3;
  font-weight: 700;
}

.payment-safety,
.service-area-section {
  padding: 42px;
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 26px;
  align-items: center;
  background: #fff;
  border: 1px solid rgba(239, 27, 22, 0.18);
  box-shadow: 0 16px 36px rgba(160, 91, 0, 0.08);
}

.payment-safety .eyebrow {
  color: var(--red-dark);
}

.service-area-section {
  background: #fffdf2;
  border: 1px solid rgba(10, 159, 56, 0.2);
  box-shadow: 0 16px 36px rgba(160, 91, 0, 0.08);
}

.service-area-section h2 {
  margin: 0 0 14px;
  font-size: clamp(1.8rem, 3vw, 2.55rem);
  line-height: 1.08;
  color: var(--ink);
}

.service-area-section p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.service-area-section .eyebrow {
  color: var(--green);
}

.safety-list,
.area-list {
  display: grid;
  gap: 12px;
}

.safety-list span,
.area-list span {
  min-height: 56px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  border-radius: 8px;
  color: #7c1d18;
  background: #fff4f2;
  border: 1px solid #ffd1cc;
  font-weight: 800;
}

.area-list span {
  color: #0f6b2d;
  background: #eaf8ed;
  border-color: #c8efcf;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  width: 58px;
  height: 58px;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 50%;
  color: #fff;
  background: #25d366;
  box-shadow: 0 14px 30px rgba(10, 159, 56, 0.26);
  font-weight: 900;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.floating-whatsapp:hover {
  transform: translateY(-2px);
  background: #20bd5a;
  box-shadow: 0 18px 36px rgba(10, 159, 56, 0.34);
}

.floating-whatsapp img {
  width: 34px;
  height: 34px;
}

.floating-whatsapp span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

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

.promise-grid article {
  min-height: 156px;
  padding: 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.72);
}

.promise-grid strong {
  display: block;
  margin-bottom: 10px;
  color: var(--red-dark);
}

.promise-grid span {
  color: #52616f;
  line-height: 1.55;
}

.about-section {
  padding: 84px 0;
  display: grid;
  grid-template-columns: 1.1fr 0.75fr;
  gap: 44px;
  align-items: center;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 26px;
}

.stats-row span,
.about-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.stats-row span {
  padding: 16px;
  color: var(--muted);
}

.stats-row strong {
  display: block;
  color: var(--red-dark);
  font-size: 1.5rem;
}

.about-card {
  padding: 32px;
  box-shadow: var(--shadow);
}

.about-card strong {
  color: var(--green);
  font-size: 1.2rem;
}

.about-card p {
  margin: 14px 0 24px;
}

.privacy-policy-section {
  padding: 0 0 84px;
}

.privacy-intro {
  max-width: 800px;
  margin-bottom: 26px;
}

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

.policy-grid article {
  min-height: 210px;
  padding: 22px;
  border: 1px solid rgba(10, 159, 56, 0.18);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(160, 91, 0, 0.07);
}

.policy-grid strong {
  display: block;
  margin-bottom: 10px;
  color: var(--green);
  font-size: 1.02rem;
}

.policy-grid p {
  margin-bottom: 0;
  font-size: 0.94rem;
}

.policy-contact {
  margin: 18px 0 0;
  padding: 18px 20px;
  border: 1px solid #c8efcf;
  border-radius: 8px;
  background: #f5fff7;
}

.delete-account-panel {
  margin-top: 18px;
  padding: 26px;
  border: 1px solid rgba(239, 27, 22, 0.18);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(160, 91, 0, 0.07);
}

.delete-account-panel .eyebrow {
  color: var(--red-dark);
}

.delete-account-panel h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: clamp(1.45rem, 2.6vw, 2rem);
  line-height: 1.1;
}

.delete-account-panel a {
  min-height: 44px;
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: 8px;
  color: #fff;
  background: var(--red);
  font-weight: 800;
}

.contact-section {
  padding: 52px;
  margin-bottom: 72px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 38px;
  align-items: start;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, #243145, #152234);
}

.contact-section .eyebrow,
.contact-section p {
  color: #c9f5d2;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 20px;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #40506a;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #dbe2ea;
  border-radius: 8px;
  padding: 13px 14px;
  outline: none;
}

.contact-form textarea {
  min-height: 112px;
  resize: vertical;
}

.site-footer {
  padding: 34px max(16px, calc((100% - 1180px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border-top: 1px solid var(--line);
  background: #fffdf5;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-links {
  display: flex;
  gap: 16px;
  color: #40506a;
  font-weight: 700;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.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;
}

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

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .nav-links {
    position: fixed;
    inset: 0;
    z-index: 50;
    width: 100vw;
    height: 100vh;
    min-height: 100dvh;
    flex: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 92px 26px 32px;
    background:
      radial-gradient(circle at 50% 14%, rgba(255, 216, 20, 0.38), transparent 34%),
      linear-gradient(180deg, rgba(255, 253, 242, 0.98), #ffffff);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transform: translateY(-18px) scale(0.98);
    transition:
      opacity 260ms ease,
      transform 260ms ease,
      visibility 0s linear 260ms;
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: translateY(0) scale(1);
    transition:
      opacity 260ms ease,
      transform 260ms ease,
      visibility 0s;
  }

  .nav-links a {
    width: min(100%, 360px);
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--ink);
    font-size: 1.05rem;
    box-shadow: 0 12px 24px rgba(160, 91, 0, 0.08);
    transform: translateY(10px);
    opacity: 0;
    transition: transform 240ms ease, opacity 220ms ease, background 180ms ease, color 180ms ease;
  }

  .nav-links.open a {
    transform: translateY(0);
    opacity: 1;
  }

  .nav-links.open a:nth-child(1) {
    transition-delay: 60ms;
  }

  .nav-links.open a:nth-child(2) {
    transition-delay: 90ms;
  }

  .nav-links.open a:nth-child(3) {
    transition-delay: 120ms;
  }

  .nav-links.open a:nth-child(4) {
    transition-delay: 150ms;
  }

  .nav-links.open a:nth-child(5) {
    transition-delay: 180ms;
  }

  .nav-links.open a:nth-child(6) {
    transition-delay: 210ms;
  }

  .nav-links.open a:nth-child(7) {
    transition-delay: 240ms;
  }

  .nav-links.open a:nth-child(8) {
    transition-delay: 270ms;
  }

  .nav-cta {
    display: none;
  }

  .hero,
  .about-section,
  .contact-section,
  .promise-band,
  .whatsapp-section,
  .payment-safety,
  .service-area-section {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 44px;
  }

  .hero-panel {
    min-height: 430px;
  }

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

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

  .search-band,
  .deal-toolbar,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
    grid-template-columns: 1fr;
  }

  .site-footer {
    display: grid;
  }
}

@media (max-width: 640px) {
  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: auto;
    gap: 30px;
  }

  h1 {
    font-size: 2.8rem;
  }

  .hero-panel {
    min-height: 380px;
    padding: 22px;
  }

  .delivery-badge,
  .hero-card-grid {
    left: 14px;
    right: 14px;
  }

  .delivery-badge {
    align-items: flex-start;
    flex-direction: column;
  }

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

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

  .app-strip a {
    width: 100%;
  }

  .category-grid,
  .product-grid,
  .promise-grid,
  .policy-grid,
  .stats-row {
    grid-template-columns: 1fr 1fr;
  }

  .promise-band,
  .contact-section,
  .whatsapp-section,
  .payment-safety,
  .service-area-section {
    padding: 26px;
  }

  .floating-whatsapp {
    right: 12px;
    bottom: 12px;
    width: 54px;
    height: 54px;
    min-height: 54px;
    padding: 0;
    border-radius: 50%;
  }

  .floating-whatsapp svg,
  .floating-whatsapp img {
    width: 28px;
    height: 28px;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}

@media (max-width: 440px) {
  .product-grid,
  .policy-grid,
  .stats-row {
    grid-template-columns: 1fr;
  }

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