@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@400;600;700&family=Poppins:wght@300;400;500;600;700;800&display=swap");

:root {
  --primary: #e31837;
  --primary-dark: #b1122a;
  --accent: #f6b13a;
  --ink: #1a1a1a;
  --muted: #6c6c6c;
  --bg: #f7f4f0;
  --card: #ffffff;
  --border: #eee6dd;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Poppins", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top, #ffffff 0%, #f7f2ec 40%, #f2ede6 100%);
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

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

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

.container {
  width: min(1180px, 92vw);
  margin: 0 auto;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.08s;
}

.reveal-delay-2 {
  transition-delay: 0.16s;
}

.reveal-delay-3 {
  transition-delay: 0.24s;
}

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

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 12px;
  padding: 10px 9px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--ink);
}

.menu-toggle span + span {
  margin-top: 6px;
}

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

.brand small {
  color: var(--muted);
}

.brand-badge {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.2);
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
  overflow: hidden;
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.brand-title {
  font-family: "Oswald", sans-serif;
  font-size: 30px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: var(--ink);
}

.nav a {
  padding: 8px 12px;
  border-radius: 20px;
}

.nav a.active,
.nav a:hover {
  background: #f5f5f5;
  color: var(--ink);
}

.contact-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f5f5f5;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 16px;
  font-weight: 600;
  color: var(--ink);
}

.hero {
  position: relative;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(120deg, rgba(255, 245, 245, 0.92) 0%, rgba(255, 255, 255, 0.92) 55%, rgba(254, 243, 232, 0.92) 100%),
    url("../assets/hero-bg-placeholder.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.45;
  filter: saturate(1.1);
  z-index: 0;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -40% -10% auto -10%;
  height: 120%;
  background: radial-gradient(circle at 30% 30%, rgba(227, 24, 55, 0.18) 0%, rgba(227, 24, 55, 0) 55%),
    radial-gradient(circle at 70% 20%, rgba(246, 177, 58, 0.22) 0%, rgba(246, 177, 58, 0) 50%),
    radial-gradient(circle at 20% 80%, rgba(227, 24, 55, 0.14) 0%, rgba(227, 24, 55, 0) 60%);
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(0, 0, 0, 0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.4;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding: 40px 0 56px;
  align-items: center;
}

.hero-content {
  background: #fff;
  border-radius: 30px;
  padding: 38px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 1;
  animation: heroFadeUp 0.8s ease both;
}

.hero-content-poster {
  padding: 38px;
  min-height: auto;
  background: #fff;
}

.hero-content-poster.is-switching {
  opacity: 1;
}

.hero-poster-hotspot {
  position: absolute;
  left: 50%;
  bottom: 7%;
  transform: translateX(-50%);
  width: min(330px, 58%);
  height: clamp(44px, 7%, 64px);
  border-radius: 999px;
  z-index: 5;
}

.hero-poster-hotspot:focus-visible {
  outline: 3px solid rgba(227, 24, 55, 0.45);
  outline-offset: 4px;
}

.hero-content-poster .hero-poster-hotspot,
.hero-content-poster .hero-poster-deco {
  display: none;
}

.hero-poster-deco {
  position: absolute;
  pointer-events: none;
  user-select: none;
  z-index: 3;
  animation: posterFloat 6.4s ease-in-out infinite;
  mix-blend-mode: multiply;
  background: transparent !important;
}

.hero-poster-deco--leaf {
  width: clamp(54px, 7vw, 96px);
  left: 4.5%;
  top: 53%;
  animation-delay: -1.2s;
}

.hero-poster-deco--chilli {
  width: clamp(68px, 10vw, 128px);
  right: 6%;
  top: 28%;
  transform: rotate(8deg);
  animation-name: posterSwing;
  animation-duration: 7.4s;
}

@keyframes posterFloat {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-9px);
  }
}

@keyframes posterSwing {
  0%,
  100% {
    transform: rotate(8deg) translateY(0px);
  }
  50% {
    transform: rotate(-4deg) translateY(-8px);
  }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
}

