/* ============================================================
   JERRY PIZZA — Dark Theme CSS
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Satisfy&family=Nunito:wght@400;600;700;800;900&display=swap');

:root {
  --red:        #e8190a;
  --red-deep:   #a80e00;
  --gold:       #f5c518;
  --gold-dark:  #c49a00;
  --black:      #0a0a0a;
  --bg-dark:    #111111;
  --bg-card:    #1a1a1a;
  --bg-section: #161616;
  --white:      #ffffff;
  --muted:      #a0a0a0;
  --radius:     16px;
  --font-display: 'Bebas Neue', sans-serif;
  --font-script:  'Satisfy', cursive;
  --font-body:    'Nunito', sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { border: none; background: none; font-family: inherit; cursor: pointer; outline: none; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 4px; }

/* ===== UTILITIES ===== */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.section-padding { padding: 90px 0; }
.text-center { text-align: center; }
.section-label {
  display: inline-block;
  font-family: var(--font-script); font-size: 1.2rem; color: var(--gold);
  margin-bottom: 8px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: 2px; line-height: 1.1;
}
.gold-divider {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  border-radius: 2px; margin: 16px auto 24px;
}
.text-muted { color: var(--muted); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 40px;
  font-family: var(--font-body); font-weight: 800;
  font-size: 0.9rem; letter-spacing: 0.5px;
  cursor: pointer; border: none;
  transition: all 0.2s ease;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  box-shadow: 0 6px 20px rgba(245,197,24,0.35);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(245,197,24,0.5); }
.btn-outline {
  background: transparent;
  color: var(--white); border: 2px solid var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--black); }
.btn-red {
  background: var(--red); color: var(--white);
  box-shadow: 0 6px 20px rgba(232,25,10,0.35);
}
.btn-red:hover { background: var(--red-deep); transform: translateY(-3px); }

/* ===== HEADER ===== */
.global-header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(18px);
  border-bottom: 2px solid var(--red);
  padding: 0 24px;
}
.container-nav {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-size: 1.8rem;
  color: var(--white); letter-spacing: 2px;
}
.logo-icon {
  width: 44px; height: 44px;
  background: var(--red);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}
.logo span { color: var(--gold); }

.main-nav ul { display: flex; gap: 32px; list-style: none; }
.main-nav a {
  font-family: var(--font-body); font-weight: 700; font-size: 0.9rem;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--muted); transition: color .2s;
  padding-bottom: 4px; border-bottom: 2px solid transparent;
}
.main-nav a:hover, .main-nav a.active {
  color: var(--gold); border-bottom-color: var(--gold);
}

.header-actions { display: flex; align-items: center; gap: 16px; }
.cart-trigger {
  display: flex; align-items: center; gap: 6px;
  background: var(--red); color: var(--white);
  padding: 8px 18px; border-radius: 30px;
  font-weight: 700; font-size: 0.9rem; cursor: pointer;
  transition: background .2s, transform .15s;
}
.cart-trigger:hover { background: var(--red-deep); transform: scale(1.04); }
.cart-badge {
  background: var(--gold); color: var(--black);
  border-radius: 50%; width: 20px; height: 20px;
  font-size: 0.75rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
}
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.bar { width: 26px; height: 2px; background: var(--white); border-radius: 2px; transition: all .3s; }

/* ===== CART DRAWER ===== */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.6);
  z-index: 9998; opacity: 0; pointer-events: none;
  transition: opacity .3s;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }

.cart-drawer {
  position: fixed; top: 0; right: 0;
  width: 380px; height: 100vh;
  background: var(--bg-dark);
  border-left: 2px solid var(--red);
  z-index: 9999;
  transform: translateX(100%);
  transition: transform .35s ease;
  padding: 0;
  overflow-y: auto;
  display: flex; flex-direction: column;
}
.cart-drawer.open { transform: translateX(0); }

