/*
Theme Name: PizzaShopPro
Theme URI: https://example.com/pizzashoppro
Author: AI Generated
Author URI: https://example.com
Description: A modern, appetizing, conversion-focused pizza shop theme with WooCommerce support, responsive design, accessibility, and delightful animations.
Version: 1.0.1
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: pizzashoppro
Tags: e-commerce, food-and-drink, blog, custom-colors, custom-logo, custom-menu, featured-images, one-column, two-columns, theme-options, accessibility-ready
*/

/*
  Note: Core styles are in assets/css/custom.css (minified variant is enqueued).
  This file intentionally keeps minimal root defaults and the theme header metadata.
*/

:root {
  --psp-primary: #e63946; /* adjustable via Customizer */
  --psp-accent: #ffb703;  /* adjustable via Customizer */
  --psp-dark: #0b0f14;    /* adjustable via Customizer */
  --psp-light: #ffffff;
  --psp-muted: #f7f7f9;
}

html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }

body {
  margin: 0;
  color: #1c1c1c;
  background: var(--psp-light);
}

/* WordPress alignment helpers */
.alignwide { max-width: 1200px; margin-left: auto; margin-right: auto; }
.alignfull { width: 100%; }

/* ========================================
   PIZZA SHOP PRO - PREMIUM DESIGN
   ======================================== */

