:root {
  --bg: #0f0f10;
  --bg-soft: #171719;
  --card: #1e1f23;
  --card-2: #25272d;
  --white: #ffffff;
  --text: #d6d6db;
  --muted: #9e9ea8;
  --red: #e63946;
  --red-dark: #c1121f;
  --yellow: #ffb703;
  --line: rgba(255, 255, 255, 0.08);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  --radius: 24px;
  --container: 1180px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top right, rgba(230, 57, 70, 0.12), transparent 20%),
    radial-gradient(circle at bottom left, rgba(255, 183, 3, 0.08), transparent 25%),
    var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font: inherit;
}

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.section {
  padding: 100px 0;
}

.eyebrow {
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 14px;
}

h1,
h2,
h3,
.logo-text strong {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.03em;
  color: var(--white);
}

h1 {
  font-size: clamp(3.5rem, 8vw, 7rem);
  line-height: 0.92;
  margin-bottom: 18px;
}

h2 {
  font-size: clamp(2.6rem, 5vw, 4.3rem);
  line-height: 0.95;
  margin-bottom: 12px;
}

h3 {
  font-size: 1.8rem;
}

p {
  color: var(--text);
  line-height: 1.7;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: 0.3s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: var(--white);
  box-shadow: 0 14px 30px rgba(230, 57, 70, 0.28);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-dark {
  background: #101114;
  color: var(--white);
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(15, 15, 16, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-badge {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--red), var(--yellow));
  color: var(--white);
  font-weight: 900;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-text strong {
  font-size: 1.4rem;
}

.logo-text span {
  color: var(--muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-top: 4px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav a {
  color: var(--white);
  font-weight: 700;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 2px;
  border-radius: 99px;
  background: var(--yellow);
  transition: 0.3s ease;
}

.nav a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cart-button,
.cart-fab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 52px;
  height: 52px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  cursor: pointer;
  font-weight: 800;
}

.cart-fab {
  position: fixed;
  right: 20px;
  bottom: 84px;
  z-index: 1001;
  box-shadow: var(--shadow);
}

.cart-fab-count {
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--yellow);
  color: #111;
  font-size: 0.78rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
}

.hero {
  padding: 50px 0 80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
}

.hero-text {
  max-width: 600px;
  font-size: 1.06rem;
  margin-bottom: 28px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 34px;
}

.hero-highlight-card {
  padding: 22px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-highlight-card strong {
  display: block;
  color: var(--white);
  font-size: 1.35rem;
  margin-bottom: 6px;
}

.hero-highlight-card span {
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-visual {
  position: relative;
  min-height: 650px;
}

.hero-pizza-main {
  position: absolute;
  inset: 20px 0 40px 60px;
  border-radius: 34px;
  overflow: hidden;
  background: #1b1c20;
  box-shadow: var(--shadow);
}

.hero-pizza-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-badge {
  position: absolute;
  max-width: 270px;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(24, 25, 29, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.floating-badge span {
  display: block;
  color: var(--yellow);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
  margin-bottom: 6px;
}

.floating-badge strong {
  color: var(--white);
  font-size: 1rem;
  line-height: 1.4;
}

.badge-top {
  top: 0;
  left: 0;
}

.badge-bottom {
  right: 0;
  bottom: 0;
}

.promo-strip {
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.promo-strip-wrap {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.promo-pill {
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  color: var(--white);
  font-weight: 700;
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 44px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.pizza-card,
.review-card,
.contact-card {
  background: linear-gradient(180deg, var(--card), var(--card-2));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.pizza-card {
  transition: 0.35s ease;
}

.pizza-card:hover {
  transform: translateY(-8px);
}

.pizza-image {
  position: relative;
  height: 240px;
  background: #141519;
}

.pizza-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pizza-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--yellow);
  color: #111;
  font-weight: 800;
  font-size: 0.76rem;
}

.pizza-content {
  padding: 22px;
}

.pizza-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.pizza-top strong {
  color: var(--yellow);
  font-size: 1rem;
  white-space: nowrap;
}

.pizza-content p {
  color: var(--muted);
  margin-bottom: 18px;
}

.combo-banner {
  padding: 36px;
  border-radius: 30px;
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: center;
}

.combo-copy p,
.combo-copy h2 {
  color: var(--white);
}

.combo-copy .eyebrow {
  color: #ffd166;
}

.combo-offer {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  padding: 26px;
  text-align: center;
}

.combo-offer span {
  display: block;
  color: #ffe1a8;
  font-weight: 700;
  margin-bottom: 8px;
}

.combo-offer strong {
  display: block;
  font-size: 2.3rem;
  color: var(--white);
  margin-bottom: 18px;
}

.favorites-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
}

.favorites-list {
  list-style: none;
  margin-top: 20px;
  display: grid;
  gap: 12px;
}

.favorites-list li {
  padding-left: 20px;
  position: relative;
  color: var(--white);
  font-weight: 700;
}

.favorites-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--yellow);
}

.favorites-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  grid-template-rows: repeat(2, 250px);
  gap: 16px;
}

.favorite-card {
  overflow: hidden;
  border-radius: 24px;
  background: #17181b;
  box-shadow: var(--shadow);
}

.favorite-card.large {
  grid-row: span 2;
}

.favorite-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}

.favorite-card:hover img {
  transform: scale(1.05);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.review-card {
  padding: 28px;
}

.stars {
  color: var(--yellow);
  letter-spacing: 0.18em;
  margin-bottom: 14px;
}

.review-card p {
  margin-bottom: 18px;
}

.review-card strong {
  color: var(--white);
}

.cta-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  padding: 42px;
  border-radius: 30px;
  background: linear-gradient(135deg, #1c1d21, #272930);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.footer {
  padding: 40px 0 24px;
  border-top: 1px solid var(--line);
  background: #111214;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.footer h3 {
  margin-bottom: 8px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

.footer-links a {
  color: var(--muted);
  font-weight: 700;
}

.contact-card {
  padding: 28px;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1001;
  background: linear-gradient(135deg, #1db954, #25d366);
  color: #fff;
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: var(--shadow);
  transition: 0.3s ease;
}

.whatsapp-float:hover {
  transform: translateY(-4px);
}

.cart-sidebar {
  position: fixed;
  top: 0;
  right: -420px;
  width: min(100%, 400px);
  height: 100vh;
  background: #111214;
  border-left: 1px solid var(--line);
  box-shadow: var(--shadow);
  z-index: 1003;
  display: flex;
  flex-direction: column;
  transition: right 0.35s ease;
}

.cart-sidebar.active {
  right: 0;
}

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease;
  z-index: 1002;
}

.cart-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.cart-header {
  padding: 22px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cart-label {
  color: var(--yellow);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 800;
}

.cart-close {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  cursor: pointer;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}

.cart-empty {
  padding: 24px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
}

.cart-empty strong {
  display: block;
  color: var(--white);
  margin-bottom: 8px;
}

.cart-item {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  margin-bottom: 14px;
}

.cart-item-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.cart-item-title {
  color: var(--white);
  font-weight: 800;
}

.cart-item-price {
  color: var(--yellow);
  font-weight: 800;
  white-space: nowrap;
}

.cart-item-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.qty-controls {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.qty-btn {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  cursor: pointer;
}

.remove-btn {
  border: none;
  background: transparent;
  color: #ff7b86;
  font-weight: 700;
  cursor: pointer;
}

.cart-footer {
  padding: 20px;
  border-top: 1px solid var(--line);
}

.cart-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.cart-total-row strong {
  color: var(--white);
  font-size: 1.2rem;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .hero-grid,
  .favorites-layout,
  .combo-banner,
  .cta-box {
    grid-template-columns: 1fr;
  }

  .menu-grid,
  .review-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .favorites-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 240px);
  }

  .favorite-card.large {
    grid-row: span 1;
  }

  .hero-visual {
    min-height: 560px;
  }
}

@media (max-width: 860px) {
  .nav {
    position: fixed;
    top: 86px;
    left: 16px;
    right: 16px;
    flex-direction: column;
    align-items: flex-start;
    padding: 22px;
    border-radius: 22px;
    background: rgba(15, 15, 16, 0.98);
    border: 1px solid var(--line);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: 0.3s ease;
  }

  .nav.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .desktop-order {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .hero-highlights,
  .menu-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 80px 0;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .favorites-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .favorite-card,
  .favorite-card.large {
    height: 240px;
  }

  .hero-visual {
    min-height: 440px;
  }

  .floating-badge {
    position: static;
    margin-top: 14px;
    max-width: 100%;
  }

  .hero-pizza-main {
    position: relative;
    inset: auto;
    min-height: 320px;
  }

  .cart-fab {
    bottom: 84px;
  }
}