.cart-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px;
  background: linear-gradient(135deg, var(--bg-card), rgba(232,25,10,0.1));
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.cart-header h3 {
  font-family: var(--font-display); font-size: 1.6rem; color: var(--gold);
  letter-spacing: 2px;
}
.close-cart { cursor: pointer; color: var(--muted); font-size: 1.4rem; transition: 0.2s; }
.close-cart:hover { color: var(--red); }

.cart-body {
  flex: 1; padding: 24px; overflow-y: auto;
  display: flex; flex-direction: column; gap: 12px;
}
.cart-empty {
  color: var(--muted); text-align: center; padding: 60px 20px;
  font-size: 0.95rem; line-height: 1.6;
}

.cart-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px; background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  font-size: 0.9rem;
}
.cart-item-name { color: var(--white); flex: 1; }
.cart-item-price { color: var(--gold); font-weight: 700; margin: 0 16px; }
.cart-item-remove { cursor: pointer; color: var(--muted); transition: 0.2s; }
.cart-item-remove:hover { color: var(--red); }

.cart-footer {
  padding: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: var(--bg-card);
}
.cart-total {
  display: flex; justify-content: space-between;
  padding: 16px 0; font-weight: 800; font-size: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 16px;
}
.cart-total span:last-child { color: var(--gold); font-family: var(--font-display); font-size: 1.3rem; }

.checkout-form {
  display: flex; flex-direction: column; gap: 12px;
  margin-bottom: 16px;
}
.checkout-form input,
.checkout-form textarea {
  width: 100%;
  padding: 10px 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color .2s;
}
.checkout-form input::placeholder,
.checkout-form textarea::placeholder { color: var(--muted); }
.checkout-form input:focus,
.checkout-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255,255,255,0.12);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slideOutLeft {
  from { transform: translateX(0) scale(1); opacity: 1; }
  to { transform: translateX(-120%) scale(0.8); opacity: 0; }
}
@keyframes slideInRight {
  from { transform: translateX(120%) scale(0.8); opacity: 0; }
  to { transform: translateX(0) scale(1); opacity: 1; }
}
@keyframes slideOutRight {
  from { transform: translateX(0) scale(1); opacity: 1; }
  to { transform: translateX(120%) scale(0.8); opacity: 0; }
}
@keyframes slideInLeft {
  from { transform: translateX(-120%) scale(0.8); opacity: 0; }
  to { transform: translateX(0) scale(1); opacity: 1; }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}
@keyframes pulse-glow {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.7; }
  50% { transform: translate(-50%, -50%) scale(1.1); opacity: 1; }
}

.anim-fade-up {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.anim-fade-up.visible { opacity: 1; transform: translateY(0); }

/* ===== PIZZA HERO SECTION ===== */
.pizza-hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
  padding-top: 70px;
}

.slider-bg {
  position: absolute; inset: 0;
  transition: background 0.8s ease;
  z-index: 0;
}
.slider-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.85) 40%, rgba(0,0,0,0.3) 100%);
  z-index: 1;
}

.hero-stripe {
  position: absolute;
  top: -10%; left: -5%;
  width: 55%; height: 130%;
  background: linear-gradient(165deg, #e8190a 0%, #8b0000 100%);
  clip-path: polygon(0 0, 80% 0, 60% 100%, 0 100%);
  z-index: 1;
  opacity: 0.95;
}

.hero-inner {
  position: relative; z-index: 10;
  max-width: 1280px; margin: 0 auto;
  padding: 0 40px;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 40px;
  width: 100%;
  min-height: calc(100vh - 70px);
}

.hero-text { position: relative; }
.hero-eyebrow {
  font-family: var(--font-script);
  font-size: 1.4rem; color: var(--gold);
  margin-bottom: 8px;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 0.6s ease 0.3s forwards;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 6rem);
  line-height: 0.95;
  color: var(--white);
  text-shadow: 3px 3px 0 rgba(0,0,0,0.4);
  opacity: 0; transform: translateY(30px);
  animation: fadeUp 0.7s ease 0.5s forwards;
}
.hero-title span { color: var(--gold); }
.hero-subtitle {
  font-size: 1.05rem; color: rgba(255,255,255,0.8);
  max-width: 420px; line-height: 1.6;
  margin: 18px 0 28px;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 0.7s ease 0.7s forwards;
}
.hero-btns {
  display: flex; gap: 14px; flex-wrap: wrap;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 0.7s ease 0.9s forwards;
}

