:root {
  --green: #1e2e16;
  --green-soft: #2a3e20;
  --orange: #dc7003;
  --orange-dark: #b85d02;
  --yellow: #f9b02d;
  --cream: #f4dfbd;
  --cream-light: #fff3d8;
  --paper: #fff9ed;
  --ink: #1e2e16;
  --muted: #66705a;
  --line: rgba(30, 46, 22, 0.14);
  --white: #fffaf0;
  --whatsapp: #208a4b;
  --shadow: 0 24px 70px rgba(30, 46, 22, 0.18);
  --soft-shadow: 0 16px 36px rgba(220, 112, 3, 0.16);
  --radius-lg: 34px;
  --radius-md: 22px;
  --font-display: "Cooper Lt BT", "Cooper Black", "Bree Serif", Georgia, serif;
  --font-body: "Cairo", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 8%, rgba(249, 176, 45, 0.32), transparent 22rem),
    radial-gradient(circle at 92% 18%, rgba(220, 112, 3, 0.18), transparent 20rem),
    linear-gradient(180deg, var(--cream-light), var(--cream));
  font-family: var(--font-body);
  font-size: 16px;
}
body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.38;
  background-image:
    radial-gradient(rgba(30, 46, 22, 0.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.28), transparent 45%);
  background-size: 22px 22px, 100% 100%;
}
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { cursor: pointer; }
img { max-width: 100%; display: block; }
[hidden] { display: none !important; }
::selection { color: var(--cream-light); background: var(--orange); }