.hero-content h1 {
  font-family: "Oswald", sans-serif;
  font-size: 56px;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-content p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.hero-feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-feature-list span {
  background: #fff1e5;
  border: 1px solid #f3d6c2;
  border-radius: 999px;
  padding: 6px 12px;
  font-weight: 600;
  font-size: 12px;
}

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

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-pill {
  background: #f8f1ea;
  border: 1px solid #f0e1d2;
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 600;
  color: #8b3a1c;
  font-size: 13px;
}

.hero-media {
  position: relative;
  display: grid;
  gap: 18px;
  z-index: 1;
  animation: heroFadeUp 0.95s ease both;
}

.hero-image-wrap {
  background: radial-gradient(circle at 30% 30%, #ffe2d0 0%, #f8b56e 45%, #e11b3a 100%);
  border-radius: 32px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.hero-image-wrap img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border-radius: 24px;
  background: #f6eee2;
  animation: heroScale 1s ease both;
}

.hero-thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  position: relative;
  z-index: 2;
  -webkit-overflow-scrolling: touch;
}

.hero-thumb-btn {
  padding: 0;
  margin: 0;
  border: 0;
  background: transparent;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.hero-thumb-btn img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border-radius: 16px;
  border: 2px solid #fff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  background: #f7efe6;
  padding: 4px;
}

.hero-thumb-btn.active img {
  border-color: var(--primary);
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroScale {
  from {
    opacity: 0.6;
    transform: scale(0.98);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.p2g-categories {
  padding-top: 24px;
}

.p2g-cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.p2g-cat-card {
  position: relative;
  display: block;
  border-radius: 26px;
  overflow: hidden;
  min-height: 220px;
  box-shadow: var(--shadow);
}

.p2g-cat-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.1);
}

.p2g-cat-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.55) 100%);
}

.p2g-cat-info {
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 1;
  color: #fff;
}

.p2g-cat-info h3 {
  margin: 0 0 6px;
  font-family: "Oswald", sans-serif;
  font-size: 28px;
  text-transform: uppercase;
}

.p2g-cat-info span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  font-size: 12px;
  letter-spacing: 1px;
}

.p2g-title {
  align-items: flex-end;
  gap: 16px;
}

.p2g-eyebrow {
  display: inline-flex;
  align-items: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
}

.stats-grid-lg {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.stats-grid-lg .stat-card {
  font-size: 30px;
  padding: 24px;
}

.stats-grid-lg .stat-card span {
  font-size: 14px;
}

.p2g-products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 18px;
}

.product-detail-hero h1 {
  margin: 8px 0 10px;
}

.product-detail-main {
  display: grid;
  grid-template-columns: minmax(0, 460px);
  justify-content: center;
}

.product-detail-card {
  border: 2px solid #f2ddd1;
}

.p2g-product-card {
  background: #fff;
  border-radius: 22px;
  padding: 16px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.p2g-product-card img {
  width: 88%;
  max-width: 250px;
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: contain;
  border-radius: 16px;
  background: transparent;
  padding: 0;
  margin: 0 auto;
}

.p2g-product-card .title {
  font-weight: 700;
  overflow-wrap: anywhere;
  min-height: 44px;
}

.p2g-product-card .desc {
  color: var(--muted);
  font-size: 14px;
  min-height: 56px;
  overflow-wrap: anywhere;
}

.p2g-product-card .cta {
  margin-top: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 10px;
}

.home-size-wrap {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.home-size-wrap .modal-select {
  padding: 7px 10px;
  width: 100%;
  min-width: 0;
}

.p2g-build {
  background: #fff;
}

.p2g-build-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: center;
}

.p2g-build-grid h2 {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  margin: 0 0 10px;
  font-size: 38px;
}

.p2g-build-grid p {
  color: var(--muted);
}

.p2g-ingredients {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.p2g-ingredients span {
  background: #fff1e5;
  border: 1px solid #f3d6c2;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13px;
}

.p2g-build-visual img {
  width: 100%;
  border-radius: 28px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.p2g-franchise {
  background: #121212;
  color: #fff;
}

.p2g-franchise-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.4fr;
  gap: 24px;
  align-items: center;
}

.p2g-franchise h2 {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  margin: 10px 0;
  font-size: 34px;
}

.p2g-franchise p {
  color: #d8d8d8;
  margin: 0;
}

.p2g-campaigns .section-title p {
  margin: 8px 0 0;
  color: var(--muted);
}

.p2g-campaign-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
}

.p2g-campaign-card {
  background: #fff;
  border-radius: 22px;
  padding: 16px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.p2g-campaign-card img {
  width: 88%;
  max-width: 250px;
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: contain;
  border-radius: 16px;
  background: transparent;
  padding: 0;
  margin: 0 auto;
}

.p2g-testimonial-grid .testimonial {
  border-radius: 22px;
}

.p2g-blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.p2g-blog-card {
  background: #fff;
  border-radius: 22px;
  padding: 18px;
  border: 1px solid var(--border);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.p2g-blog-card img {
  width: 100%;
  aspect-ratio: 39 / 34;
  height: auto;
  object-fit: cover;
  object-position: center;
  border-radius: 16px;
  margin-bottom: 12px;
  background: #f6efe7;
}

.p2g-blog-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.p2g-blog-card p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 14px;
}

.p2g-blog-card a {
  color: var(--primary);
  font-weight: 600;
}

.p2g-order-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: #ff2a2a url("../assets/order-banner-desktop.png") center / cover no-repeat;
  aspect-ratio: 1600 / 899;
  min-height: 360px;
}

.p2g-order-hotspot {
  position: absolute;
  left: 50%;
  bottom: 13%;
  transform: translateX(-50%);
  width: min(420px, 41%);
  height: clamp(44px, 7.2%, 68px);
  border-radius: 999px;
  background: transparent;
  border: none;
  box-shadow: none;
  color: transparent;
  text-indent: -9999px;
  overflow: hidden;
}

.p2g-order-hotspot:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.92);
  outline-offset: 3px;
}

.modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 999;
}

.modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.modal-panel {
  position: relative;
  width: min(760px, 92vw);
  max-height: 86vh;
  overflow: auto;
  background: #fff;
  border-radius: 26px;
  padding: 24px;
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.25);
  z-index: 1;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  border: none;
  background: #f2f2f2;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
}

.modal-hero {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 16px;
  align-items: center;
  margin: 6px 0 12px;
}

.modal-thumb {
  width: 140px;
  height: 140px;
  border-radius: 16px;
  overflow: hidden;
  background: #f6efe7;
  display: grid;
  place-items: center;
}

.modal-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-hero-info h3 {
  margin: 0 0 8px;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.modal-hero-info p {
  margin: 0 0 8px;
  color: var(--muted);
  overflow-wrap: anywhere;
}

.modal-price {
  font-weight: 700;
  color: var(--primary);
}

.modal-row {
  margin-top: 14px;
}

.modal-row-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
  margin-bottom: 8px;
}

.badge-required {
  background: #fff1e5;
  color: #b84b1f;
  border-radius: 999px;
  padding: 2px 8px;
  font-size: 11px;
  font-weight: 700;
}

.modal-select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 12px;
  font-family: inherit;
}

.modal-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.modal-chips span {
  background: #f5f5f5;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 600;
}

.modal-side-list {
  display: grid;
  gap: 10px;
}

.modal-side-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border: 1px solid var(--border);
  border-radius: 12px;
  font-weight: 600;
  overflow-wrap: anywhere;
}

.modal-side-item input {
  width: 16px;
  height: 16px;
}

.modal-error {
  margin-top: 12px;
  color: var(--primary);
  font-weight: 600;
  min-height: 20px;
}

.modal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
}

.modal-qty select {
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid var(--border);
}

.modal-total {
  display: grid;
  gap: 4px;
  font-weight: 700;
}

.modal-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.modal-total-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  font-weight: 700;
}

.cart-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.cart-meta {
  color: var(--muted);
  font-size: 12px;
  margin-top: 4px;
}

.cart-price {
  font-weight: 700;
  color: var(--primary);
}

.cart-fab {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  z-index: 998;
}

.cart-fab span {
  background: var(--primary);
  color: #fff;
  border-radius: 999px;
  padding: 2px 8px;
  margin-left: 6px;
}

.slider-dots {
  display: flex;
  gap: 8px;
  margin-top: 18px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #f0c7c7;
}

.slider-dot.active {
  width: 28px;
  background: var(--primary);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  box-shadow: 0 12px 28px rgba(227, 24, 55, 0.35);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.25) 40%, transparent 80%);
  transform: translateX(-120%);
  transition: transform 0.6s ease;
}