.slider-dots {
  position: absolute;
  bottom: -60px; left: 0;
  display: flex; gap: 10px;
}
.dot {
  width: 10px; height: 10px;
  border-radius: 50%; background: rgba(255,255,255,0.3);
  cursor: pointer; transition: all .3s;
}
.dot.active { background: var(--gold); width: 28px; border-radius: 6px; }

.hero-pizza-area {
  position: relative;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 24px;
}

.pizza-slide-wrapper {
  position: relative;
  width: 100%; max-width: 500px;
}

.pizza-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,197,24,0.35) 0%, rgba(232,25,10,0.15) 50%, transparent 70%);
  animation: pulse-glow 3s ease-in-out infinite;
  z-index: 0;
}

.pizza-img-frame {
  position: relative; z-index: 2;
  width: 380px; height: 380px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--gold);
  box-shadow: 0 0 60px rgba(245,197,24,0.4), 0 20px 60px rgba(0,0,0,0.6);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.pizza-img-frame:hover {
  transform: scale(1.04) rotate(-1deg);
  box-shadow: 0 0 80px rgba(245,197,24,0.6), 0 25px 70px rgba(0,0,0,0.7);
}
.pizza-img-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.pizza-img-frame:hover img { transform: scale(1.1); }

.pizza-img-frame.slide-out-left { animation: slideOutLeft 0.4s ease forwards; }
.pizza-img-frame.slide-in-right { animation: slideInRight 0.4s ease forwards; }
.pizza-img-frame.slide-out-right { animation: slideOutRight 0.4s ease forwards; }
.pizza-img-frame.slide-in-left { animation: slideInLeft 0.4s ease forwards; }

.pizza-info-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(245,197,24,0.3);
  border-radius: var(--radius);
  padding: 18px 24px;
  text-align: center;
  backdrop-filter: blur(10px);
  width: 100%; max-width: 420px;
  transition: all 0.4s ease;
}
.pizza-info-card h3 {
  font-family: var(--font-display);
  font-size: 1.8rem; color: var(--gold);
  letter-spacing: 2px;
}
.pizza-info-card .tagline {
  font-size: 0.85rem; color: var(--muted); margin: 4px 0 8px;
  font-style: italic;
}
.pizza-info-card .pizza-desc {
  font-size: 0.82rem; color: rgba(255,255,255,0.7);
  line-height: 1.5;
}

.slider-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(232,25,10,0.8);
  border: 2px solid var(--gold);
  color: var(--white);
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 20;
  transition: all .2s;
}
.slider-arrow:hover { background: var(--gold); color: var(--black); }
.slider-arrow.prev { left: -10px; }
.slider-arrow.next { right: -10px; }

.scroll-cue {
  position: absolute; bottom: 30px; left: 50%;
  transform: translateX(-50%);
  z-index: 10; text-align: center;
  animation: bounce 2s infinite;
}
.scroll-cue span {
  display: block; font-size: 0.7rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 6px;
}
.scroll-cue i { color: var(--gold); font-size: 1.2rem; }

/* ===== FLAVORS MARQUEE ===== */
.flavors-strip {
  background: var(--red);
  padding: 12px 0;
  overflow: hidden;
  white-space: nowrap;
}
.flavors-track {
  display: inline-flex; gap: 48px;
  animation: marquee 20s linear infinite;
}
.flavor-item {
  font-family: var(--font-display);
  font-size: 1rem; letter-spacing: 3px;
  color: var(--gold);
}
.flavor-dot { color: var(--white); margin: 0 8px; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== FEATURE ZIGZAG ===== */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  margin-bottom: 80px;
}
.feature-row:last-child { margin-bottom: 0; }
.feature-row:nth-child(even) .feature-text { order: 2; }
.feature-row:nth-child(even) .feature-image { order: 1; }

