/* ============================================
   PADDY'S PIZZA - PREMIUM 10/10 STYLING
   ============================================ */

/* ========== CSS VARIABLES ========== */
:root {
  /* Colors - Irish Theme */
  --primary-green: #006400;
  --primary-gold: #E0B000;
  --accent-red: #c62828;
  --accent-orange: #ff6b35;
  
  /* Backgrounds */
  --bg-cream: #faf8f5;
  --bg-white: #ffffff;
  --bg-dark: #1a1a1a;
  --bg-overlay: rgba(0, 0, 0, 0.7);
  
  /* Text */
  --text-dark: #1a1a1a;
  --text-medium: #4a4a4a;
  --text-light: #8a8a8a;
  
  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Montserrat', sans-serif;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 3rem;
  --spacing-xl: 5rem;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.2);
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --radius-full: 9999px;
}

/* ========== RESET & BASE ========== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background: var(--bg-cream);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-base);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ========== CONTAINER ========== */
.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

/* ========== HEADER ========== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(0, 100, 0, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.site-header.scrolled {
  background: rgba(0, 100, 0, 0.98);
  box-shadow: var(--shadow-lg);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: var(--transition-base);
}

.logo-container:hover {
  transform: scale(1.05);
}

.logo-img {
  height: 50px;
  width: auto;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-gold);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Main Navigation */
.main-nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  color: var(--primary-gold);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  padding: 0.5rem 0;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-gold);
  transition: width var(--transition-base);
}

.nav-link:hover::after {
  width: 100%;
}

/* Cart Button */
.cart-button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: var(--primary-gold);
  color: var(--primary-green);
  border-radius: var(--radius-full);
  font-weight: 700;
  transition: all var(--transition-base);
  box-shadow: 0 4px 12px rgba(224, 176, 0, 0.3);
}

.cart-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(224, 176, 0, 0.4);
}

.cart-icon {
  fill: var(--primary-green);
}

.cart-count {
  min-width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-red);
  color: white;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0.5rem;
  background: rgba(224, 176, 0, 0.1);
  border-radius: var(--radius-sm);
}

.hamburger,
.hamburger::before,
.hamburger::after {
  width: 24px;
  height: 3px;
  background: var(--primary-gold);
  border-radius: 3px;
  transition: all var(--transition-base);
}

.hamburger {
  position: relative;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  left: 0;
}

.hamburger::before {
  top: -8px;
}

.hamburger::after {
  top: 8px;
}

.mobile-menu-toggle.active .hamburger {
  background: transparent;
}

.mobile-menu-toggle.active .hamburger::before {
  transform: rotate(45deg);
  top: 0;
}

.mobile-menu-toggle.active .hamburger::after {
  transform: rotate(-45deg);
  top: 0;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(320px, 85%);
  height: 100vh;
  background: white;
  box-shadow: var(--shadow-xl);
  padding: 2rem;
  transition: right var(--transition-slow);
  z-index: 1001;
  overflow-y: auto;
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--primary-gold);
}

.mobile-menu-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-green);
}

.mobile-menu-close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-cream);
  border-radius: 50%;
  font-size: 1.5rem;
  color: var(--text-dark);
  transition: var(--transition-base);
}

.mobile-menu-close:hover {
  background: var(--accent-red);
  color: white;
}

.mobile-nav-link {
  display: block;
  padding: 1rem;
  margin-bottom: 0.5rem;
  background: var(--bg-cream);
  border-radius: var(--radius-md);
  font-weight: 600;
  color: var(--text-dark);
  transition: all var(--transition-base);
}

.mobile-nav-link:hover {
  background: var(--primary-green);
  color: var(--primary-gold);
  transform: translateX(8px);
}

/* ========== CART PANEL ========== */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  z-index: 1998;
}

.cart-overlay.active {
  opacity: 1;
  visibility: visible;
}

.cart-panel {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(450px, 90%);
  height: 100vh;
  background: white;
  box-shadow: var(--shadow-xl);
  display: flex;
  flex-direction: column;
  transition: right var(--transition-slow);
  z-index: 1999;
}

.cart-panel.open {
  right: 0;
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  background: var(--primary-green);
  color: white;
}

.cart-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--primary-gold);
}

.cart-close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  font-size: 1.5rem;
  color: white;
  transition: var(--transition-base);
}

.cart-close:hover {
  background: var(--accent-red);
  transform: rotate(90deg);
}

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
}

.cart-items {
  list-style: none;
  margin-bottom: 2rem;
}

.cart-items li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  margin-bottom: 1rem;
  background: var(--bg-cream);
  border-radius: var(--radius-md);
  gap: 1rem;
}

.cart-items .item-info {
  flex: 1;
}