.btn:hover::after {
  transform: translateX(120%);
}

.btn-outline {
  background: #fff;
  color: var(--primary);
  border: 2px solid var(--primary);
  box-shadow: none;
}

.btn-inspect {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 8px 12px;
  border-radius: 6px;
  border: 2px solid #e31837;
  background: #fff;
  color: #e31837;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.2px;
  line-height: 1;
  white-space: nowrap;
  text-align: center;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: none;
}

.home-add-btn.btn-inspect {
  margin-left: 0;
  justify-self: end;
}

.btn-inspect:hover {
  background: #e31837;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(227, 24, 55, 0.25);
}

.btn-inspect:active {
  transform: translateY(0);
}

.hero-visual {
  position: relative;
  background: #fff;
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.hero-visual .plate {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 24px;
  background: radial-gradient(circle at 30% 30%, #ffd9b3 0%, #ffb45a 40%, #f26b1d 70%, #bf4a10 100%);
  position: relative;
  overflow: hidden;
}

.hero-visual .plate::after {
  content: "";
  position: absolute;
  inset: 16% 16% 16% 16%;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, #ffe3c1 0%, #f8b971 60%, #f26b1d 100%);
  opacity: 0.7;
}

.hero-badges {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
  margin-top: 6px;
}

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

.category-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px;
  display: grid;
  gap: 10px;
  font-weight: 700;
  transition: transform 0.2s ease, border 0.2s ease;
}

.category-card:hover {
  transform: translateY(-3px);
  border-color: #f3d6c2;
}

.category-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: #fff1e5;
  display: grid;
  place-items: center;
  font-size: 22px;
}

.category-card span {
  color: var(--muted);
  font-weight: 600;
  font-size: 13px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.stat-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  text-align: center;
  font-weight: 700;
  font-size: 22px;
}

.stat-card span {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.testimonial {
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  border: 1px solid var(--border);
}

.testimonial .name {
  font-weight: 800;
  margin-top: 12px;
}

.testimonial .stars {
  color: var(--primary);
  font-weight: 700;
}

.cta-strip {
  background: linear-gradient(120deg, var(--primary) 0%, #ff4c63 100%);
  color: #fff;
  border-radius: 26px;
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cta-strip h3 {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-size: 34px;
  text-transform: uppercase;
}

.cta-strip p {
  margin: 0;
  opacity: 0.9;
}

.badge-card {
  background: #fff;
  border-radius: 18px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 600;
}

.badge-card span {
  color: var(--muted);
  font-weight: 600;
  font-size: 13px;
}

.section {
  padding: 36px 0;
  scroll-margin-top: 96px;
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.section-title h2 {
  font-family: "Oswald", sans-serif;
  font-size: 32px;
  margin: 0;
  text-transform: uppercase;
}

.coupon-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.coupon {
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--border);
  padding: 16px;
  text-align: center;
  font-weight: 700;
  position: relative;
}

.coupon::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 12px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary);
}

.coupon small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 600;
}

.menu-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 24px;
}

.categories {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 18px;
  position: sticky;
  top: 18px;
  height: fit-content;
}

.categories h3 {
  margin: 0 0 12px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 24px;
}

.category-link {
  display: block;
  padding: 10px 12px;
  border-radius: 14px;
  color: var(--muted);
  font-weight: 700;
}

.category-link.active,
.category-link:hover {
  background: #fff5ec;
  color: #a24b10;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.card {
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--border);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.2s ease, border 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-3px);
  border-color: #f3d6c2;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.08);
}

.p2g-product-card,
.p2g-campaign-card,
.p2g-cat-card,
.testimonial,
.stat-card,
.contact-form,
.map-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.p2g-product-card:hover,
.p2g-campaign-card:hover,
.p2g-cat-card:hover,
.testimonial:hover,
.stat-card:hover,
.contact-form:hover,
.map-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
}

.card-media {
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: #f8f5f1;
  padding: 8px;
}

.card-media img {
  width: 88%;
  max-width: 240px;
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: contain;
  border-radius: 14px;
  background: transparent;
  margin: 0 auto;
}

.p2g-blog-grid .p2g-blog-card img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
}