/* Import Premium Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

/* CSS Variables for Premium Design */
:root {
  --primary-red: #dc2626;
  --primary-orange: #ea580c;
  --accent-gold: #f59e0b;
  --accent-gold-light: #fbbf24;
  --dark-charcoal: #0f172a;
  --dark-charcoal-light: #1e293b;
  --light-gray: #f8fafc;
  --light-gray-alt: #f1f5f9;
  --text-dark: #0f172a;
  --text-medium: #475569;
  --text-light: #64748b;
  --text-muted: #94a3b8;
  --white: #ffffff;
  --success: #10b981;
  --warning: #f59e0b;
  --error: #ef4444;
  --info: #3b82f6;
  
  /* Enhanced Shadows */
  --shadow-xs: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-sm: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  --shadow-inner: inset 0 2px 4px 0 rgb(0 0 0 / 0.05);
  
  /* Enhanced Gradients */
  --gradient-primary: linear-gradient(135deg, #dc2626 0%, #ea580c 100%);
  --gradient-primary-hover: linear-gradient(135deg, #b91c1c 0%, #c2410c 100%);
  --gradient-hero: linear-gradient(135deg, rgba(220, 38, 38, 0.9) 0%, rgba(234, 88, 12, 0.8) 100%);
  --gradient-accent: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
  --gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  --gradient-light: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  
  /* Typography */
  --font-primary: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-heading: "Space Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-display: "Playfair Display", Georgia, serif;
  --font-mono: "SF Mono", Monaco, "Cascadia Code", "Roboto Mono", Consolas, "Courier New", monospace;
  
  /* Spacing Scale */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;
  
  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 300ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
  
  /* Z-Index Scale */
  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal-backdrop: 1040;
  --z-modal: 1050;
  --z-popover: 1060;
  --z-tooltip: 1070;
  --z-toast: 1080;
}

/* Reset and Base Styles */
* { 
  box-sizing: border-box; 
  margin: 0;
  padding: 0;
}

html { 
  scroll-behavior: smooth; 
  font-size: 16px;
}

body { 
  font-family: var(--font-primary); 
  line-height: 1.7; 
  color: var(--text-dark);
  background: var(--white);
  font-weight: 400;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

/* Premium Typography */
h1, h2, h3, h4, h5, h6 { 
  font-family: var(--font-heading); 
  font-weight: 700;
  margin: 0 0 var(--space-lg) 0;
  line-height: 1.2;
  color: var(--text-dark);
  letter-spacing: -0.025em;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
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); }
h5 { font-size: clamp(1.125rem, 2vw, 1.25rem); }
h6 { font-size: clamp(1rem, 1.5vw, 1.125rem); }

.display { 
  font-size: clamp(3rem, 6vw, 5rem); 
  font-weight: 700; 
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lead { 
  font-size: 1.375rem; 
  margin-bottom: 2.5rem; 
  color: var(--text-light);
  font-weight: 400;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Premium Layout */
.container { 
  max-width: 1280px; 
  margin: 0 auto; 
  padding: 0 2rem; 
}

.section { 
  padding: 6rem 0; 
}

.center { 
  text-align: center; 
}

/* Premium Buttons */
.btn { 
  display: inline-flex; 
  align-items: center; 
  justify-content: center;
  gap: 0.75rem;
  padding: 1.2rem 2.5rem; 
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  color: white; 
  text-decoration: none; 
  border-radius: 2rem; 
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left var(--transition-slow);
}

.btn:hover::before {
  left: 100%;
}

.btn:hover { 
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.6);
  background: linear-gradient(135deg, #f7931e 0%, #ff6b35 100%);
  text-decoration: none;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.btn:active {
  transform: translateY(0) scale(0.98);
  box-shadow: var(--shadow-md);
}

.btn:focus {
  outline: none;
  box-shadow: var(--shadow-md), 0 0 0 3px rgba(220, 38, 38, 0.2);
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: var(--shadow-sm);
}

.btn-lg { 
  padding: 1.25rem 2.5rem; 
  font-size: 1.125rem; 
  border-radius: 16px;
}

.btn-outline { 
  background: transparent; 
  color: var(--primary-red); 
  border: 2px solid var(--primary-red);
  box-shadow: none;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
}

.btn-outline:hover { 
  background: var(--gradient-primary); 
  color: var(--white);
  border-color: transparent;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
}

/* Header styles moved to custom.css and enhanced.css */

.site-logo {
  text-decoration: none;
  display: block;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-main {
  font-family: "Inter", sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #ff6b35 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 4px rgba(255, 107, 53, 0.3);
}

.logo-tagline {
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: white;
  letter-spacing: 0.1em;
  margin-top: 0.25rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.site-branding img {
  max-height: 60px;
  width: auto;
  transition: transform 0.3s ease;
}

.site-branding img:hover {
  transform: scale(1.05);
}

/* Navigation styles moved to custom.css and enhanced.css */

.search-toggle,
.cart-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  color: var(--text-dark);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}

.search-toggle:hover,
.cart-toggle:hover {
  background: rgba(0, 0, 0, 0.05);
  transform: scale(1.1);
}

.cart-toggle {
  position: relative;
}

.cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background: var(--primary-red);
  color: var(--white);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 4px;
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hamburger .line {
  width: 25px;
  height: 3px;
  background: var(--text-dark);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.mobile-menu-toggle.active .hamburger .line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .hamburger .line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active .hamburger .line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Announcement Bar */
.announcement-bar {
  background: var(--accent-gold);
  color: var(--dark-charcoal);
  padding: 0.75rem 0;
  font-size: 0.875rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(245, 158, 11, 0.2);
}

.announcement-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.announcement-text {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.announcement-close button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.announcement-close button:hover {
  background: rgba(0, 0, 0, 0.1);
}

/* Professional Hero Section */
.hero {
  position: relative;
  height: 100vh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: #1a1a1a;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.7) contrast(1.1);
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(255, 107, 53, 0.1) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.hero-text {
  max-width: 700px;
  margin: 0 auto;
  color: white;
}

.hero-title {
  margin-bottom: 2rem;
}

.title-main {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: clamp(4rem, 9vw, 7rem);
  font-weight: 900;
  line-height: 0.9;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #ff6b35 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
  letter-spacing: -0.02em;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.title-sub {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 600;
  letter-spacing: 0.15em;
  color: #2c3e50;
  text-shadow: 0 2px 4px rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  background: rgba(255, 255, 255, 0.9);
  padding: 0.5rem 1.5rem;
  border-radius: 2rem;
  display: inline-block;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 107, 53, 0.3);
}

.hero-description {
  font-size: 1.3rem;
  line-height: 1.7;
  margin-bottom: 3rem;
  color: #2c3e50;
  font-weight: 500;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  background: rgba(255, 255, 255, 0.95);
  padding: 2rem;
  border-radius: 1rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 107, 53, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hero-features {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 500;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
  background: rgba(255, 255, 255, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-item svg {
  color: #ffffff;
  opacity: 0.9;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.scroll-arrow {
  width: 50px;
  height: 50px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.scroll-arrow:hover {
  border-color: var(--primary-red);
  background: rgba(220, 38, 38, 0.2);
  transform: translateX(-50%) translateY(-5px);
}

.scroll-arrow svg {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
}

.scroll-arrow:hover svg {
  color: var(--primary-red);
}


/* Featured Pizzas Section */
.featured-section {
  padding: 8rem 0;
  background: var(--light-gray);
}

/* Deals Section */
.deals-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-top: 3px solid var(--primary);
}

.deals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.deal-card {
  background: var(--bg-white);
  border-radius: 1.5rem;
  padding: 2.5rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  border: 3px solid var(--border-light);
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
}

.deal-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  border-color: var(--primary);
}

.featured-deal {
  border-color: #ff6b35;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  color: white;
  transform: scale(1.05);
  box-shadow: 0 12px 40px rgba(255, 107, 53, 0.3);
}

.deal-badge {
  position: absolute;
  top: -15px;
  right: 20px;
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
  color: white;
  padding: 0.7rem 1.5rem;
  border-radius: 2rem;
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
  border: 2px solid white;
}

.deal-content {
  text-align: center;
}

.deal-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.featured-deal .deal-title {
  color: white;
}

.deal-description {
  color: var(--text-medium);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.featured-deal .deal-description {
  color: rgba(255, 255, 255, 0.9);
}

.deal-price {
  margin-bottom: 1.5rem;
}

.original-price {
  text-decoration: line-through;
  color: var(--text-light);
  font-size: 1rem;
  margin-right: 0.5rem;
}

.sale-price {
  font-size: 2.5rem;
  font-weight: 900;
  color: #ff6b35;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.featured-deal .sale-price {
  color: white;
}

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

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-dark);
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--text-medium);
  max-width: 600px;
  margin: 0 auto;
  font-weight: 400;
  line-height: 1.5;
}

.pizza-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
  margin-bottom: 4rem;
}

.pizza-card {
  background: white;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  border: 3px solid #f8f9fa;
}

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

.featured-pizza {
  border: 3px solid #ff6b35;
  position: relative;
  transform: scale(1.05);
  box-shadow: 0 15px 50px rgba(255, 107, 53, 0.3);
}

.pizza-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
  color: white;
  padding: 0.7rem 1.5rem;
  border-radius: 2rem;
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
  z-index: 2;
  border: 2px solid white;
}

.pizza-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.pizza-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.pizza-card:hover .pizza-image img {
  transform: scale(1.05);
}

.pizza-info {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
}

.pizza-name {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-dark);
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

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

.pizza-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.pizza-price {
  font-family: "Inter", sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: #ff6b35;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.pizza-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.stars {
  color: #fbbf24;
  font-size: 1rem;
}

.rating-text {
  font-size: 0.875rem;
  color: var(--text-light);
}

.pizza-btn {
  width: 100%;
  justify-content: center;
  gap: 0.5rem;
}

.section-footer {
  text-align: center;
}

/* Premium Cards */
.card-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); 
  gap: 3rem; 
  margin: 4rem 0; 
}

.card { 
  background: var(--white); 
  border-radius: 20px; 
  overflow: hidden; 
  box-shadow: var(--shadow-lg); 
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.card:hover { 
  transform: translateY(-12px) scale(1.02); 
  box-shadow: var(--shadow-xl);
}

.card:hover::before {
  opacity: 0.05;
}

.card-media { 
  position: relative; 
  overflow: hidden;
  height: 250px;
}

.card img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  transition: transform 0.4s ease;
}

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

.card-content { 
  padding: 2rem; 
  position: relative;
  z-index: 2;
}

.card-title { 
  font-size: 1.5rem; 
  margin-bottom: 1rem;
  font-weight: 600;
  color: var(--text-dark);
}

.card-desc { 
  color: var(--text-light); 
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.card-cta { 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
}

.price { 
  font-family: "Playfair Display", serif; 
  font-weight: 700; 
  font-size: 1.5rem; 
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Premium Footer */
.site-footer { 
  background: var(--dark-charcoal); 
  color: var(--white); 
  padding: 5rem 0 2rem; 
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(220, 38, 38, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(234, 88, 12, 0.1) 0%, transparent 50%);
  z-index: 1;
}

.footer-widgets { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
  gap: 3rem; 
  margin-bottom: 3rem; 
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.footer-widgets .widget-title { 
  color: var(--white); 
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.footer-widgets a { 
  color: rgba(255, 255, 255, 0.8); 
  text-decoration: none; 
  transition: color 0.3s ease;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.footer-widgets a:hover { 
  color: var(--accent-gold); 
}

.footer-bottom { 
  border-top: 1px solid rgba(255, 255, 255, 0.1); 
  padding-top: 2rem; 
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 2rem;
  padding-right: 2rem;
  text-align: center;
  position: relative;
  z-index: 2;
  color: rgba(255, 255, 255, 0.6);
}

/* Professional Mobile Responsive */
@media (max-width: 1024px) {
  .container { padding: 0 1.5rem; }
  .topbar-content, .header-content, .announcement-content { padding: 0 1.5rem; }
  .hero-content { padding: 0 1.5rem; }
  .footer-widgets { padding: 0 1.5rem; }
  .contact-info { gap: 1.5rem; }
}

@media (max-width: 768px) {
  .container { padding: 0 1rem; }
  .topbar-content, .header-content, .announcement-content { padding: 0 1rem; }
  .section { padding: 4rem 0; }
  
  /* Header Mobile */
  .contact-info {
    display: none;
  }
  
  .header-content {
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  /* Mobile navigation styles moved to custom.css and enhanced.css */
  
  /* Hero Mobile */
  .hero-section { 
    min-height: 600px; 
  }
  
  .title-main { 
    font-size: clamp(2.5rem, 8vw, 4rem); 
  }
  
  .hero-description { 
    font-size: 1.125rem; 
  }
  
  .hero-actions { 
    flex-direction: column; 
    align-items: center; 
    gap: 1rem;
  }
  
  
  /* Pizza Grid Mobile */
  .pizza-grid { 
    grid-template-columns: 1fr; 
    gap: 2rem;
  }
  
  .footer-widgets { 
    grid-template-columns: 1fr; 
    gap: 2rem;
  }
  
  .logo-main { 
    font-size: 1.75rem; 
  }
  
  .announcement-text span {
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .title-main { 
    font-size: 2.5rem; 
  }
  
  .hero-description { 
    font-size: 1rem; 
  }
  
  .pizza-info { 
    padding: 1.5rem; 
  }
  
  .btn { 
    padding: 0.875rem 1.5rem; 
  }
  
  .btn-lg { 
    padding: 1rem 2rem; 
  }
  
  .contact-info {
    gap: 1rem;
  }
  
}