.sr-only,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link:focus {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 100;
  width: auto;
  height: auto;
  padding: 12px 16px;
  clip: auto;
  color: var(--cream-light);
  background: var(--green);
  border-radius: 999px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px clamp(18px, 5vw, 74px);
  background: rgba(244, 223, 189, 0.92);
  border-bottom: 1px solid rgba(30, 46, 22, 0.12);
  backdrop-filter: blur(14px);
}
.brand {
  display: flex;
  gap: 13px;
  align-items: center;
  min-width: 0;
  color: inherit;
  text-decoration: none;
}
.brand-mark {
  width: 58px;
  height: 58px;
  display: grid;
  flex: 0 0 58px;
  place-items: center;
  border: 1px solid rgba(30, 46, 22, 0.14);
  border-radius: 18px 18px 26px 26px;
  background: var(--paper);
  box-shadow: 0 10px 24px rgba(30, 46, 22, 0.12);
}
.brand-mark img {
  width: 42px;
  height: 50px;
  object-fit: contain;
}
.brand strong,
.brand small { display: block; }
.brand strong {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.3vw, 30px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.02em;
}
.brand small {
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
}
.cart-button {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 46px;
  padding: 9px 12px 9px 18px;
  border: 0;
  border-radius: 999px;
  color: var(--cream-light);
  background: var(--green);
  box-shadow: 0 12px 24px rgba(30, 46, 22, 0.18);
  font-weight: 900;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.cart-label {
  padding: 3px 8px;
  border-radius: 999px;
  color: var(--green);
  background: var(--yellow);
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.cart-button:hover {
  background: var(--green-soft);
  box-shadow: 0 16px 32px rgba(30, 46, 22, 0.24);
  transform: translateY(-1px);
}
.cart-count {
  min-width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  padding: 0 6px;
  border-radius: 50%;
  color: var(--green);
  background: var(--cream-light);
  font-size: 12px;
}

.hero {
  position: relative;
  min-height: 560px;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  overflow: hidden;
  color: var(--cream-light);
  background:
    radial-gradient(circle at 18% 28%, rgba(249, 176, 45, 0.18), transparent 24rem),
    linear-gradient(135deg, var(--green), #14230f);
}
.hero::before {
  position: absolute;
  top: -160px;
  left: -120px;
  width: 310px;
  height: 780px;
  border-radius: 48% 52% 58% 42%;
  content: "";
  background: var(--orange);
  transform: rotate(10deg);
  box-shadow: 36px 0 70px rgba(0, 0, 0, 0.16);
}
.hero-content {
  position: relative;
  z-index: 1;
  align-self: center;
  max-width: 720px;
  padding: 76px 5vw 88px 8vw;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero .eyebrow { color: var(--yellow); }
.eyebrow::before {
  width: 42px;
  height: 4px;
  border-radius: 999px;
  content: "";
  background: currentColor;
}
h1, h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 0.97;
  letter-spacing: -0.035em;
}
h1 {
  max-width: 710px;
  color: var(--cream-light);
  font-size: clamp(48px, 7vw, 88px);
  text-wrap: balance;
}
h2 {
  color: var(--green);
  font-size: clamp(38px, 5vw, 58px);
}
.hero-content > p:not(.eyebrow) {
  max-width: 560px;
  margin: 24px 0 30px;
  color: rgba(255, 243, 216, 0.86);
  font-size: clamp(17px, 1.4vw, 20px);
  font-weight: 600;
  line-height: 1.65;
}
.primary-link,
.secondary-button,
.whatsapp-button {
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.primary-link {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  padding: 15px 22px;
  border-radius: 999px;
  color: var(--green);
  background: var(--yellow);
  box-shadow: var(--soft-shadow);
  text-decoration: none;
  font-weight: 900;
}
.primary-link:hover {
  background: var(--cream-light);
  transform: translateY(-2px);
}
.hero-art {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
  padding: 48px clamp(24px, 5vw, 72px);
  background:
    linear-gradient(90deg, rgba(30, 46, 22, 0.04), rgba(30, 46, 22, 0)),
    var(--cream);
  border-top-left-radius: 54px;
  border-bottom-left-radius: 54px;
}
.hero-art::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 28px;
  height: 100%;
  content: "";
  background: var(--orange);
}
.hero-store-card {
  position: relative;
  z-index: 1;
  width: min(410px, 74vw);
  aspect-ratio: 4 / 5;
  padding: 7px;
  border: 1px solid rgba(30, 46, 22, 0.18);
  border-radius: 36px 36px 52px 36px;
  background: var(--paper);
  box-shadow: var(--shadow);
  transform: rotate(1.5deg);
}
.hero-store-card::after {
  position: absolute;
  right: -17px;
  bottom: 42px;
  width: 34px;
  height: 94px;
  border-radius: 999px;
  content: "";
  background: var(--yellow);
  box-shadow: 0 12px 24px rgba(30, 46, 22, 0.18);
}
.carousel-viewport {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 29px 29px 45px 29px;
  background: var(--green);
}
.carousel-slide {
  position: absolute;
  inset: 0;
  z-index: 0;
  margin: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.045);
  transition: opacity 0.8s ease, transform 5.8s ease;
}
.carousel-slide.is-active {
  z-index: 1;
  opacity: 1;
  transform: scale(1);
}
.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.brand-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.brand-orb-one {
  top: 70px;
  right: 16%;
  width: 84px;
  height: 84px;
  background: rgba(249, 176, 45, 0.68);
}
.brand-orb-two {
  left: 14%;
  bottom: 72px;
  width: 58px;
  height: 58px;
  background: rgba(220, 112, 3, 0.22);
}

.service-strip {
  display: flex;
  justify-content: center;
  gap: clamp(24px, 7vw, 96px);
  padding: 18px 5vw;
  color: var(--cream-light);
  background: var(--orange);
  box-shadow: 0 12px 26px rgba(220, 112, 3, 0.18);
}
.service-strip p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-size: 14px;
  font-weight: 800;
}
.service-strip span {
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 4px rgba(249, 176, 45, 0.2);
}

.menu-section {
  position: relative;
  max-width: 1260px;
  min-height: 650px;
  margin: 0 auto;
  padding: 78px 24px 106px;
}
.menu-section::before {
  position: absolute;
  top: 40px;
  right: 18px;
  width: 120px;
  height: 120px;
  border: 2px solid rgba(220, 112, 3, 0.26);
  border-radius: 50%;
  content: "";
}
.section-heading {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}
.search-box {
  width: min(380px, 100%);
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 12px 16px;
  border: 1px solid rgba(30, 46, 22, 0.16);
  border-radius: 999px;
  background: rgba(255, 249, 237, 0.9);
  box-shadow: 0 10px 24px rgba(30, 46, 22, 0.08);
}
.search-box > span:first-child {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 50%;
  color: var(--cream-light);
  background: var(--green);
  font-weight: 900;
}
.search-box input {
  width: 100%;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font-weight: 700;
}
.search-box input::placeholder { color: rgba(30, 46, 22, 0.5); }
.categories {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 10px;
  margin: 34px 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.category-button {
  flex: 0 0 auto;
  padding: 10px 17px;
  border: 1px solid rgba(30, 46, 22, 0.16);
  border-radius: 999px;
  color: var(--green);
  background: rgba(255, 249, 237, 0.62);
  font-weight: 900;
}
.category-button.active,
.category-button:hover {
  color: var(--cream-light);
  border-color: var(--green);
  background: var(--green);
}
.products-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.product-card {
  position: relative;
  display: flex;
  min-height: 205px;
  overflow: hidden;
  border: 1px solid rgba(30, 46, 22, 0.14);
  border-radius: 30px;
  background: rgba(255, 249, 237, 0.9);
  box-shadow: 0 12px 30px rgba(30, 46, 22, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.product-card::after {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  content: "";
  background: var(--yellow);
  box-shadow: 16px 12px 0 rgba(220, 112, 3, 0.48);
}
.product-card:hover {
  border-color: rgba(220, 112, 3, 0.36);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.product-visual {
  width: 38%;
  display: grid;
  flex: 0 0 38%;
  place-items: center;
  color: var(--cream-light);
  background:
    radial-gradient(circle at 70% 22%, var(--yellow) 0 18%, transparent 19%),
    linear-gradient(145deg, var(--green), #14230f);
  font-size: clamp(54px, 6vw, 82px);
}
.product-visual.has-image {
  background: var(--green);
}
.product-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
.product-info {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}
.product-category {
  margin: 0 0 8px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.product-info h3 {
  margin: 0;
  max-width: 92%;
  font: 700 24px/1 var(--font-display);
  letter-spacing: -0.02em;
}
.product-description {
  margin: 10px 0 16px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.42;
}
.product-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}
.product-price {
  color: var(--green);
  font-weight: 900;
}
.product-price small {
  color: var(--muted);
  font-weight: 700;
}
.add-button {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  color: var(--cream-light);
  background: var(--orange);
  box-shadow: 0 10px 20px rgba(220, 112, 3, 0.2);
  font-size: 25px;
  line-height: 1;
}
.add-button:hover {
  background: var(--green);
  transform: translateY(-1px);
}
.empty-products {
  padding: 70px 0;
  color: var(--muted);
  text-align: center;
  font-weight: 800;
}

.site-footer {
  color: rgba(255, 243, 216, 0.76);
  background:
    radial-gradient(circle at 8% 20%, rgba(249, 176, 45, 0.12), transparent 20rem),
    linear-gradient(135deg, #16240f, var(--green));
}
.footer-main {
  max-width: 1280px;
  display: grid;
  grid-template-columns: 1.15fr 0.95fr 1.2fr;
  gap: clamp(36px, 6vw, 86px);
  margin: 0 auto;
  padding: 68px 44px 54px;
}
.footer-brand img {
  width: 190px;
  max-height: 136px;
  object-fit: contain;
  object-position: left center;
  filter: brightness(0) invert(94%) sepia(17%) saturate(485%);
}
.footer-brand > p {
  max-width: 290px;
  margin: 18px 0 24px;
  color: rgba(255, 243, 216, 0.75);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
}
.footer-menu-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}
.footer-menu-link:hover { color: var(--cream-light); }
.footer-title {
  margin: 0 0 24px;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.footer-detail {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 13px;
  align-items: start;
  padding: 17px 0;
  border-top: 1px solid rgba(255, 243, 216, 0.12);
}
.footer-detail:last-child { border-bottom: 1px solid rgba(255, 243, 216, 0.12); }
.footer-detail-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--green);
  background: var(--yellow);
  font-size: 18px;
  font-weight: 900;
}
.footer-detail-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}
.footer-detail strong {
  display: block;
  color: var(--cream-light);
  font-size: 14px;
  font-weight: 900;
}
.footer-detail p {
  margin: 4px 0 0;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
}
.footer-contacts {
  display: grid;
  gap: 10px;
}
.footer-contact {
  min-height: 66px;
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 13px;
  align-items: center;
  padding: 11px 14px 11px 11px;
  border: 1px solid rgba(255, 243, 216, 0.13);
  border-radius: 18px;
  color: var(--cream-light);
  background: rgba(255, 249, 237, 0.055);
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.footer-contact:not(.is-placeholder):hover {
  border-color: rgba(249, 176, 45, 0.5);
  background: rgba(249, 176, 45, 0.1);
  transform: translateX(3px);
}
.footer-contact.is-placeholder {
  cursor: default;
}
.footer-contact-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--green);
  background: var(--cream);
}
.footer-contact-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}
.footer-contact small,
.footer-contact strong { display: block; }
.footer-contact small {
  color: var(--yellow);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.footer-contact strong {
  margin-top: 2px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
}
.footer-contact-arrow {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  color: var(--yellow);
}
.footer-contact-arrow svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}
.footer-location {
  width: calc(100% - 88px);
  max-width: 1192px;
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(440px, 1.35fr);
  margin: 0 auto 52px;
  overflow: hidden;
  border: 1px solid rgba(255, 243, 216, 0.14);
  border-radius: 28px;
  background: rgba(255, 249, 237, 0.06);
  box-shadow: 0 24px 60px rgba(9, 18, 6, 0.24);
}
.footer-location-copy {
  position: relative;
  padding: clamp(30px, 4vw, 48px);
}
.footer-location-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  border-radius: 15px;
  color: var(--green);
  background: var(--yellow);
}
.footer-location-icon svg,
.footer-location-link svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}
.footer-location-icon svg {
  width: 23px;
  height: 23px;
}
.footer-location-copy .footer-title { margin-bottom: 12px; }
.footer-location-copy h2 {
  max-width: 420px;
  margin: 0;
  color: var(--cream-light);
  font-size: clamp(29px, 3.2vw, 43px);
  line-height: 1.05;
}
.footer-location-copy > p:not(.footer-title) {
  max-width: 430px;
  margin: 17px 0 26px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.65;
}
.footer-location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-location-link {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 15px;
  border: 1px solid rgba(255, 243, 216, 0.2);
  border-radius: 999px;
  color: var(--cream-light);
  background: rgba(255, 249, 237, 0.06);
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.footer-location-link svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}
.footer-location-link.is-primary {
  border-color: var(--yellow);
  color: var(--green);
  background: var(--yellow);
}
.footer-location-link:hover {
  border-color: var(--yellow);
  color: var(--green);
  background: var(--cream-light);
  transform: translateY(-2px);
}
.footer-map-frame {
  min-height: 340px;
  padding: 8px;
  background: var(--cream);
}
.footer-map-frame iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  border-radius: 21px;
  filter: saturate(0.82) contrast(1.03);
}
.footer-bottom {
  max-width: 1280px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 0 auto;
  padding: 22px 44px 26px;
  border-top: 1px solid rgba(255, 243, 216, 0.12);
}
.footer-bottom p {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.backdrop {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(20, 35, 15, 0.62);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.backdrop.visible { opacity: 1; }
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 50;
  width: min(510px, 100%);
  height: 100dvh;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(circle at 88% 8%, rgba(249, 176, 45, 0.25), transparent 12rem),
    var(--paper);
  box-shadow: var(--shadow);
  transform: translateX(102%);
  transition: transform 0.3s ease;
}
.cart-drawer.open { transform: translateX(0); }
.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 24px 20px;
  border-bottom: 1px solid var(--line);
}
.cart-header h2 { font-size: 40px; }
.icon-button {
  width: 44px;
  height: 44px;
  display: grid;
  flex: 0 0 44px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(30, 46, 22, 0.16);
  border-radius: 50%;
  color: var(--green);
  background: var(--cream-light);
  line-height: 0;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.icon-button svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 2.2;
}
.icon-button:hover {
  border-color: var(--green);
  color: var(--cream-light);
  background: var(--green);
  transform: rotate(5deg);
}
.icon-button:active {
  transform: rotate(0) scale(0.94);
}
.cart-content {
  padding: 0 24px 30px;
  overflow-y: auto;
}
.cart-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 19px 0;
  border-bottom: 1px solid var(--line);
}
.cart-item h3 {
  margin: 0 0 4px;
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1;
}
.cart-item-price {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}
.quantity-control {
  display: flex;
  align-items: center;
  gap: 12px;
}
.quantity-control button {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(30, 46, 22, 0.16);
  border-radius: 50%;
  color: var(--green);
  background: var(--cream-light);
  font-size: 18px;
  font-weight: 900;
}
.remove-item {
  grid-column: 1 / -1;
  justify-self: start;
  padding: 0;
  border: 0;
  color: var(--orange);
  background: transparent;
  font-size: 12px;
  font-weight: 900;
  text-decoration: underline;
}
.empty-cart {
  padding: 80px 10px;
  text-align: center;
}
.empty-cart > span { font-size: 64px; }
.empty-cart h3 {
  margin: 14px 0 8px;
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 1;
}
.empty-cart p {
  margin: 0 0 22px;
  color: var(--muted);
  font-weight: 700;
}
.secondary-button {
  padding: 12px 18px;
  border: 1px solid var(--green);
  border-radius: 999px;
  color: var(--green);
  background: transparent;
  font-weight: 900;
}
.secondary-button:hover {
  color: var(--cream-light);
  background: var(--green);
}
.checkout-form { padding-top: 20px; }
.order-summary {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 7px 20px;
  padding: 18px;
  border: 1px solid rgba(30, 46, 22, 0.1);
  border-radius: 20px;
  background: var(--cream);
  font-size: 14px;
  font-weight: 800;
}
.order-summary strong { text-align: right; }
.total-label,
.total-value {
  padding-top: 10px;
  border-top: 1px solid rgba(30, 46, 22, 0.16);
  font-size: 18px;
}
.checkout-form > h3 {
  margin: 26px 0 11px;
  font-size: 15px;
  font-weight: 900;
}
.choice-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.choice { position: relative; }
.choice input {
  position: absolute;
  opacity: 0;
}
.choice span {
  display: flex;
  min-height: 72px;
  flex-direction: column;
  justify-content: center;
  padding: 11px 14px;
  border: 1px solid rgba(30, 46, 22, 0.14);
  border-radius: 18px;
  background: var(--white);
}
.choice input:checked + span {
  border: 2px solid var(--orange);
  background: #fff1d1;
  box-shadow: 0 10px 20px rgba(220, 112, 3, 0.12);
}
.choice small {
  margin-top: 3px;
  color: var(--muted);
  font-weight: 700;
}
.field {
  display: block;
  margin-top: 14px;
}
.field > span {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 900;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid rgba(30, 46, 22, 0.16);
  border-radius: 15px;
  outline: none;
  color: var(--ink);
  background: var(--white);
  resize: vertical;
}
.field input:focus,
.field select:focus,
.field textarea:focus,
.category-button:focus-visible,
.add-button:focus-visible,
.cart-button:focus-visible,
.primary-link:focus-visible,
.secondary-button:focus-visible,
.whatsapp-button:focus-visible,
.icon-button:focus-visible,
.quantity-control button:focus-visible,
.remove-item:focus-visible,
.footer-menu-link:focus-visible,
.footer-contact:focus-visible,
.footer-location-link:focus-visible {
  outline: 3px solid rgba(249, 176, 45, 0.62);
  outline-offset: 3px;
}
.whatsapp-button {
  width: 100%;
  margin-top: 22px;
  padding: 15px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: var(--whatsapp);
  box-shadow: 0 14px 28px rgba(32, 138, 75, 0.22);
  font-weight: 900;
}
.whatsapp-button:hover {
  background: #176c3a;
  transform: translateY(-1px);
}
.checkout-note {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-align: center;
}
.toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 70;
  padding: 13px 19px;
  border-radius: 999px;
  color: var(--cream-light);
  background: var(--green);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(15px);
  pointer-events: none;
  transition: 0.25s ease;
  font-weight: 900;
}
.toast.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-content {
    padding: 68px 24px 48px;
  }
  .hero::before {
    width: 230px;
    height: 560px;
    opacity: 0.7;
  }
  .hero-art {
    min-height: 420px;
    border-top-left-radius: 42px;
    border-bottom-left-radius: 0;
  }
  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand { grid-column: 1 / -1; }
  .footer-location {
    grid-template-columns: 1fr;
  }
  .footer-map-frame {
    height: 320px;
    min-height: 0;
  }
}