.cart-items .item-name {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

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

.cart-items .item-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cart-items button {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-green);
  color: white;
  border-radius: var(--radius-sm);
  font-weight: 700;
  transition: var(--transition-base);
}

.cart-items button:hover {
  background: var(--primary-gold);
  color: var(--primary-green);
  transform: scale(1.1);
}

.cart-items .remove-btn {
  background: var(--accent-red);
}

.cart-items .remove-btn:hover {
  background: #a01f1f;
  color: white;
}

.cart-items .qty {
  min-width: 30px;
  text-align: center;
  font-weight: 700;
  color: var(--text-dark);
}

/* Cart Summary */
.cart-summary {
  padding: 1.5rem;
  background: var(--bg-cream);
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
}

.delivery-fee-line,
.cart-total-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
}

.delivery-fee-line {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 0.5rem;
}

.cart-total-line {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-green);
}

/* Order Options */
.order-options {
  padding: 1.5rem;
  background: var(--bg-cream);
  border-radius: var(--radius-md);
}

.order-options-title {
  font-size: 1.125rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.order-type-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.radio-option {
  cursor: pointer;
}

.radio-option input[type="radio"] {
  display: none;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  background: white;
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  font-weight: 600;
  transition: all var(--transition-base);
}

.radio-option input[type="radio"]:checked + .radio-label {
  background: var(--primary-green);
  color: white;
  border-color: var(--primary-green);
}

.radio-label svg {
  fill: currentColor;
  flex-shrink: 0;
}

/* Delivery Address Box */
.delivery-address-box {
  display: none;
  margin-top: 1rem;
}

.delivery-address-box.active {
  display: block;
}

.address-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.address-input {
  width: 100%;
  padding: 1rem;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-family: inherit;
  transition: var(--transition-base);
}

.address-input:focus {
  outline: none;
  border-color: var(--primary-green);
  box-shadow: 0 0 0 4px rgba(0, 100, 0, 0.1);
}

/* Cart Footer */
.cart-footer {
  padding: 1.5rem;
  background: white;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
}

.checkout-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.25rem;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 1.05rem;
  transition: all var(--transition-base);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

.checkout-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.checkout-btn svg {
  fill: white;
}

/* ========== HERO ========== */
.hero {
  position: relative;
  height: 95vh;
  min-height: 600px;
  overflow: hidden;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 2s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide.active {
  opacity: 1;
}

/* Hero Particles */
.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.square {
  position: absolute;
  background: rgba(224, 176, 0, 0.3);
  animation: float-up linear;
  will-change: transform, opacity;
}

@keyframes float-up {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translateY(-100vh) rotate(360deg);
    opacity: 0;
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.4) 50%,
    rgba(0, 0, 0, 0.6) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: white;
  padding-top: 80px;
}

.hero-title {
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
}

.hero-title-line {
  display: block;
  color: var(--primary-gold);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-subtitle-line {
  display: block;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: white;
  margin-top: 0.5rem;
}

.hero-description {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  max-width: 600px;
  animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.5s both;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.7s both;
}

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

/* Scroll Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: white;
  opacity: 0.8;
  animation: bounce 2s infinite;
}

.hero-scroll-indicator span {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

@keyframes bounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.5px;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.btn:hover::before {
  opacity: 1;
}

.btn-primary {
  background: var(--primary-gold);
  color: var(--primary-green);
  box-shadow: 0 4px 14px rgba(224, 176, 0, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(224, 176, 0, 0.5);
}

.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-outline:hover {
  background: white;
  color: var(--primary-green);
}

.btn svg {
  stroke: currentColor;
  transition: transform var(--transition-base);
}

.btn:hover svg {
  transform: translateX(4px);
}

/* ========== TRUST BANNER ========== */
.trust-banner {
  padding: 2rem 0;
  background: linear-gradient(135deg, var(--primary-green), #004d00);
}

.trust-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: white;
  text-align: center;
}

.trust-icon {
  fill: var(--primary-gold);
  flex-shrink: 0;
}

.trust-content p {
  font-size: 1.05rem;
  line-height: 1.6;
}

.trust-content strong {
  color: var(--primary-gold);
}

/* ========== SECTIONS ========== */
.section {
  padding: var(--spacing-xl) 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.section-title {
  margin-bottom: 1rem;
  color: var(--primary-green);
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-medium);
}

/* ========== FEATURED PRODUCTS ========== */
.featured-section {
  background: white;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.featured-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-slow);
}

.featured-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.featured-image {
  position: relative;
  overflow: hidden;
}

.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-card:hover .featured-image img {
  transform: scale(1.1);
}

.featured-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.5rem 1rem;
  background: var(--accent-red);
  color: white;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: var(--shadow-md);
}