.card .title {
  font-weight: 800;
  overflow-wrap: anywhere;
}

.card .desc {
  color: var(--muted);
  font-size: 14px;
  min-height: 42px;
  overflow-wrap: anywhere;
}

.price-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--primary);
}

.old-price {
  color: #b1b1b1;
  text-decoration: line-through;
  font-weight: 700;
  font-size: 13px;
}

.card .cta {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.card .cta button {
  border: 2px solid var(--primary);
  background: #fff;
  color: var(--primary);
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 700;
}

.card .cta .btn-outline {
  border: 2px solid var(--primary);
  background: #fff;
  color: var(--primary);
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.highlight {
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer {
  background: #101010;
  color: #fff;
  padding: 28px 0;
  margin-top: 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
}

.footer h4 {
  margin: 0 0 10px;
}

.footer-menu {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 6px;
}

.footer-menu a {
  color: #fff;
  opacity: 0.9;
}

.footer-menu a:hover {
  opacity: 1;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff1e5;
  color: #8b3a1c;
  border-radius: 999px;
  padding: 6px 12px;
  font-weight: 600;
  font-size: 13px;
}

.page-hero {
  padding: 36px 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
}

.contact-hero {
  padding: 40px 0;
  background: linear-gradient(120deg, #fff5f5 0%, #fff 55%, #fef3e8 100%);
  border-bottom: 1px solid var(--border);
}

.menu-hero {
  padding: 40px 0;
  background: linear-gradient(120deg, #fff5f5 0%, #fff 55%, #fef3e8 100%);
  border-bottom: 1px solid var(--border);
}

.menu-hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: center;
}

.menu-hero-inner h1 {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  font-size: 42px;
  margin: 8px 0 10px;
}

.menu-hero-inner p {
  color: var(--muted);
}

.menu-hero-card {
  background: #fff;
  border-radius: 28px;
  padding: 16px;
  box-shadow: var(--shadow);
}

.menu-hero-card img {
  width: 100%;
  border-radius: 22px;
  object-fit: cover;
}

.menu-quick {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.menu-quick-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px;
  font-weight: 600;
}

.menu-quick-card span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  margin-top: 6px;
}

.menu-chips-section {
  padding-top: 18px;
}

.menu-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.menu-chip {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 600;
  color: var(--ink);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.menu-chip:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.menu-layout-alt .categories {
  border-radius: 20px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}

.campaign-hero {
  padding: 40px 0;
  background: linear-gradient(120deg, #fff5f5 0%, #fff 55%, #fef3e8 100%);
  border-bottom: 1px solid var(--border);
}

.campaign-hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: center;
}

.campaign-hero-inner h1 {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  font-size: 42px;
  margin: 8px 0 10px;
}

.campaign-hero-inner p {
  color: var(--muted);
}

.campaign-hero-card {
  background: #fff;
  border-radius: 28px;
  padding: 16px;
  box-shadow: var(--shadow);
}

.campaign-hero-card img {
  width: 100%;
  border-radius: 22px;
  object-fit: cover;
}

.campaign-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.campaign-chip {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 600;
}

.campaign-feature-card {
  background: linear-gradient(120deg, #e31837 0%, #ff4c63 100%);
  color: #fff;
  border-radius: 28px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: var(--shadow);
}

.campaign-feature-card h2 {
  margin: 8px 0;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
}

.campaign-feature-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
}

.campaign-grid {
  gap: 20px;
}

.contact-hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: center;
}

.contact-hero-inner h1 {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  font-size: 42px;
  margin: 8px 0 10px;
}

.contact-hero-inner p {
  color: var(--muted);
}

.contact-hero-card {
  background: #fff;
  border-radius: 28px;
  padding: 16px;
  box-shadow: var(--shadow);
}

.contact-hero-card img {
  width: 100%;
  border-radius: 22px;
  object-fit: cover;
}

.contact-quick {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.contact-quick-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px;
  font-weight: 600;
}

.contact-quick-item span {
  display: block;
  color: var(--muted);
  font-weight: 500;
  font-size: 13px;
  margin-top: 6px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: start;
}

.contact-cards {
  display: grid;
  gap: 14px;
}

.contact-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 20px;
  display: grid;
  gap: 12px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.contact-form h3 {
  margin: 0;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
}

.contact-form label {
  font-weight: 600;
  display: grid;
  gap: 8px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 12px;
  font-family: inherit;
}

.map-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.map-preview {
  min-height: 260px;
  border-radius: 20px;
  background: #f7f2ec;
  overflow: hidden;
}

.map-preview iframe {
  width: 100%;
  height: 100%;
  min-height: 260px;
  border: 0;
  display: block;
}

.map-info h3 {
  margin: 0 0 10px;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
}

.map-info p {
  margin: 6px 0;
  color: var(--muted);
}

.contact-note-wrap {
  padding-top: 0;
}

.contact-note {
  margin: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 18px;
  color: #2b2b2b;
  font-weight: 600;
  line-height: 1.55;
}

.page-hero h1 {
  font-family: "Oswald", sans-serif;
  font-size: 42px;
  margin: 0 0 8px;
  text-transform: uppercase;
}

.notice {
  background: #fff1e5;
  border: 1px solid #f3d6c2;
  padding: 12px 16px;
  border-radius: 14px;
  color: #8b3a1c;
  font-weight: 600;
}

.admin-wrap {
  min-height: 100vh;
  background: #f5f5f5;
}

.admin-card {
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.admin-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.admin-full {
  grid-column: 1 / -1;
}

.admin-grid label {
  font-weight: 700;
  display: block;
  margin-bottom: 6px;
}

.admin-grid input,
.admin-grid textarea,
.admin-grid select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: inherit;
}

.admin-help {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
}

.admin-upload-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}

.admin-upload-preview {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid var(--border);
  background: #f6efe7;
  display: none;
}

.admin-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.admin-list {
  display: grid;
  gap: 12px;
}

.admin-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.admin-item-head {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.admin-item-thumb {
  width: 62px;
  height: 62px;
  border-radius: 10px;
  object-fit: cover;
  background: #f6efe7;
  border: 1px solid var(--border);
  flex: 0 0 auto;
}

.admin-item small {
  color: var(--muted);
}

@media (max-width: 960px) {
  .container {
    width: min(1180px, 94vw);
  }

  .topbar-inner {
    position: relative;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 0;
  }

  .menu-toggle {
    display: inline-block;
    order: 2;
    flex: 0 0 auto;
    margin-left: auto;
  }

  .brand {
    width: auto;
    order: 1;
    min-width: 0;
    flex: 1 1 auto;
  }

  .brand-title {
    font-size: 24px;
    line-height: 1.1;
  }

  .topbar-inner.js-nav-ready .nav {
    display: none;
  }

  .topbar-inner.js-nav-ready.nav-open .nav {
    display: flex;
  }

  .nav {
    width: 100%;
    order: 4;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 8px;
  }

  .nav a {
    padding: 8px 10px;
    font-size: 13px;
  }

  .contact-pill {
    width: 100%;
    order: 3;
    border-radius: 14px;
    justify-content: flex-start;
    overflow-wrap: anywhere;
  }

  .hero-content {
    padding: 24px 18px;
  }

  .hero-content-poster {
    padding: 0;
    min-height: clamp(600px, 160vw, 840px);
    background-color: #e5ddcf;
    background-image: var(--hero-poster-image, url("/assets/hero-tazelik-bg.png"));
    background-position: center top;
    background-size: contain;
    background-repeat: no-repeat;
    transition: opacity 0.26s ease;
    isolation: isolate;
  }

  .hero-content-poster.is-switching {
    opacity: 0.88;
  }

  .hero-content-poster > :not(.hero-poster-hotspot):not(.hero-poster-deco) {
    display: none !important;
  }

  .hero-content-poster .hero-poster-hotspot,
  .hero-content-poster .hero-poster-deco {
    display: block;
  }

  .hero-poster-deco--leaf {
    left: 4%;
    top: 54%;
  }

  .hero-poster-deco--chilli {
    width: clamp(58px, 18vw, 92px);
    right: 5%;
    top: 29%;
  }

  .hero-content-poster .hero-poster-hotspot {
    width: min(300px, 60%);
    height: clamp(42px, 7.2%, 62px);
    bottom: 7%;
  }

  .hero-content h1 {
    font-size: 40px;
    line-height: 1.05;
  }

  .hero-content p {
    font-size: 16px;
  }

  .hero-image-wrap {
    padding: 10px;
  }

  .hero-image-wrap img {
    max-height: 260px;
    object-fit: contain;
    background: #fff;
  }

  .hero-thumbs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
    scroll-snap-type: x mandatory;
  }

  .hero-thumb-btn {
    flex: 0 0 70px;
    scroll-snap-align: start;
  }

  .cards,
  .p2g-products,
  .campaign-grid,
  .coupon-row,
  .menu-quick,
  .contact-quick,
  .p2g-blog-grid,
  .highlight-grid,
  .stats-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .card-media {
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: #f8f5f1;
    padding: 8px;
  }

  .card-media img,
  .p2g-product-card img,
  .p2g-campaign-card img {
    width: 86%;
    max-width: 280px;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    background: transparent;
    margin: 0 auto;
    padding: 0;
  }

  .menu-hero-card img,
  .campaign-hero-card img,
  .contact-hero-card img,
  .p2g-build-visual img {
    max-height: 180px;
    object-fit: cover;
    background: #fff;
  }

  .p2g-cat-card {
    min-height: 180px;
  }

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

  .p2g-cat-grid {
    grid-template-columns: 1fr;
  }

  .p2g-build-grid {
    grid-template-columns: 1fr;
  }

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

  .p2g-franchise-grid {
    grid-template-columns: 1fr;
  }

  .p2g-order-card {
    background-image: url("../assets/order-banner-mobile.png");
    aspect-ratio: 899 / 1600;
    min-height: 620px;
  }

  .p2g-order-hotspot {
    width: min(300px, 56%);
    height: clamp(42px, 7%, 62px);
    bottom: 13.4%;
  }

  .contact-hero-inner {
    grid-template-columns: 1fr;
  }

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

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

  .menu-hero-inner {
    grid-template-columns: 1fr;
  }

  .campaign-hero-inner {
    grid-template-columns: 1fr;
  }

  .campaign-feature-card {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .modal-panel {
    width: min(760px, 96vw);
    max-height: 90vh;
    padding: 16px;
    border-radius: 18px;
  }

  .modal-thumb {
    width: 100%;
    max-width: 140px;
    height: auto;
    aspect-ratio: 1 / 1;
    margin: 0 auto;
  }

  .modal-row-head {
    gap: 8px;
    flex-wrap: wrap;
  }

  .modal-row-head > :first-child {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .modal-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .modal-actions {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .modal-actions .btn,
  .modal-actions .btn-outline {
    flex: 1 1 160px;
  }

  .modal-side-item {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 8px;
  }

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

  .categories {
    position: static;
  }

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

  .admin-item {
    grid-template-columns: 1fr;
  }

  .admin-item .admin-actions {
    margin-top: 8px;
    width: 100%;
  }

  .admin-item .admin-actions .btn {
    flex: 1 1 120px;
  }

  .cta-strip {
    flex-direction: column;
    align-items: flex-start;
  }

  .card .cta {
    flex-wrap: wrap;
    gap: 8px;
  }

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

  .cart-fab {
    right: 10px;
    bottom: 10px;
    max-width: calc(100vw - 20px);
  }
}

@media (max-width: 640px) {
  .card-media img,
  .p2g-product-card img,
  .p2g-campaign-card img {
    width: 82%;
    max-width: 240px;
    aspect-ratio: 1 / 1;
  }

  .p2g-blog-card img {
    aspect-ratio: 3 / 4;
    object-fit: cover;
    background: #f6efe7;
    padding: 0;
  }

  .admin-card {
    padding: 14px;
    border-radius: 14px;
  }

  .admin-grid input,
  .admin-grid textarea,
  .admin-grid select {
    font-size: 16px;
  }

  .admin-upload-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .admin-item-head {
    flex-direction: column;
  }

  .admin-item-thumb,
  .admin-upload-preview {
    width: 72px;
    height: 72px;
  }

}

@media (min-width: 701px) and (max-width: 1024px) {
  .cards,
  .p2g-products,
  .campaign-grid,
  .p2g-blog-grid,
  .p2g-campaign-grid,
  .stats-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .section-title {
    flex-wrap: wrap;
    gap: 12px;
    align-items: flex-start;
  }
}