@media (max-width: 640px) {
  body { font-size: 15px; }
  .topbar {
    min-height: 74px;
    padding: 10px 15px;
  }
  .brand { gap: 9px; }
  .brand small { display: none; }
  .brand strong { font-size: 21px; }
  .brand-mark {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
    border-radius: 15px 15px 21px 21px;
  }
  .brand-mark img {
    width: 34px;
    height: 42px;
  }
  .cart-button {
    gap: 6px;
    padding: 8px 9px 8px 11px;
  }
  .cart-label {
    padding: 0;
    color: var(--cream-light);
    background: transparent;
    font-size: 12px;
  }
  .cart-count { font-size: 12px; }
  .hero { min-height: auto; }
  .hero-content { padding: 66px 20px 42px; }
  h1 { font-size: clamp(43px, 13vw, 62px); }
  .hero-content > p:not(.eyebrow) { font-size: 16px; }
  .hero-art {
    min-height: 360px;
    padding: 30px 18px 42px;
  }
  .hero-store-card {
    width: min(320px, 88vw);
    border-radius: 28px;
  }
  .carousel-viewport { border-radius: 21px; }
  .service-strip {
    justify-content: flex-start;
    gap: 24px;
    overflow-x: auto;
  }
  .service-strip p { flex: 0 0 auto; }
  .menu-section {
    padding: 58px 15px 76px;
  }
  .menu-section::before { display: none; }
  .section-heading {
    align-items: stretch;
    flex-direction: column;
  }
  .search-box { width: 100%; }
  .categories { margin: 26px 0; }
  .products-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .product-card { min-height: 168px; }
  .product-info { padding: 17px; }
  .product-info h3 { font-size: 22px; }
  .footer-main {
    grid-template-columns: 1fr;
    gap: 42px;
    padding: 52px 24px 38px;
  }
  .footer-brand img { width: 170px; }
  .footer-location {
    width: auto;
    margin: 0 24px 38px;
    border-radius: 24px;
  }
  .footer-location-copy { padding: 30px 22px; }
  .footer-location-copy h2 { font-size: 32px; }
  .footer-location-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .footer-location-link { justify-content: center; }
  .footer-map-frame {
    height: 270px;
    padding: 6px;
  }
  .footer-map-frame iframe { border-radius: 18px; }
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    padding: 22px 24px 28px;
  }
  .cart-content { padding-inline: 17px; }
  .cart-header { padding-inline: 17px; }
  .choice-row { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
  }
  .carousel-slide { transform: none !important; }
}