.featured-badge.special {
  background: var(--primary-gold);
  color: var(--primary-green);
}

.featured-content {
  padding: 1.5rem;
}

.featured-name {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--primary-green);
}

.featured-description {
  color: var(--text-medium);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.featured-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.featured-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-green);
  font-family: var(--font-heading);
}

.add-to-cart-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: var(--primary-green);
  color: white;
  border-radius: var(--radius-full);
  font-weight: 700;
  transition: all var(--transition-base);
}

.add-to-cart-btn:hover {
  background: var(--primary-gold);
  color: var(--primary-green);
  transform: translateX(4px);
}

.add-to-cart-btn svg {
  stroke: currentColor;
}

/* ========== MEAL DEALS ========== */
.meal-deals-section {
  background: var(--bg-cream);
}

.meal-deals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.meal-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-slow);
  border: 2px solid transparent;
}

.meal-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-gold);
}

.meal-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--bg-cream);
}

.meal-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.meal-title {
  font-size: 1.75rem;
  color: var(--primary-green);
  margin-bottom: 0.5rem;
}

.meal-subtitle {
  color: var(--text-medium);
  font-size: 1rem;
}

.meal-body {
  margin-bottom: 2rem;
}

.meal-option {
  margin-bottom: 1.5rem;
}

.meal-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.meal-select {
  width: 100%;
  padding: 1rem;
  background: var(--bg-cream);
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-family: inherit;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-base);
}

.meal-select:focus {
  outline: none;
  background: white;
  border-color: var(--primary-green);
  box-shadow: 0 0 0 4px rgba(0, 100, 0, 0.1);
}

.meal-price-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem;
  background: var(--bg-cream);
  border-radius: var(--radius-md);
  margin-top: 1.5rem;
}

.meal-from {
  font-size: 0.875rem;
  color: var(--text-medium);
  margin-bottom: 0.25rem;
}

.meal-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-green);
  font-family: var(--font-heading);
}

.meal-add-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.25rem;
  background: var(--primary-green);
  color: white;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 1.05rem;
  transition: all var(--transition-base);
  box-shadow: 0 4px 12px rgba(0, 100, 0, 0.3);
}

.meal-add-btn:hover {
  background: var(--primary-gold);
  color: var(--primary-green);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(224, 176, 0, 0.4);
}

.meal-add-btn svg {
  stroke: currentColor;
}

/* ========== PIZZA SECTION ========== */
.pizza-section {
  background: white;
}

.pizza-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.pizza-card {
  position: relative;
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 2px solid transparent;
  transition: all var(--transition-slow);
}

.pizza-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-green);
}

.pizza-card.featured {
  border-color: var(--primary-gold);
  background: linear-gradient(to bottom, rgba(224, 176, 0, 0.05), white);
}

.pizza-number {
  position: absolute;
  top: -1rem;
  left: 1.5rem;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-green);
  color: var(--primary-gold);
  border-radius: 50%;
  font-size: 1.25rem;
  font-weight: 700;
  font-family: var(--font-heading);
  box-shadow: var(--shadow-md);
}

.pizza-badge {
  position: absolute;
  top: -1rem;
  right: 1.5rem;
  padding: 0.5rem 1rem;
  background: var(--primary-gold);
  color: var(--primary-green);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: var(--shadow-md);
}

.pizza-name {
  font-size: 1.5rem;
  margin: 1rem 0 0.5rem;
  color: var(--primary-green);
}

.pizza-desc {
  font-size: 0.875rem;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 1rem;
}

.pizza-ingredients {
  list-style: none;
  margin-bottom: 1rem;
  padding: 1rem;
  background: var(--bg-cream);
  border-radius: var(--radius-md);
}

.pizza-ingredients li {
  padding: 0.375rem 0;
  color: var(--text-medium);
  font-size: 0.95rem;
  position: relative;
  padding-left: 1.5rem;
}

.pizza-ingredients li::before {
  content: '🍕';
  position: absolute;
  left: 0;
  font-size: 0.875rem;
}

.pizza-story {
  font-size: 0.95rem;
  color: var(--text-medium);
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.pizza-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 2px solid var(--bg-cream);
}

.pizza-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-green);
  font-family: var(--font-heading);
}

.pizza-add-to-cart {
  padding: 0.75rem 1.5rem;
  background: var(--primary-green);
  color: white;
  border-radius: var(--radius-full);
  font-weight: 700;
  transition: all var(--transition-base);
}

.pizza-add-to-cart:hover {
  background: var(--primary-gold);
  color: var(--primary-green);
  transform: translateX(4px);
}

/* ========== BURGER SECTION ========== */
.burger-section {
  background: var(--bg-cream);
}