.feature-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.8rem);
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 16px;
}
.feature-text h2 span { color: var(--gold); }
.feature-text p {
  color: var(--muted); line-height: 1.7; font-size: 1rem;
  margin-bottom: 24px;
}

.feature-img-circle {
  width: 380px; height: 380px; border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--red);
  box-shadow: 0 20px 60px rgba(232,25,10,0.3);
  margin: 0 auto;
  transition: transform 0.4s;
}
.feature-img-circle:hover { transform: scale(1.04) rotate(2deg); }
.feature-img-circle img { width: 100%; height: 100%; object-fit: cover; }

/* ===== MENU GRID ===== */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.menu-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.menu-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(232,25,10,0.25);
  border-color: var(--gold);
}

.card-img {
  width: 100%; height: 180px; overflow: hidden;
  position: relative;
}
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.menu-card:hover .card-img img { transform: scale(1.1); }

.card-tag {
  position: absolute; top: 10px; right: 10px;
  background: var(--red); color: var(--white);
  font-size: 0.7rem; font-weight: 800;
  padding: 3px 10px; border-radius: 20px;
  letter-spacing: 1px; text-transform: uppercase;
}

.card-body { padding: 16px 18px 18px; }
.card-body h4 {
  font-family: var(--font-display);
  font-size: 1.3rem; letter-spacing: 1px;
  color: var(--white); margin-bottom: 6px;
}
.card-body p {
  color: var(--muted); font-size: 0.8rem;
  line-height: 1.5; margin-bottom: 14px;
  display: -webkit-box; -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
}

.card-footer {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 8px;
}
.card-price { color: var(--gold); font-size: 0.9rem; font-weight: 700; }
.card-price .big-price { font-size: 1.3rem; }

/* ===== DEALS GRID ===== */
.deals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.deal-card {
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(232,25,10,0.08) 100%);
  border: 1px solid rgba(232,25,10,0.25);
  border-radius: var(--radius);
  padding: 20px 22px;
  display: flex; align-items: flex-start; gap: 14px;
  transition: transform .3s, border-color .3s;
}
.deal-card:hover { transform: translateY(-5px); border-color: var(--gold); }

.deal-num {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.1rem; color: var(--white);
}

.deal-info h4 {
  font-weight: 700; font-size: 0.95rem;
  color: var(--white); margin-bottom: 6px;
  line-height: 1.4;
}

.deal-price {
  color: var(--gold); font-family: var(--font-display);
  font-size: 1.5rem; letter-spacing: 1px;
}

/* ===== REVIEWS SECTION ===== */
.reviews-section {
  background: var(--bg-dark);
  padding: 60px 0;
  border-top: 2px solid var(--red);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 24px;
  transition: transform 0.3s, border-color 0.3s;
}
.review-card:hover { transform: translateY(-5px); border-color: var(--gold); }

.review-header {
  display: flex; align-items: flex-start; gap: 14px;
  margin-bottom: 16px;
}

.review-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem; color: var(--white); flex-shrink: 0;
}

.review-meta h4 {
  font-size: 1rem; color: var(--white); margin-bottom: 2px;
  font-weight: 700;
}
.review-meta span {
  font-size: 0.8rem; color: var(--muted);
}

.review-stars {
  display: flex; gap: 3px; margin: 8px 0;
}
.star { color: var(--gold); font-size: 0.9rem; }

.review-text {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem; line-height: 1.6;
  margin-bottom: 14px;
}

/* ===== CONTACT BAR ===== */
.contact-bar {
  background: linear-gradient(135deg, var(--red), var(--red-deep));
  padding: 40px 0;
}

.contact-bar-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 24px;
}

.contact-bar h2 {
  font-family: var(--font-display);
  font-size: 2rem; letter-spacing: 2px; color: var(--white);
}
.contact-bar h2 span { color: var(--gold); }