.burger-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.burger-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-slow);
  border: 2px solid transparent;
}

.burger-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-green);
}

.burger-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.burger-name {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--primary-green);
}

.burger-translation {
  font-size: 0.95rem;
  color: var(--text-medium);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.burger-ingredients {
  list-style: none;
  margin-bottom: 1.25rem;
  padding: 1rem;
  background: var(--bg-cream);
  border-radius: var(--radius-md);
}

.burger-ingredients li {
  padding: 0.375rem 0;
  color: var(--text-medium);
  font-size: 0.9rem;
  position: relative;
  padding-left: 1.5rem;
}

.burger-ingredients li::before {
  content: '🍔';
  position: absolute;
  left: 0;
  font-size: 0.875rem;
}

.burger-story {
  font-size: 0.95rem;
  color: var(--text-medium);
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.burger-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 2px solid var(--bg-cream);
}

.burger-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-green);
  font-family: var(--font-heading);
}

.burger-add-to-cart {
  padding: 0.75rem 1.5rem;
  background: var(--primary-green);
  color: white;
  border-radius: var(--radius-full);
  font-weight: 700;
  transition: all var(--transition-base);
}

.burger-add-to-cart:hover {
  background: var(--primary-gold);
  color: var(--primary-green);
  transform: translateX(4px);
}

/* ========== DRINKS SECTION ========== */
.drinks-section {
  background: white;
}

.drinks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem;
}

.drink-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-slow);
  border: 2px solid transparent;
  text-align: center;
}

.drink-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-green);
}

.drink-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.drink-name {
  font-size: 1.375rem;
  margin-bottom: 1.5rem;
  color: var(--primary-green);
  font-weight: 700;
}

.drink-option {
  margin-bottom: 1.5rem;
  text-align: left;
}

.drink-option label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.drink-select {
  width: 100%;
  padding: 1rem;
  background: var(--bg-cream);
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-family: inherit;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-base);
}

.drink-select:focus {
  outline: none;
  background: white;
  border-color: var(--primary-green);
  box-shadow: 0 0 0 4px rgba(0, 100, 0, 0.1);
}

.drink-add-to-cart {
  width: 100%;
  padding: 1rem;
  background: var(--primary-green);
  color: white;
  border-radius: var(--radius-full);
  font-weight: 700;
  transition: all var(--transition-base);
}

.drink-add-to-cart:hover {
  background: var(--primary-gold);
  color: var(--primary-green);
  transform: translateY(-2px);
}

/* ========== FOOTER ========== */
.footer {
  background: var(--bg-dark);
  color: white;
  padding: 4rem 0 0;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  max-width: 400px;
}

.footer-logo {
  height: 60px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
}

.footer-column h4 {
  color: var(--primary-gold);
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

.footer-column a,
.footer-column p {
  display: block;
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition-base);
}

.footer-column a:hover {
  color: var(--primary-gold);
  padding-left: 4px;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  display: block;
  width: 40px;
  height: 40px;
  padding: 0;
}

.social-links img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: var(--transition-base);
}

.social-links a:hover img {
  transform: scale(1.1);
}

.footer-bottom {
  padding: 2rem 0;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  margin: 0.25rem 0;
  font-size: 0.9rem;
}

.footer-credits {
  display: flex;
  justify-content: center;
  align-items: center;
}

.credits-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--color-text-secondary);
  font-size: 0.9rem;
  transition: all var(--transition-base);
}

.credits-logo {
  width: 32px;
  height: 32px;
  filter: brightness(0.8);
  transition: all var(--transition-base);
}

.credits-link:hover {
  color: var(--color-accent-primary);
}

.credits-link:hover .credits-logo {
  filter: brightness(1);
  transform: scale(1.1);
}

/* ========== BACK TO TOP ========== */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-green);
  color: var(--primary-gold);
  border-radius: 50%;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-base);
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--primary-gold);
  color: var(--primary-green);
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.back-to-top svg {
  stroke: currentColor;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  :root {
    --spacing-xl: 3rem;
  }

  .hero {
    height: 85vh;
  }

  .hero-content {
    align-items: center;
    text-align: center;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .featured-grid,
  .meal-deals-grid,
  .pizza-grid,
  .burger-grid,
  .drinks-grid {
    grid-template-columns: 1fr;
  }

  .cart-panel {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .logo-text {
    font-size: 1.25rem;
  }

  .logo-img {
    height: 40px;
  }

  .hero-scroll-indicator {
    display: none;
  }
}

/* ========== ACCESSIBILITY ========== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

:focus-visible {
  outline: 3px solid var(--primary-gold);
  outline-offset: 3px;
}