.contact-pills { display: flex; gap: 12px; flex-wrap: wrap; }
.contact-pill {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 40px; padding: 10px 20px;
  display: flex; align-items: center; gap: 8px;
  color: var(--white); font-weight: 700; font-size: 0.95rem;
  backdrop-filter: blur(6px);
  transition: background .2s;
}
.contact-pill:hover { background: rgba(255,255,255,0.25); }
.contact-pill i { color: var(--gold); }

/* ===== FOOTER ===== */
.site-footer { background: #080808; border-top: 2px solid var(--red); }

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  max-width: 1280px; margin: 0 auto;
  padding: 60px 24px 40px;
}

.footer-col h2 {
  font-family: var(--font-display);
  font-size: 2rem; color: var(--red);
  letter-spacing: 2px; margin-bottom: 14px;
}
.footer-col h2 span { color: var(--gold); }

.footer-col h3 {
  font-family: var(--font-display);
  font-size: 1.2rem; letter-spacing: 2px;
  color: var(--gold); margin-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-bottom: 10px;
}

.footer-col p { color: var(--muted); line-height: 1.7; font-size: 0.9rem; margin-bottom: 8px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { color: var(--muted); font-size: 0.9rem; transition: color .2s; }
.footer-col ul a:hover { color: var(--gold); }

.social-icons { display: flex; gap: 12px; margin-top: 20px; }
.social-icons a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: 0.9rem;
  transition: all .2s;
}
.social-icons a:hover { background: var(--red); color: var(--white); border-color: var(--red); }

.footer-bottom {
  max-width: 1280px; margin: 0 auto;
  padding: 20px 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { color: var(--muted); font-size: 0.85rem; }

.payment-methods { display: flex; gap: 8px; flex-wrap: wrap; }
.pay-badge {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px; padding: 4px 12px;
  color: var(--muted); font-size: 0.78rem; font-weight: 600;
}

/* ===== MOBILE NAV ===== */
.main-nav {
  position: static;
}
.main-nav.open { display: flex; }

@media (max-width: 768px) {
  .main-nav {
    position: fixed; inset: 70px 0 0 0;
    background: rgba(10,10,10,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center; justify-content: flex-start;
    padding: 30px 0;
    transform: translateX(100%);
    transition: transform .35s ease;
    z-index: 999;
    display: flex;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav ul { flex-direction: column; gap: 0; width: 100%; }
  .main-nav li { width: 100%; }
  .main-nav a {
    display: block; padding: 16px 24px;
    text-align: center; border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .hamburger { display: flex; }
  .cart-text { display: none; }

  .hero-inner {
    grid-template-columns: 1fr;
    padding: 30px 20px;
    min-height: auto;
    padding-top: 30px;
    gap: 30px;
    text-align: center;
  }
  .hero-subtitle { margin: 18px auto 28px; }
  .hero-btns { justify-content: center; }
  .slider-dots { left: 50%; transform: translateX(-50%); }

  .pizza-img-frame { width: 260px; height: 260px; }
  .pizza-glow { width: 300px; height: 300px; }

  .feature-row { grid-template-columns: 1fr; gap: 30px; }
  .feature-row:nth-child(even) .feature-text { order: 1; }
  .feature-row:nth-child(even) .feature-image { order: 2; }
  .feature-img-circle { width: 260px; height: 260px; }

  .footer-main { grid-template-columns: 1fr; gap: 36px; }
  .contact-bar-inner { justify-content: center; text-align: center; }

  .cart-drawer { width: 100%; }
  .slider-arrow { display: none; }
  .menu-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
  .deals-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.5rem; }
  .section-title { font-size: 1.8rem; }
  .logo { font-size: 1.3rem; }
  .contact-bar h2 { font-size: 1.5rem; }
  .footer-main { gap: 24px; }
  .contact-pills { gap: 8px; }
  .contact-pill { padding: 8px 16px; font-size: 0.85rem; }
}

/* Logo Styling */
.logo-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--red);
}

/* Deal Thumbnail Styling */
.deal-thumb {
  width: 90px;
  height: 90px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.1);
}
