/**
 * Fixed Sections - Beautiful Custom Designs
 *
 * Premium styling for shortcode-based sections with:
 * - Animated backgrounds
 * - Floating food imagery
 * - Gradient overlays
 * - Modern typography effects
 * - Parallax scrolling
 * - CSS animations
 * - SVG decorations
 *
 * @package PizzaShopCustom
 */

/* ==========================================================================
   FULL-WIDTH BREAKOUT FIX - Override WordPress/Blocksy Containers
   ========================================================================== */

/* Force parent containers to allow overflow for full-width sections */
.entry-content:has(.pizza-hero-fixed),
.entry-content:has(.pizza-cta-fixed),
.entry-content:has(.pizza-testimonials-fixed),
.entry-content:has(.pizza-delivery-fixed),
.entry-content:has(.pizza-about-fixed),
.entry-content:has(.pizza-contact-fixed),
.ct-container:has(.pizza-hero-fixed),
.ct-container:has(.pizza-cta-fixed),
.ct-container:has(.pizza-testimonials-fixed),
.ct-container:has(.pizza-delivery-fixed),
.ct-container:has(.pizza-about-fixed),
.ct-container:has(.pizza-contact-fixed),
.wp-block-shortcode:has(.pizza-hero-fixed),
.wp-block-shortcode:has(.pizza-cta-fixed),
.wp-block-shortcode:has(.pizza-testimonials-fixed),
.wp-block-shortcode:has(.pizza-delivery-fixed),
.wp-block-shortcode:has(.pizza-about-fixed),
.wp-block-shortcode:has(.pizza-contact-fixed) {
  overflow: visible !important;
  max-width: none !important;
}

/* Shared full-width breakout styles for all fixed sections */
.pizza-hero-fixed,
.pizza-cta-fixed,
.pizza-testimonials-fixed,
.pizza-delivery-fixed,
.pizza-about-fixed,
.pizza-contact-fixed {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  position: relative !important;
  left: 0 !important;
  right: 0 !important;
  box-sizing: border-box !important;
}

/* Remove Gutenberg block spacing around shortcode blocks containing fixed sections */
.wp-block-shortcode:has(.pizza-hero-fixed),
.wp-block-shortcode:has(.pizza-cta-fixed),
.wp-block-shortcode:has(.pizza-testimonials-fixed),
.wp-block-shortcode:has(.pizza-delivery-fixed),
.wp-block-shortcode:has(.pizza-about-fixed),
.wp-block-shortcode:has(.pizza-contact-fixed) {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

/* Remove WordPress block gap spacing for fixed sections */
.entry-content > .wp-block-shortcode:has(.pizza-hero-fixed) + *,
.entry-content > .wp-block-shortcode:has(.pizza-cta-fixed) + *,
.entry-content > .wp-block-shortcode:has(.pizza-testimonials-fixed) + *,
.entry-content > .wp-block-shortcode:has(.pizza-delivery-fixed) + *,
.entry-content > .wp-block-shortcode:has(.pizza-about-fixed) + *,
.entry-content > .wp-block-shortcode:has(.pizza-contact-fixed) + * {
  margin-top: 0 !important;
}

/* ==========================================================================
   CSS VARIABLES - Extended Design System
   ========================================================================== */

:root {
  /* Brand Colors (from global.css) */
  --pizza-red: #ce3e27;
  --pizza-red-dark: #b33620;
  --pizza-red-light: #e85a45;
  --pizza-green: #4d7a42;
  --pizza-green-dark: #3d6335;
  --pizza-coal: #282421;
  --pizza-sand: #f2ecdf;
  --pizza-sand-dark: #e8e0cf;

  /* Gradients */
  --gradient-hero: linear-gradient(
    135deg,
    var(--pizza-sand) 0%,
    #fff9f0 50%,
    var(--pizza-sand-dark) 100%
  );
  --gradient-cta: linear-gradient(
    135deg,
    var(--pizza-red) 0%,
    var(--pizza-red-dark) 100%
  );
  --gradient-testimonials: linear-gradient(
    180deg,
    #fff 0%,
    var(--pizza-sand) 100%
  );
  --gradient-delivery: linear-gradient(
    135deg,
    #5a8f4d 0%,
    var(--pizza-green) 40%,
    var(--pizza-green-dark) 100%
  );
  --gradient-about: linear-gradient(
    135deg,
    var(--pizza-sand) 0%,
    #fff9f0 50%,
    var(--pizza-sand-dark) 100%
  );
  --gradient-contact: linear-gradient(
    135deg,
    var(--pizza-sand) 0%,
    #fff9f0 50%,
    var(--pizza-sand-dark) 100%
  );

  /* Shadows */
  --shadow-card: 0 10px 40px rgba(40, 36, 33, 0.1);
  --shadow-card-hover: 0 20px 60px rgba(40, 36, 33, 0.15);
  --shadow-button: 0 8px 30px rgba(206, 62, 39, 0.4);
  --shadow-button-hover: 0 12px 40px rgba(206, 62, 39, 0.5);

  /* Animation Timings */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out-expo: cubic-bezier(0.87, 0, 0.13, 1);
}

/* ==========================================================================
   KEYFRAME ANIMATIONS
   ========================================================================== */

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

@keyframes floatReverse {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(20px) rotate(-5deg);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

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

@keyframes shimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}

@keyframes rotateSlowly {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes scrollIndicator {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  50% {
    opacity: 0.5;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animation Utility Classes */
.animate-fade-in {
  animation: fadeIn 0.8s var(--ease-out-expo) forwards;
  opacity: 0;
}

.animate-slide-up {
  animation: slideUp 0.8s var(--ease-out-expo) forwards;
  opacity: 0;
}

.animate-bounce {
  animation: bounce 2s ease-in-out infinite;
}

.delay-1 {
  animation-delay: 0.1s;
}
.delay-2 {
  animation-delay: 0.2s;
}
.delay-3 {
  animation-delay: 0.3s;
}
.delay-4 {
  animation-delay: 0.4s;
}
.delay-5 {
  animation-delay: 0.5s;
}

/* ==========================================================================
   HERO SECTION - Fixed Design
   ========================================================================== */

.pizza-hero-fixed {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 6rem 2rem;
}

/* Hero Background */
.pizza-hero-fixed .hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.pizza-hero-fixed .hero-gradient-overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
}

.pizza-hero-fixed .hero-pattern {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ce3e27' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

/* Floating Ingredients */
.pizza-hero-fixed .floating-ingredients {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.pizza-hero-fixed .ingredient {
  position: absolute;
  opacity: 0.6;
}

.pizza-hero-fixed .ingredient img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pizza-hero-fixed .ingredient-tomato {
  width: 80px;
  height: 80px;
  top: 15%;
  left: 10%;
  animation: float 6s ease-in-out infinite;
}

.pizza-hero-fixed .ingredient-basil {
  width: 60px;
  height: 75px;
  top: 25%;
  right: 15%;
  animation: floatReverse 7s ease-in-out infinite;
  animation-delay: 1s;
}

.pizza-hero-fixed .ingredient-olive {
  width: 40px;
  height: 55px;
  bottom: 30%;
  left: 8%;
  animation: float 5s ease-in-out infinite;
  animation-delay: 2s;
}

.pizza-hero-fixed .ingredient-pepper {
  width: 35px;
  height: 85px;
  bottom: 20%;
  right: 10%;
  animation: floatReverse 8s ease-in-out infinite;
  animation-delay: 0.5s;
}

.pizza-hero-fixed .ingredient-mushroom {
  width: 60px;
  height: 60px;
  top: 60%;
  right: 25%;
  animation: float 6.5s ease-in-out infinite;
  animation-delay: 1.5s;
}

.pizza-hero-fixed .ingredient-pizza-reel {
  width: 140px;
  height: auto;
  bottom: 15%;
  left: 5%;
  animation: floatReverse 9s ease-in-out infinite;
  animation-delay: 0.5s;
  opacity: 0.85;
}

.pizza-hero-fixed .ingredient-pizza-reel img {
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
}

/* Hero Content */
.pizza-hero-fixed .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

/* Pizza Slice Decoration */
.pizza-hero-fixed .hero-pizza-decoration {
  position: absolute;
  top: -100px;
  right: -150px;
  width: 300px;
  height: 300px;
  opacity: 0.1;
  animation: rotateSlowly 60s linear infinite;
}

.pizza-hero-fixed .pizza-slice-svg,
.pizza-hero-fixed .pizza-slice-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Title Section */
.pizza-hero-fixed .hero-title-wrapper {
  margin-bottom: 2rem;
}

.pizza-hero-fixed .hero-subtitle {
  display: inline-block;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--pizza-red);
  margin-bottom: 1rem;
  padding: 0.5rem 1.5rem;
  background: rgba(206, 62, 39, 0.1);
  border-radius: 50px;
}

.pizza-hero-fixed .hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--pizza-coal);
  margin: 0 0 1.5rem;
}

.pizza-hero-fixed .title-line {
  display: block;
}

.pizza-hero-fixed .title-accent {
  color: var(--pizza-red);
  position: relative;
}

.pizza-hero-fixed .title-accent::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  right: 0;
  height: 8px;
  background: linear-gradient(90deg, var(--pizza-green) 0%, transparent 100%);
  border-radius: 4px;
  z-index: -1;
}

.pizza-hero-fixed .hero-tagline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 1.25rem;
  color: var(--pizza-coal);
  opacity: 0.8;
}

.pizza-hero-fixed .tagline-icon {
  font-size: 1.5rem;
}

.pizza-hero-fixed .tagline-icon-lucide {
  width: 24px;
  height: 24px;
  color: var(--pizza-red);
  stroke-width: 2;
}

.pizza-hero-fixed .hero-tagline p {
  margin: 0;
}

/* Feature Pills */
.pizza-hero-fixed .hero-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin: 2.5rem 0;
}

.pizza-hero-fixed .feature-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: white;
  border-radius: 50px;
  box-shadow: var(--shadow-card);
  transition: all 0.3s var(--ease-out-expo);
}

.pizza-hero-fixed .feature-pill:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
}

.pizza-hero-fixed .pill-icon {
  font-size: 1.25rem;
}

.pizza-hero-fixed .pill-icon-lucide {
  width: 20px;
  height: 20px;
  color: var(--pizza-green);
  stroke-width: 2;
}

.pizza-hero-fixed .pill-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--pizza-coal);
}

/* Hero Buttons */
.pizza-hero-fixed .hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
}

.pizza-hero-fixed .hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.3s var(--ease-out-expo);
}

.pizza-hero-fixed .hero-btn-primary {
  background: var(--pizza-red);
  color: white;
  box-shadow: var(--shadow-button);
}

.pizza-hero-fixed .hero-btn-primary:hover {
  background: var(--pizza-red-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-button-hover);
}

.pizza-hero-fixed .hero-btn-primary .btn-icon svg {
  transition: transform 0.3s ease;
}

.pizza-hero-fixed .hero-btn-primary:hover .btn-icon svg {
  transform: translateX(5px);
}

.pizza-hero-fixed .btn-icon-lucide {
  width: 20px;
  height: 20px;
  stroke-width: 2;
  transition: transform 0.3s ease;
}

.pizza-hero-fixed .hero-btn-primary:hover .btn-icon-lucide {
  transform: translateX(5px);
}

.pizza-hero-fixed .hero-btn-secondary {
  background: white;
  color: var(--pizza-coal);
  border: 2px solid var(--pizza-coal);
}

.pizza-hero-fixed .hero-btn-secondary:hover {
  background: var(--pizza-coal);
  color: white;
  transform: translateY(-3px);
}

/* Trust Indicators */
.pizza-hero-fixed .hero-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(40, 36, 33, 0.1);
}

.pizza-hero-fixed .trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--pizza-coal);
  opacity: 0.7;
}

/* Trust link — anchor that scrolls to delivery info */
a.trust-link,
a.trust-link:visited {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

a.trust-link:hover {
  opacity: 1 !important;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.pizza-hero-fixed .trust-stars {
  color: #f5a623;
}

.pizza-hero-fixed .trust-icon-lucide {
  width: 16px;
  height: 16px;
  stroke-width: 2;
}

.pizza-hero-fixed .trust-icon-lucide.trust-star {
  color: #f5a623;
  fill: #f5a623;
}

.pizza-hero-fixed .trust-divider {
  width: 1px;
  height: 20px;
  background: rgba(40, 36, 33, 0.2);
}

/* Scroll Indicator */
.pizza-hero-fixed .hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  /* Use viewport-based centering instead of parent-based to account for full-width breakout */
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: scrollIndicator 2s ease-in-out infinite;
  z-index: 10;
}

.pizza-hero-fixed .scroll-mouse {
  width: 24px;
  height: 36px;
  border: 2px solid var(--pizza-coal);
  border-radius: 12px;
  position: relative;
  opacity: 0.5;
}

.pizza-hero-fixed .scroll-wheel {
  width: 4px;
  height: 8px;
  background: var(--pizza-coal);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollIndicator 2s ease-in-out infinite;
}

.pizza-hero-fixed .scroll-text {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--pizza-coal);
  opacity: 0.5;
}

/* ==========================================================================
   CTA SECTION - Fixed Design
   ========================================================================== */

.pizza-cta-fixed {
  padding: 6rem 2rem;
  overflow: hidden;
}

/* CTA Background */
.pizza-cta-fixed .cta-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.pizza-cta-fixed .cta-gradient {
  position: absolute;
  inset: 0;
  background: var(--gradient-cta);
}

.pizza-cta-fixed .cta-pattern {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
}

/* Decorative Circles */
.pizza-cta-fixed .cta-decoration {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.pizza-cta-fixed .cta-circle-1 {
  width: 300px;
  height: 300px;
  top: -150px;
  right: -100px;
}

.pizza-cta-fixed .cta-circle-2 {
  width: 200px;
  height: 200px;
  bottom: -100px;
  left: -50px;
}

.pizza-cta-fixed .cta-circle-3 {
  width: 100px;
  height: 100px;
  top: 50%;
  left: 10%;
  opacity: 0.5;
}

/* CTA Content */
.pizza-cta-fixed .cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

/* Badge */
.pizza-cta-fixed .cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.pizza-cta-fixed .badge-icon {
  font-size: 1.25rem;
}

.pizza-cta-fixed .badge-icon-lucide {
  width: 20px;
  height: 20px;
  color: white;
  stroke-width: 2;
}

.pizza-cta-fixed .badge-text {
  font-size: 0.875rem;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* CTA Title */
.pizza-cta-fixed .cta-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.2;
  color: white;
  margin: 0 0 1.5rem;
}

.pizza-cta-fixed .cta-title .title-line {
  display: block;
}

.pizza-cta-fixed .cta-title .title-highlight {
  color: #f5d742;
}

.pizza-cta-fixed .cta-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 2rem;
}

.pizza-cta-fixed .cta-subtitle strong {
  color: white;
}

/* Offer Box */
.pizza-cta-fixed .cta-offer-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 2rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}

.pizza-cta-fixed .offer-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: white;
}

.pizza-cta-fixed .offer-icon {
  font-size: 1.5rem;
}

.pizza-cta-fixed .offer-icon-lucide {
  width: 24px;
  height: 24px;
  color: white;
  stroke-width: 2;
}

.pizza-cta-fixed .offer-text {
  font-weight: 600;
}

.pizza-cta-fixed .offer-divider {
  width: 1px;
  height: 30px;
  background: rgba(255, 255, 255, 0.3);
}

/* CTA Buttons */
.pizza-cta-fixed .cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.pizza-cta-fixed .cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.3s var(--ease-out-expo);
}

.pizza-cta-fixed .cta-btn-primary {
  background: white;
  color: var(--pizza-red);
}

.pizza-cta-fixed .cta-btn-primary:hover {
  background: var(--pizza-sand);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.pizza-cta-fixed .cta-btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.pizza-cta-fixed .cta-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
  transform: translateY(-3px);
}

.pizza-cta-fixed .btn-icon-lucide {
  width: 20px;
  height: 20px;
  stroke-width: 2;
}

.pizza-cta-fixed .cta-btn-primary .btn-icon-lucide {
  color: var(--pizza-red);
}

.pizza-cta-fixed .cta-btn-secondary .btn-icon-lucide {
  color: white;
}

/* Trust Footer */
.pizza-cta-fixed .cta-trust {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.pizza-cta-fixed .trust-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.pizza-cta-fixed .trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.pizza-cta-fixed .trust-icon-lucide {
  width: 16px;
  height: 16px;
  stroke-width: 2;
}

/* Pizza Decoration */
.pizza-cta-fixed .cta-pizza-decoration {
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  opacity: 0.3;
  transform: rotate(-15deg);
}

/* ==========================================================================
   TESTIMONIALS SECTION - Fixed Design
   ========================================================================== */

.pizza-testimonials-fixed {
  padding: 6rem 2rem;
  overflow: hidden;
}

/* Background */
.pizza-testimonials-fixed .testimonials-background {
  position: absolute;
  inset: 0;
  background: var(--gradient-testimonials);
  z-index: 0;
}

.pizza-testimonials-fixed .testimonials-pattern {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ce3e27' fill-opacity='0.02' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
}

/* Content */
.pizza-testimonials-fixed .testimonials-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.pizza-testimonials-fixed .testimonials-header {
  text-align: center;
  margin-bottom: 3rem;
}

.pizza-testimonials-fixed .section-badge {
  display: inline-flex;
  gap: 0.25rem;
  font-size: 1.5rem;
  color: #f5a623;
  margin-bottom: 1rem;
}

.pizza-testimonials-fixed .star-icon-lucide {
  width: 24px;
  height: 24px;
  color: #f5a623;
  stroke-width: 2;
}

.pizza-testimonials-fixed .star-icon-lucide.filled {
  fill: #f5a623;
}

.pizza-testimonials-fixed .testimonials-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--pizza-coal);
  margin: 0 0 0.75rem;
}

.pizza-testimonials-fixed .testimonials-subtitle {
  font-size: 1.125rem;
  color: var(--pizza-coal);
  opacity: 0.7;
  margin: 0;
}

/* Testimonials Grid */
.pizza-testimonials-fixed .testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

/* Testimonial Card */
.pizza-testimonials-fixed .testimonial-card {
  position: relative;
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: var(--shadow-card);
  transition: all 0.3s var(--ease-out-expo);
}

.pizza-testimonials-fixed .testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card-hover);
}

.pizza-testimonials-fixed .testimonial-card.featured {
  border: 2px solid var(--pizza-red);
}

.pizza-testimonials-fixed .card-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  padding: 0.25rem 0.75rem;
  background: var(--pizza-red);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 50px;
  text-transform: uppercase;
}

.pizza-testimonials-fixed .card-quote-mark {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  color: var(--pizza-red);
  opacity: 0.15;
}

.pizza-testimonials-fixed .card-quote-mark svg {
  width: 100%;
  height: 100%;
}

.pizza-testimonials-fixed .quote-icon-lucide {
  width: 100%;
  height: 100%;
  stroke-width: 1.5;
}

.pizza-testimonials-fixed .card-stars {
  display: flex;
  gap: 0.125rem;
  font-size: 1.25rem;
  color: #f5a623;
  margin-bottom: 1rem;
}

.pizza-testimonials-fixed .card-stars .star-icon-lucide {
  width: 18px;
  height: 18px;
}

.pizza-testimonials-fixed .card-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--pizza-coal);
  margin: 0 0 1.5rem;
}

.pizza-testimonials-fixed .card-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.pizza-testimonials-fixed .author-avatar {
  width: 48px;
  height: 48px;
  background: var(--pizza-red);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
}

.pizza-testimonials-fixed .author-info {
  display: flex;
  flex-direction: column;
}

.pizza-testimonials-fixed .author-name {
  font-weight: 700;
  color: var(--pizza-coal);
}

.pizza-testimonials-fixed .author-title {
  font-size: 0.875rem;
  color: var(--pizza-coal);
  opacity: 0.6;
}

/* Platforms */
.pizza-testimonials-fixed .testimonials-platforms {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.pizza-testimonials-fixed .platforms-label {
  font-size: 0.875rem;
  color: var(--pizza-coal);
  opacity: 0.6;
}

.pizza-testimonials-fixed .platforms-list {
  display: flex;
  gap: 1rem;
}

.pizza-testimonials-fixed .platform-link {
  padding: 0.5rem 1rem;
  background: white;
  color: var(--pizza-coal);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(40, 36, 33, 0.08);
  transition: all 0.3s ease;
}

.pizza-testimonials-fixed .platform-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}

.pizza-testimonials-fixed .platform-link:hover {
  background: var(--pizza-coal);
  color: white;
  transform: translateY(-2px);
}

.pizza-testimonials-fixed .platform-icon-lucide {
  width: 16px;
  height: 16px;
  stroke-width: 2;
}

/* ==========================================================================
   DELIVERY INFO SECTION - Fixed Design
   ========================================================================== */

.pizza-delivery-fixed {
  padding: 4rem 2rem;
  overflow: hidden;
}

/* Background */
.pizza-delivery-fixed .delivery-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.pizza-delivery-fixed .delivery-gradient {
  position: absolute;
  inset: 0;
  background: var(--gradient-delivery);
}

.pizza-delivery-fixed .delivery-pattern {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
}

/* Decorative Circles */
.pizza-delivery-fixed .delivery-decoration {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.pizza-delivery-fixed .delivery-circle-1 {
  width: 300px;
  height: 300px;
  top: -100px;
  right: -80px;
}

.pizza-delivery-fixed .delivery-circle-2 {
  width: 200px;
  height: 200px;
  bottom: -60px;
  left: -60px;
}

/* Content */
.pizza-delivery-fixed .delivery-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.pizza-delivery-fixed .delivery-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.pizza-delivery-fixed .section-icon {
  display: inline-block;
  font-size: 3rem;
  margin-bottom: 1rem;
}

.pizza-delivery-fixed .section-icon-lucide {
  display: block;
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  color: white;
  stroke-width: 1.5;
}

.pizza-delivery-fixed .delivery-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: white;
  margin: 0 0 0.5rem;
}

.pizza-delivery-fixed .delivery-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

/* Delivery Grid */
.pizza-delivery-fixed .delivery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

/* Delivery Card */
.pizza-delivery-fixed .delivery-card {
  background: white;
  padding: 1.5rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s var(--ease-out-expo);
}

.pizza-delivery-fixed .delivery-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.pizza-delivery-fixed .card-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 0.75rem;
  background: linear-gradient(135deg, var(--pizza-red), var(--pizza-red-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(206, 62, 39, 0.3);
}

.pizza-delivery-fixed .card-icon .lucide-icon {
  width: 28px;
  height: 28px;
  color: white;
  stroke-width: 2;
}

.pizza-delivery-fixed .delivery-card .card-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--pizza-coal);
  opacity: 0.6;
  margin: 0 0 0.375rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pizza-delivery-fixed .delivery-card .card-value {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--pizza-coal);
  margin: 0 0 0.25rem;
}

.pizza-delivery-fixed .delivery-card .card-note {
  font-size: 0.8125rem;
  color: var(--pizza-green);
  font-weight: 600;
  margin: 0;
}

/* Working Hours */
.pizza-delivery-fixed .delivery-hours {
  margin-bottom: 1.5rem;
}

.pizza-delivery-fixed .hours-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  background: white;
  padding: 1.5rem 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.pizza-delivery-fixed .hours-icon {
  font-size: 2.5rem;
}

.pizza-delivery-fixed .hours-icon-lucide {
  width: 40px;
  height: 40px;
  color: var(--pizza-green);
  stroke-width: 1.5;
}

.pizza-delivery-fixed .hours-content {
  text-align: left;
}

.pizza-delivery-fixed .hours-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--pizza-coal);
  margin: 0 0 0.75rem;
}

.pizza-delivery-fixed .hours-grid {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.pizza-delivery-fixed .hours-row {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}

.pizza-delivery-fixed .hours-day {
  color: var(--pizza-coal);
  opacity: 0.6;
  font-size: 0.875rem;
}

.pizza-delivery-fixed .hours-time {
  font-weight: 700;
  color: var(--pizza-green);
  font-size: 0.875rem;
}

/* Contact Buttons */
.pizza-delivery-fixed .delivery-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.pizza-delivery-fixed .contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  background: var(--pizza-red);
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9375rem;
  border-radius: 12px;
  transition: all 0.3s var(--ease-out-expo);
}

.pizza-delivery-fixed .contact-btn:hover {
  background: var(--pizza-red-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(206, 62, 39, 0.35);
}

.pizza-delivery-fixed .contact-btn-email {
  background: white;
  color: var(--pizza-green);
  border: 2px solid var(--pizza-green);
}

.pizza-delivery-fixed .contact-btn-email:hover {
  background: var(--pizza-green);
  color: white;
  box-shadow: 0 8px 25px rgba(77, 122, 66, 0.35);
}

.pizza-delivery-fixed .contact-icon {
  font-size: 1.25rem;
}

.pizza-delivery-fixed .contact-icon-lucide {
  width: 20px;
  height: 20px;
  stroke-width: 2;
}

/* ==========================================================================
   ABOUT SECTION - Fixed Design
   ========================================================================== */

.pizza-about-fixed {
  padding: 6rem 2rem;
  overflow: hidden;
}

/* About Background */
.pizza-about-fixed .about-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.pizza-about-fixed .about-gradient {
  position: absolute;
  inset: 0;
  background: var(--gradient-about);
}

.pizza-about-fixed .about-pattern {
  position: absolute;
  inset: 0;
  background-size: 300px;
  background-repeat: repeat;
  opacity: 0.12;
}

/* About Floating Ingredients */
.pizza-about-fixed .floating-ingredients {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.pizza-about-fixed .ingredient {
  position: absolute;
  opacity: 0.5;
}

.pizza-about-fixed .ingredient img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pizza-about-fixed .ingredient-tomato {
  width: 90px;
  height: 90px;
  top: 10%;
  left: 5%;
  animation: float 7s ease-in-out infinite;
}

.pizza-about-fixed .ingredient-basil {
  width: 70px;
  height: 85px;
  top: 20%;
  right: 8%;
  animation: floatReverse 8s ease-in-out infinite;
  animation-delay: 0.5s;
}

.pizza-about-fixed .ingredient-olive {
  width: 50px;
  height: 65px;
  bottom: 25%;
  right: 12%;
  animation: float 6s ease-in-out infinite;
  animation-delay: 1s;
}

/* About Content */
.pizza-about-fixed .about-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
}

/* About Header */
.pizza-about-fixed .about-header {
  text-align: center;
  margin-bottom: 3rem;
}

.pizza-about-fixed .about-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: rgba(206, 62, 39, 0.1);
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.pizza-about-fixed .badge-icon-lucide {
  width: 18px;
  height: 18px;
  color: var(--pizza-red);
  stroke-width: 2;
}

.pizza-about-fixed .badge-text {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--pizza-red);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pizza-about-fixed .about-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--pizza-coal);
  margin: 0 0 1rem;
}

.pizza-about-fixed .about-title .title-line {
  display: block;
}

.pizza-about-fixed .about-title .title-accent {
  color: var(--pizza-red);
}

.pizza-about-fixed .about-subtitle {
  font-size: 1.125rem;
  color: var(--pizza-coal);
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Story Section */
.pizza-about-fixed .about-story {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}

.pizza-about-fixed .story-image {
  position: relative;
}

.pizza-about-fixed .image-placeholder {
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--pizza-red), var(--pizza-red-dark));
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 60px rgba(206, 62, 39, 0.3);
}

.pizza-about-fixed .story-icon-lucide {
  width: 80px;
  height: 80px;
  color: white;
  stroke-width: 1.5;
}

.pizza-about-fixed .story-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: white;
  padding: 1.25rem 1.5rem;
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  text-align: center;
}

.pizza-about-fixed .badge-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--pizza-red);
  line-height: 1;
}

.pizza-about-fixed .badge-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--pizza-coal);
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 0.25rem;
}

.pizza-about-fixed .story-content {
  padding-left: 1rem;
}

.pizza-about-fixed .story-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--pizza-coal);
  margin: 0 0 1.5rem;
}

.pizza-about-fixed .story-text {
  font-size: 1rem;
  color: var(--pizza-coal);
  opacity: 0.8;
  line-height: 1.8;
  margin: 0 0 1rem;
}

.pizza-about-fixed .story-signature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(40, 36, 33, 0.1);
}

.pizza-about-fixed .signature-icon-lucide {
  width: 20px;
  height: 20px;
  color: var(--pizza-red);
  stroke-width: 2;
}

.pizza-about-fixed .story-signature span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--pizza-coal);
  font-style: italic;
}

/* Values Grid */
.pizza-about-fixed .about-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.pizza-about-fixed .value-card {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: all 0.3s var(--ease-out-expo);
}

.pizza-about-fixed .value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card-hover);
}

.pizza-about-fixed .value-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, var(--pizza-red), var(--pizza-red-dark));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(206, 62, 39, 0.25);
}

.pizza-about-fixed .value-icon-green {
  background: linear-gradient(
    135deg,
    var(--pizza-green),
    var(--pizza-green-dark)
  );
  box-shadow: 0 8px 24px rgba(77, 122, 66, 0.25);
}

.pizza-about-fixed .value-icon-coal {
  background: linear-gradient(135deg, var(--pizza-coal), #3a3533);
  box-shadow: 0 8px 24px rgba(40, 36, 33, 0.25);
}

.pizza-about-fixed .value-icon-red {
  background: linear-gradient(135deg, var(--pizza-red), var(--pizza-red-dark));
  box-shadow: 0 8px 24px rgba(206, 62, 39, 0.25);
}

.pizza-about-fixed .value-icon-lucide {
  width: 28px;
  height: 28px;
  color: white;
  stroke-width: 2;
}

.pizza-about-fixed .value-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--pizza-coal);
  margin: 0 0 0.5rem;
}

.pizza-about-fixed .value-text {
  font-size: 0.9rem;
  color: var(--pizza-coal);
  opacity: 0.7;
  line-height: 1.6;
  margin: 0;
}

/* Stats Bar */
.pizza-about-fixed .about-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
  background: white;
  border-radius: 20px;
  box-shadow: var(--shadow-card);
}

.pizza-about-fixed .stat-item {
  text-align: center;
  padding: 0 1.5rem;
}

.pizza-about-fixed .stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--pizza-red);
  line-height: 1.2;
}

.pizza-about-fixed .stat-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--pizza-coal);
  opacity: 0.6;
  margin-top: 0.25rem;
}

.pizza-about-fixed .stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(40, 36, 33, 0.15);
}

/* Focus Section - New for Romana concept */
.pizza-about-fixed .about-focus {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: var(--shadow-card);
  margin-bottom: 3rem;
  text-align: center;
}

.pizza-about-fixed .focus-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.pizza-about-fixed .focus-icon-lucide {
  width: 24px;
  height: 24px;
  color: var(--pizza-green);
  stroke-width: 2;
}

.pizza-about-fixed .focus-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--pizza-coal);
  margin: 0;
}

.pizza-about-fixed .focus-text {
  font-size: 1rem;
  color: var(--pizza-coal);
  opacity: 0.8;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}

/* Target Audience Section */
.pizza-about-fixed .about-audience {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: var(--shadow-card);
  margin-bottom: 3rem;
}

.pizza-about-fixed .audience-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--pizza-coal);
  margin: 0 0 1.5rem;
  text-align: center;
}

.pizza-about-fixed .audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.pizza-about-fixed .audience-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--pizza-sand);
  border-radius: 12px;
  transition: all 0.3s var(--ease-out-expo);
}

.pizza-about-fixed .audience-item:hover {
  transform: translateX(5px);
  background: var(--pizza-sand-dark);
}

.pizza-about-fixed .audience-icon-lucide {
  width: 24px;
  height: 24px;
  color: var(--pizza-red);
  stroke-width: 2;
  flex-shrink: 0;
}

.pizza-about-fixed .audience-item span {
  font-size: 0.95rem;
  color: var(--pizza-coal);
  line-height: 1.5;
}

/* About Tagline Footer */
.pizza-about-fixed .about-tagline {
  text-align: center;
  padding-top: 2rem;
}

.pizza-about-fixed .tagline-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--pizza-red);
  margin: 0;
}

/* ==========================================================================
   CONTACT SECTION - Fixed Design
   ========================================================================== */

.pizza-contact-fixed {
  padding: 6rem 2rem;
  overflow: hidden;
}

/* Contact Background */
.pizza-contact-fixed .contact-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.pizza-contact-fixed .contact-gradient {
  position: absolute;
  inset: 0;
  background: var(--gradient-contact);
}

.pizza-contact-fixed .contact-pattern {
  position: absolute;
  inset: 0;
  background-size: 300px;
  background-repeat: repeat;
  opacity: 0.08;
}

/* Decorative Circles */
.pizza-contact-fixed .contact-decoration {
  position: absolute;
  border-radius: 50%;
  background: rgba(206, 62, 39, 0.1);
}

.pizza-contact-fixed .contact-circle-1 {
  width: 400px;
  height: 400px;
  top: -200px;
  right: -150px;
}

.pizza-contact-fixed .contact-circle-2 {
  width: 250px;
  height: 250px;
  bottom: -100px;
  left: -100px;
}

/* Contact Floating Ingredients */
.pizza-contact-fixed .floating-ingredients {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.pizza-contact-fixed .ingredient {
  position: absolute;
  opacity: 0.3;
}

.pizza-contact-fixed .ingredient img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pizza-contact-fixed .ingredient-pepper {
  width: 40px;
  height: 100px;
  top: 15%;
  left: 8%;
  animation: float 8s ease-in-out infinite;
}

.pizza-contact-fixed .ingredient-mushroom {
  width: 70px;
  height: 70px;
  top: 25%;
  right: 10%;
  animation: floatReverse 7s ease-in-out infinite;
  animation-delay: 0.5s;
}

.pizza-contact-fixed .ingredient-pizza-slice {
  width: 100px;
  height: 100px;
  bottom: 20%;
  left: 5%;
  animation: float 9s ease-in-out infinite;
  animation-delay: 1s;
}

/* Contact Content */
.pizza-contact-fixed .contact-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
}

/* Contact Header */
.pizza-contact-fixed .contact-header {
  text-align: center;
  margin-bottom: 3rem;
}

.pizza-contact-fixed .contact-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: rgba(206, 62, 39, 0.2);
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.pizza-contact-fixed .badge-icon-lucide {
  width: 18px;
  height: 18px;
  color: var(--pizza-red);
  stroke-width: 2;
}

.pizza-contact-fixed .badge-text {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--pizza-red);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pizza-contact-fixed .contact-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--pizza-coal);
  margin: 0 0 1rem;
}

.pizza-contact-fixed .contact-title .title-line {
  display: block;
}

.pizza-contact-fixed .contact-title .title-highlight {
  color: var(--pizza-red);
}

.pizza-contact-fixed .contact-subtitle {
  font-size: 1.125rem;
  color: rgba(40, 36, 33, 0.7);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Contact Grid */
.pizza-contact-fixed .contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.pizza-contact-fixed .contact-card {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid rgba(40, 36, 33, 0.08);
  text-align: center;
  transition: all 0.3s var(--ease-out-expo);
  box-shadow: var(--shadow-card);
}

.pizza-contact-fixed .contact-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card-hover);
}

.pizza-contact-fixed .card-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, var(--pizza-red), var(--pizza-red-dark));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(206, 62, 39, 0.3);
}

.pizza-contact-fixed .card-icon-green {
  background: linear-gradient(
    135deg,
    var(--pizza-green),
    var(--pizza-green-dark)
  );
  box-shadow: 0 8px 24px rgba(77, 122, 66, 0.3);
}

.pizza-contact-fixed .card-icon-coal {
  background: linear-gradient(135deg, #555, #333);
  box-shadow: 0 8px 24px rgba(40, 36, 33, 0.3);
}

.pizza-contact-fixed .card-icon-red {
  background: linear-gradient(135deg, var(--pizza-red), var(--pizza-red-dark));
  box-shadow: 0 8px 24px rgba(206, 62, 39, 0.3);
}

.pizza-contact-fixed .card-icon-lucide {
  width: 24px;
  height: 24px;
  color: white;
  stroke-width: 2;
}

.pizza-contact-fixed .card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--pizza-coal);
  margin: 0 0 0.75rem;
}

.pizza-contact-fixed .card-text {
  font-size: 0.95rem;
  color: rgba(40, 36, 33, 0.7);
  line-height: 1.6;
  margin: 0 0 1rem;
}

.pizza-contact-fixed .card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--pizza-red);
  text-decoration: none;
  transition: color 0.3s ease;
}

.pizza-contact-fixed .card-link:hover {
  color: var(--pizza-red-light);
}

.pizza-contact-fixed .link-icon-lucide {
  width: 14px;
  height: 14px;
  stroke-width: 2;
}

.pizza-contact-fixed .phone-link,
.pizza-contact-fixed .email-link {
  color: var(--pizza-coal);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.pizza-contact-fixed .phone-link:hover,
.pizza-contact-fixed .email-link:hover {
  color: var(--pizza-red);
}

.pizza-contact-fixed .card-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  font-size: 0.8rem;
  color: rgba(40, 36, 33, 0.5);
  margin: 0.75rem 0 0;
}

.pizza-contact-fixed .note-icon-lucide {
  width: 14px;
  height: 14px;
  stroke-width: 2;
}

/* Social Links */
.pizza-contact-fixed .social-links {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.pizza-contact-fixed .social-link {
  width: 44px;
  height: 44px;
  background: var(--pizza-sand-dark);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.pizza-contact-fixed .social-link:hover {
  background: var(--pizza-red);
  transform: translateY(-3px);
}

.pizza-contact-fixed .social-icon-lucide {
  width: 20px;
  height: 20px;
  color: var(--pizza-coal);
  stroke-width: 2;
}

.pizza-contact-fixed .social-link:hover .social-icon-lucide {
  color: white;
}

/* Contact Actions */
.pizza-contact-fixed .contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.pizza-contact-fixed .action-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.3s var(--ease-out-expo);
}

.pizza-contact-fixed .action-btn-primary {
  background: var(--pizza-red);
  color: white;
  box-shadow: var(--shadow-button);
}

.pizza-contact-fixed .action-btn-primary:hover {
  background: var(--pizza-red-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-button-hover);
}

.pizza-contact-fixed .action-btn-secondary {
  background: white;
  color: var(--pizza-coal);
  border: 2px solid rgba(40, 36, 33, 0.15);
}

.pizza-contact-fixed .action-btn-secondary:hover {
  background: var(--pizza-sand-dark);
  border-color: rgba(40, 36, 33, 0.25);
  transform: translateY(-3px);
}

.pizza-contact-fixed .btn-icon-lucide {
  width: 20px;
  height: 20px;
  stroke-width: 2;
}

/* Location Preview */
.pizza-contact-fixed .contact-location {
  max-width: 700px;
  margin: 0 auto;
}

.pizza-contact-fixed .location-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  background: white;
  padding: 1.5rem 2rem;
  border-radius: 16px;
  border: 1px solid rgba(40, 36, 33, 0.08);
  box-shadow: var(--shadow-card);
}

.pizza-contact-fixed .location-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.pizza-contact-fixed .location-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(
    135deg,
    var(--pizza-green),
    var(--pizza-green-dark)
  );
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(77, 122, 66, 0.3);
}

.pizza-contact-fixed .location-icon-lucide {
  width: 22px;
  height: 22px;
  color: white;
  stroke-width: 2;
}

.pizza-contact-fixed .location-text {
  text-align: left;
}

.pizza-contact-fixed .location-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--pizza-coal);
  margin: 0 0 0.25rem;
}

.pizza-contact-fixed .location-description {
  font-size: 0.875rem;
  color: rgba(40, 36, 33, 0.7);
  margin: 0;
  line-height: 1.5;
}

.pizza-contact-fixed .location-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: white;
  color: var(--pizza-coal);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.pizza-contact-fixed .location-btn:hover {
  background: var(--pizza-sand-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(40, 36, 33, 0.15);
}

.pizza-contact-fixed .location-btn .btn-icon-lucide {
  width: 18px;
  height: 18px;
  color: var(--pizza-green);
}

/* ==========================================================================
   RESPONSIVE STYLES
   ========================================================================== */

@media (max-width: 768px) {
  /* Hero */
  .pizza-hero-fixed {
    min-height: auto;
    padding: 7rem 1.5rem 3rem; /* Increased top padding for header clearance */
  }

  .pizza-hero-fixed .hero-pizza-decoration {
    display: none;
  }

  .pizza-hero-fixed .ingredient {
    display: none;
  }

  .pizza-hero-fixed .hero-features {
    flex-direction: column;
    align-items: center;
  }

  .pizza-hero-fixed .hero-buttons {
    flex-direction: column;
  }

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

  .pizza-hero-fixed .hero-trust {
    flex-direction: column;
    gap: 1rem;
  }

  .pizza-hero-fixed .trust-divider {
    display: none;
  }

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

  /* CTA */
  .pizza-cta-fixed {
    padding: 4rem 1.5rem;
  }

  .pizza-cta-fixed .cta-offer-box {
    flex-direction: column;
    gap: 1rem;
  }

  .pizza-cta-fixed .offer-divider {
    display: none;
  }

  .pizza-cta-fixed .cta-buttons {
    flex-direction: column;
  }

  .pizza-cta-fixed .cta-btn {
    width: 100%;
    justify-content: center;
  }

  /* Testimonials */
  .pizza-testimonials-fixed {
    padding: 4rem 1.5rem;
  }

  /* Delivery */
  .pizza-delivery-fixed {
    padding: 4rem 1.5rem;
  }

  .pizza-delivery-fixed .hours-card {
    flex-direction: column;
    text-align: center;
  }

  .pizza-delivery-fixed .hours-content {
    text-align: center;
  }

  .pizza-delivery-fixed .hours-row {
    flex-direction: column;
    gap: 0.25rem;
  }

  .pizza-delivery-fixed .delivery-contact {
    flex-direction: column;
  }

  .pizza-delivery-fixed .contact-btn {
    width: 100%;
    justify-content: center;
  }

  /* About */
  .pizza-about-fixed {
    padding: 4rem 1.5rem;
  }

  .pizza-about-fixed .ingredient {
    display: none;
  }

  .pizza-about-fixed .about-story {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .pizza-about-fixed .story-image {
    max-width: 280px;
    margin: 0 auto;
  }

  .pizza-about-fixed .story-badge {
    bottom: -15px;
    right: -10px;
    padding: 1rem;
  }

  .pizza-about-fixed .badge-number {
    font-size: 1.5rem;
  }

  .pizza-about-fixed .story-content {
    padding-left: 0;
    text-align: center;
  }

  .pizza-about-fixed .story-title {
    font-size: 1.5rem;
  }

  .pizza-about-fixed .story-signature {
    justify-content: center;
  }

  .pizza-about-fixed .about-stats {
    gap: 1.5rem;
    padding: 1.5rem;
  }

  .pizza-about-fixed .stat-item {
    padding: 0 0.75rem;
  }

  .pizza-about-fixed .stat-number {
    font-size: 1.5rem;
  }

  .pizza-about-fixed .stat-divider {
    display: none;
  }

  /* Contact */
  .pizza-contact-fixed {
    padding: 4rem 1.5rem;
  }

  .pizza-contact-fixed .ingredient {
    display: none;
  }

  .pizza-contact-fixed .contact-decoration {
    display: none;
  }

  .pizza-contact-fixed .contact-actions {
    flex-direction: column;
  }

  .pizza-contact-fixed .action-btn {
    width: 100%;
    justify-content: center;
  }

  .pizza-contact-fixed .location-card {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }

  .pizza-contact-fixed .location-info {
    flex-direction: column;
  }

  .pizza-contact-fixed .location-text {
    text-align: center;
  }

  .pizza-contact-fixed .location-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  /* Extra top padding for small screens - header clearance */
  .pizza-hero-fixed {
    padding: 6.5rem 1rem 2.5rem;
  }

  .pizza-hero-fixed .hero-subtitle {
    font-size: 0.8rem;
    padding: 0.35rem 0.875rem;
    letter-spacing: 1.5px;
    margin-bottom: 0.75rem;
  }

  .pizza-hero-fixed .hero-title {
    font-size: clamp(2rem, 8vw, 2.5rem);
    margin-bottom: 1rem;
  }

  .pizza-hero-fixed .hero-title-wrapper {
    margin-bottom: 1.25rem;
  }

  .pizza-hero-fixed .feature-pill {
    padding: 0.5rem 1rem;
  }

  .pizza-hero-fixed .pill-text {
    font-size: 0.8rem;
  }
}

/* ==========================================================================
   HERO SLOGAN/TAGLINE SECTION
   ========================================================================== */

.pizza-hero-fixed .hero-slogan {
  margin-top: 2rem;
  text-align: center;
  animation: fadeIn 0.8s ease-out 1.4s both;
}

.pizza-hero-fixed .hero-slogan p {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--pizza-coal);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.9),
    rgba(255, 255, 255, 0.7)
  );
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(206, 62, 39, 0.15);
  border: 1px solid rgba(206, 62, 39, 0.2);
  margin: 0;
}

@media (max-width: 768px) {
  .pizza-hero-fixed .hero-slogan p {
    font-size: 1rem;
    padding: 0.6rem 1.25rem;
  }
}

/* ==========================================================================
   CTA TAGLINE SECTION
   ========================================================================== */

.pizza-cta-fixed .cta-tagline {
  margin-top: 2rem;
  text-align: center;
}

.pizza-cta-fixed .cta-tagline p {
  font-size: 1.125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.15);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  display: inline-block;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  margin: 0;
}

@media (max-width: 768px) {
  .pizza-cta-fixed .cta-tagline p {
    font-size: 1rem;
    padding: 0.6rem 1.25rem;
  }
}

/* ==========================================================================
   DELIVERY ZONES FOOTNOTE
   ========================================================================== */

.pizza-delivery-fixed .delivery-footnote {
  margin-top: 2rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
  border-radius: 16px;
  padding: 1.5rem 2rem;
  border: 1px solid rgba(77, 122, 66, 0.25);
  box-shadow: 0 4px 20px rgba(77, 122, 66, 0.1);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.pizza-delivery-fixed .footnote-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.pizza-delivery-fixed .footnote-icon-lucide {
  width: 20px;
  height: 20px;
  color: var(--pizza-red, #ce3e27);
  stroke-width: 2.5;
}

.pizza-delivery-fixed .footnote-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--pizza-coal, #282421);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.pizza-delivery-fixed .footnote-zones {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.pizza-delivery-fixed .zone-tag {
  display: inline-block;
  background: var(--pizza-green, #4d7a42);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  white-space: nowrap;
}

.pizza-delivery-fixed .footnote-note {
  text-align: center;
  font-size: 0.85rem;
  color: rgba(40, 36, 33, 0.6);
  margin: 0;
  font-style: italic;
}

@media (max-width: 768px) {
  .pizza-delivery-fixed .delivery-footnote {
    padding: 1.25rem 1.25rem;
    margin-top: 1.5rem;
  }

  .pizza-delivery-fixed .zone-tag {
    font-size: 0.8rem;
    padding: 0.3rem 0.7rem;
  }
}

/* ==========================================================================
   DELIVERY TAGLINE SECTION
   ========================================================================== */

.pizza-delivery-fixed .delivery-tagline {
  margin-top: 2rem;
  text-align: center;
}

.pizza-delivery-fixed .delivery-tagline p {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--pizza-coal);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.9),
    rgba(255, 255, 255, 0.7)
  );
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(77, 122, 66, 0.15);
  border: 1px solid rgba(77, 122, 66, 0.2);
  margin: 0;
}

@media (max-width: 768px) {
  .pizza-delivery-fixed .delivery-tagline p {
    font-size: 1rem;
    padding: 0.6rem 1.25rem;
  }
}

/* ==========================================================================
   DELIVERY HOURS - CLOSED STATE & NOTES
   ========================================================================== */

.pizza-delivery-fixed .hours-closed .hours-time {
  color: var(--pizza-red);
  font-weight: 600;
}

.pizza-delivery-fixed .hours-closed .hours-day {
  color: rgba(40, 36, 33, 0.6);
}

.pizza-delivery-fixed .hours-note {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(40, 36, 33, 0.1);
  font-size: 0.9rem;
  color: rgba(40, 36, 33, 0.7);
  font-style: italic;
  text-align: center;
}

/* ==========================================================================
   MENU GRID - ADAPTIVE COLUMN LAYOUT FOR ROMANA CATEGORIES
   Auto-fits to the number of items (4 or 5 columns on desktop)
   ========================================================================== */

.menu-grid-5-items {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)) !important;
  gap: 1.5rem !important;
}

/* Featured card styling for main product (Pizza Romana) */
.menu-card-featured {
  position: relative;
}

.menu-card-featured::before {
  content: "★ СПЕЦИАЛИТЕТ";
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--pizza-red);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  z-index: 10;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.menu-card-featured .pizza-shop-menu-card,
.pizza-shop-menu-card.menu-card-featured {
  border: 2px solid var(--pizza-red);
  box-shadow: 0 8px 25px rgba(206, 62, 39, 0.2);
}

/* Tablet: 3+2 layout */
@media (max-width: 1200px) {
  .menu-grid-5-items {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

/* Mobile: 2 columns then 1 */
@media (max-width: 768px) {
  .menu-grid-5-items {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1rem !important;
  }
}

@media (max-width: 480px) {
  .menu-grid-5-items {
    grid-template-columns: 1fr !important;
  }

  .menu-card-featured::before {
    font-size: 0.65rem;
    padding: 0.25rem 0.6rem;
  }
}

/* ==========================================================================
   ABOUT PAGE - NEW SECTIONS FOR ROMANA CONCEPT
   ========================================================================== */

/* Focus Section */
.pizza-about-fixed .about-focus {
  background: linear-gradient(
    135deg,
    rgba(77, 122, 66, 0.15),
    rgba(77, 122, 66, 0.08)
  );
  border-radius: 20px;
  padding: 2.5rem;
  margin-top: 2rem;
  border: 1px solid rgba(77, 122, 66, 0.2);
  text-align: center;
  backdrop-filter: blur(5px);
}

.pizza-about-fixed .focus-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.pizza-about-fixed .focus-icon-lucide {
  width: 28px;
  height: 28px;
  color: var(--pizza-green);
}

.pizza-about-fixed .focus-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--pizza-green);
  margin: 0;
}

.pizza-about-fixed .focus-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--pizza-coal);
  margin: 0 auto;
  max-width: 700px;
  text-align: center;
}

/* Target Audience Section */
.pizza-about-fixed .about-audience {
  margin-top: 3rem;
  background: linear-gradient(
    135deg,
    rgba(206, 62, 39, 0.08),
    rgba(206, 62, 39, 0.03)
  );
  border-radius: 24px;
  padding: 2.5rem;
  border: 1px solid rgba(206, 62, 39, 0.12);
  position: relative;
  overflow: hidden;
}

.pizza-about-fixed .about-audience::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: radial-gradient(
    circle,
    rgba(206, 62, 39, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

.pizza-about-fixed .about-audience::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 100px;
  height: 100px;
  background: radial-gradient(
    circle,
    rgba(77, 122, 66, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

.pizza-about-fixed .audience-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--pizza-coal);
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
}

.pizza-about-fixed .audience-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--pizza-red), var(--pizza-green));
  margin: 0.75rem auto 0;
  border-radius: 2px;
}

.pizza-about-fixed .audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  position: relative;
  z-index: 1;
}

.pizza-about-fixed .audience-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.95);
  padding: 1.25rem 1.5rem;
  border-radius: 16px;
  border: 1px solid rgba(40, 36, 33, 0.06);
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.pizza-about-fixed .audience-item:hover {
  background: white;
  box-shadow: 0 8px 25px rgba(206, 62, 39, 0.12);
  transform: translateY(-4px);
  border-color: rgba(206, 62, 39, 0.2);
}

.pizza-about-fixed .audience-icon-lucide {
  width: 28px;
  height: 28px;
  min-width: 28px;
  padding: 6px;
  background: linear-gradient(135deg, var(--pizza-red), rgba(206, 62, 39, 0.8));
  color: white;
  border-radius: 10px;
  margin-top: 0;
}

.pizza-about-fixed .audience-item:nth-child(2) .audience-icon-lucide {
  background: linear-gradient(
    135deg,
    var(--pizza-green),
    rgba(77, 122, 66, 0.8)
  );
}

.pizza-about-fixed .audience-item:nth-child(3) .audience-icon-lucide {
  background: linear-gradient(135deg, var(--pizza-coal), rgba(40, 36, 33, 0.8));
}

.pizza-about-fixed .audience-item:nth-child(4) .audience-icon-lucide {
  background: linear-gradient(135deg, #e07a5f, #d9725c);
}

.pizza-about-fixed .audience-item span {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--pizza-coal);
  font-weight: 500;
}

/* About Tagline Footer */
.pizza-about-fixed .about-tagline {
  margin-top: 2.5rem;
  text-align: center;
}

.pizza-about-fixed .tagline-text {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--pizza-coal);
  background: linear-gradient(
    135deg,
    rgba(206, 62, 39, 0.1),
    rgba(206, 62, 39, 0.05)
  );
  padding: 1rem 2rem;
  border-radius: 50px;
  display: inline-block;
  border: 1px solid rgba(206, 62, 39, 0.2);
  margin: 0;
}

/* Mobile responsive for About new sections */
@media (max-width: 768px) {
  .pizza-about-fixed .about-focus {
    padding: 1.5rem;
  }

  .pizza-about-fixed .focus-text {
    font-size: 1rem;
  }

  .pizza-about-fixed .audience-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .pizza-about-fixed .audience-title {
    font-size: 1.15rem;
  }

  .pizza-about-fixed .tagline-text {
    font-size: 1.1rem;
    padding: 0.85rem 1.5rem;
  }
}

/* ==========================================================================
   NEW IMAGES - PIZZA REEL & FOCACCIA SANDWICH
   ========================================================================== */

/* About Section - Story Pizza Reel Image */
.pizza-about-fixed .story-image-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 20px;
  background: linear-gradient(
    135deg,
    rgba(206, 62, 39, 0.05),
    rgba(242, 236, 223, 0.8)
  );
}

.pizza-about-fixed .story-pizza-slice {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  animation: gentleFloat 4s ease-in-out infinite;
  filter: drop-shadow(0 10px 30px rgba(206, 62, 39, 0.2));
}

/* Floating Focaccia Sandwich Ingredient */
.pizza-about-fixed .ingredient-focaccia {
  position: absolute;
  right: 5%;
  bottom: 15%;
  width: 140px;
  height: 140px;
  z-index: 5;
  animation: floatBounce 5s ease-in-out infinite;
  animation-delay: 1.5s;
}

.pizza-about-fixed .ingredient-focaccia img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 25px rgba(40, 36, 33, 0.25));
  transition: transform 0.4s ease;
}

.pizza-about-fixed .ingredient-focaccia:hover img {
  transform: scale(1.1) rotate(5deg);
}

/* CTA Section - Pizza Reel Decoration */
.pizza-cta-fixed .cta-pizza-decoration {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 250px;
  height: auto;
  opacity: 0.25;
  pointer-events: none;
  z-index: 1;
}

.pizza-cta-fixed .cta-pizza-reel-img {
  width: 100%;
  height: auto;
  animation: gentleRotate 20s linear infinite;
  filter: drop-shadow(0 10px 30px rgba(255, 255, 255, 0.2));
}

/* Animations */
@keyframes gentleFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(2deg);
  }
}

@keyframes floatBounce {
  0%,
  100% {
    transform: translateY(0) rotate(-3deg);
  }
  25% {
    transform: translateY(-12px) rotate(0deg);
  }
  50% {
    transform: translateY(-5px) rotate(3deg);
  }
  75% {
    transform: translateY(-15px) rotate(0deg);
  }
}

@keyframes gentleRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Responsive adjustments for new images */
@media (max-width: 1024px) {
  .pizza-about-fixed .ingredient-focaccia {
    width: 110px;
    height: 110px;
    right: 3%;
    bottom: 10%;
  }

  .pizza-cta-fixed .cta-pizza-decoration {
    width: 180px;
    bottom: -20px;
    right: -20px;
    opacity: 0.2;
  }
}

@media (max-width: 768px) {
  .pizza-about-fixed .story-image-container {
    min-height: 200px;
    border-radius: 16px;
  }

  .pizza-about-fixed .ingredient-focaccia {
    width: 90px;
    height: 90px;
    right: 2%;
    bottom: 8%;
  }

  .pizza-cta-fixed .cta-pizza-decoration {
    width: 140px;
    bottom: -15px;
    right: -15px;
    opacity: 0.15;
  }
}

@media (max-width: 480px) {
  .pizza-about-fixed .ingredient-focaccia {
    width: 70px;
    height: 70px;
    right: 0;
    bottom: 5%;
  }

  .pizza-cta-fixed .cta-pizza-decoration {
    width: 100px;
    bottom: -10px;
    right: -10px;
    opacity: 0.12;
  }
}

/* ==========================================================================
   HERO SECTION V2 - Pizza Showcase Design (getpizzapro.com inspired)
   ========================================================================== */

/* Full-width breakout for hero v2 */
.entry-content:has(.pizza-hero-v2),
.ct-container:has(.pizza-hero-v2),
.wp-block-shortcode:has(.pizza-hero-v2) {
  overflow: visible !important;
  max-width: none !important;
}

.pizza-hero-v2 {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  position: relative !important;
  left: 0 !important;
  right: 0 !important;
  box-sizing: border-box !important;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 6rem 2rem;
}

.wp-block-shortcode:has(.pizza-hero-v2) {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.entry-content > .wp-block-shortcode:has(.pizza-hero-v2) + * {
  margin-top: 0 !important;
}

/* Hero V2 Background */
.pizza-hero-v2 .hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.pizza-hero-v2 .hero-gradient-overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
}

.pizza-hero-v2 .hero-pattern {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ce3e27' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

/* Hero V2 Content */
.pizza-hero-v2 .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

/* Title Section */
.pizza-hero-v2 .hero-title-wrapper {
  margin-bottom: 2rem;
}

.pizza-hero-v2 .hero-subtitle {
  display: inline-block;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--pizza-red);
  margin-bottom: 1rem;
  padding: 0.5rem 1.5rem;
  background: rgba(206, 62, 39, 0.1);
  border-radius: 50px;
}

.pizza-hero-v2 .hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--pizza-coal);
  margin: 0 0 1.5rem;
}

.pizza-hero-v2 .title-line {
  display: block;
}

/* V2: No green underline - just the red accent color */
.pizza-hero-v2 .title-accent {
  color: var(--pizza-red);
}

.pizza-hero-v2 .hero-tagline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 1.25rem;
  color: var(--pizza-coal);
  opacity: 0.8;
}

.pizza-hero-v2 .tagline-icon-lucide {
  width: 24px;
  height: 24px;
  color: var(--pizza-red);
  stroke-width: 2;
}

.pizza-hero-v2 .hero-tagline p {
  margin: 0;
}

/* ==========================================================================
   PIZZA SHOWCASE - 3 Pizza Images with Qualities
   ========================================================================== */

.pizza-hero-v2 .hero-pizza-showcase {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 1.5rem;
  margin: 3rem 0;
  padding: 0 1rem;
}

.pizza-hero-v2 .pizza-showcase-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  flex: 0 0 auto;
}

.pizza-hero-v2 .pizza-image-wrapper {
  position: relative;
  width: 200px;
  height: 200px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(40, 36, 33, 0.2);
  transition: all 0.4s var(--ease-out-expo);
  background: #000;
}

.pizza-hero-v2 .pizza-showcase-item:hover .pizza-image-wrapper {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 60px rgba(40, 36, 33, 0.3);
}

/* Center pizza is larger */
.pizza-hero-v2 .pizza-showcase-center .pizza-image-wrapper {
  width: 280px;
  height: 280px;
}

.pizza-hero-v2 .pizza-showcase-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease-out-expo);
}

.pizza-hero-v2 .pizza-showcase-item:hover .pizza-showcase-img {
  transform: scale(1.1);
}

/* Quality Badges Below Each Pizza */
.pizza-hero-v2 .pizza-quality {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  background: white;
  border-radius: 50px;
  box-shadow: var(--shadow-card);
  transition: all 0.3s var(--ease-out-expo);
}

.pizza-hero-v2 .pizza-showcase-item:hover .pizza-quality {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
}

.pizza-hero-v2 .quality-icon {
  width: 18px;
  height: 18px;
  color: var(--pizza-green);
  stroke-width: 2;
}

.pizza-hero-v2 .quality-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--pizza-coal);
  white-space: nowrap;
}

/* Hero V2 Buttons */
.pizza-hero-v2 .hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
}

.pizza-hero-v2 .hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.3s var(--ease-out-expo);
}

.pizza-hero-v2 .hero-btn-primary {
  background: var(--pizza-red);
  color: white;
  box-shadow: var(--shadow-button);
}

.pizza-hero-v2 .hero-btn-primary:hover {
  background: var(--pizza-red-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-button-hover);
}

.pizza-hero-v2 .btn-icon-lucide {
  width: 20px;
  height: 20px;
  stroke-width: 2;
  transition: transform 0.3s ease;
}

.pizza-hero-v2 .hero-btn-primary:hover .btn-icon-lucide {
  transform: translateX(5px);
}

.pizza-hero-v2 .hero-btn-secondary {
  background: white;
  color: var(--pizza-coal);
  border: 2px solid var(--pizza-coal);
}

.pizza-hero-v2 .hero-btn-secondary:hover {
  background: var(--pizza-coal);
  color: white;
  transform: translateY(-3px);
}

/* Trust Indicators */
.pizza-hero-v2 .hero-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(40, 36, 33, 0.1);
}

.pizza-hero-v2 .trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--pizza-coal);
  opacity: 0.7;
}

.pizza-hero-v2 .trust-icon-lucide {
  width: 16px;
  height: 16px;
  stroke-width: 2;
}

.pizza-hero-v2 .trust-icon-lucide.trust-star {
  color: #f5a623;
  fill: #f5a623;
}

.pizza-hero-v2 .trust-divider {
  width: 1px;
  height: 20px;
  background: rgba(40, 36, 33, 0.2);
}

/* Hero Slogan */
.pizza-hero-v2 .hero-slogan {
  margin-top: 1.5rem;
}

.pizza-hero-v2 .hero-slogan p {
  display: inline-block;
  font-size: 1rem;
  font-weight: 500;
  color: var(--pizza-coal);
  padding: 0.75rem 1.5rem;
  background: white;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(40, 36, 33, 0.08);
  margin: 0;
}

/* Scroll Indicator */
.pizza-hero-v2 .hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: scrollIndicator 2s ease-in-out infinite;
  z-index: 10;
}

.pizza-hero-v2 .scroll-mouse {
  width: 24px;
  height: 36px;
  border: 2px solid var(--pizza-coal);
  border-radius: 12px;
  position: relative;
  opacity: 0.5;
}

.pizza-hero-v2 .scroll-wheel {
  width: 4px;
  height: 8px;
  background: var(--pizza-coal);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollIndicator 2s ease-in-out infinite;
}

.pizza-hero-v2 .scroll-text {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--pizza-coal);
  opacity: 0.5;
}

/* ==========================================================================
   HERO V2 RESPONSIVE STYLES
   ========================================================================== */

@media (max-width: 1024px) {
  .pizza-hero-v2 .hero-pizza-showcase {
    gap: 1rem;
  }

  .pizza-hero-v2 .pizza-image-wrapper {
    width: 180px;
    height: 180px;
  }

  .pizza-hero-v2 .pizza-showcase-center .pizza-image-wrapper {
    width: 240px;
    height: 240px;
  }
}

@media (max-width: 768px) {
  .pizza-hero-v2 {
    padding: 4rem 1.5rem;
    min-height: auto;
  }

  .pizza-hero-v2 .hero-pizza-showcase {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .pizza-hero-v2 .pizza-image-wrapper {
    width: 220px;
    height: 220px;
  }

  .pizza-hero-v2 .pizza-showcase-center .pizza-image-wrapper {
    width: 260px;
    height: 260px;
  }

  .pizza-hero-v2 .pizza-quality {
    padding: 0.5rem 0.8rem;
  }

  .pizza-hero-v2 .quality-text {
    font-size: 0.8rem;
  }

  .pizza-hero-v2 .hero-trust {
    flex-direction: column;
    gap: 0.75rem;
  }

  .pizza-hero-v2 .trust-divider {
    display: none;
  }

  .pizza-hero-v2 .hero-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }

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

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

@media (max-width: 480px) {
  .pizza-hero-v2 {
    padding: 3rem 1rem;
  }

  .pizza-hero-v2 .hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .pizza-hero-v2 .hero-subtitle {
    font-size: 0.85rem;
    padding: 0.4rem 1rem;
    letter-spacing: 2px;
  }

  .pizza-hero-v2 .hero-tagline {
    font-size: 1rem;
    flex-direction: column;
    gap: 0.5rem;
  }

  .pizza-hero-v2 .pizza-image-wrapper {
    width: 180px;
    height: 180px;
  }

  .pizza-hero-v2 .pizza-showcase-center .pizza-image-wrapper {
    width: 220px;
    height: 220px;
  }

  .pizza-hero-v2 .hero-slogan p {
    font-size: 0.9rem;
    padding: 0.6rem 1.2rem;
  }
}

/* ==========================================================================
   HERO SECTION V3 - Compact with Large Pizza Images
   ========================================================================== */

/* Full-width breakout for hero v3 */
.entry-content:has(.pizza-hero-v3),
.ct-container:has(.pizza-hero-v3),
.wp-block-shortcode:has(.pizza-hero-v3) {
  overflow: visible !important;
  max-width: none !important;
}

.pizza-hero-v3 {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  position: relative !important;
  left: 0 !important;
  right: 0 !important;
  box-sizing: border-box !important;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* Compact padding - reduced from v2 */
  padding: 2rem 2rem 3rem;
}

.wp-block-shortcode:has(.pizza-hero-v3) {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.entry-content > .wp-block-shortcode:has(.pizza-hero-v3) + * {
  margin-top: 0 !important;
}

/* Hero V3 Background */
.pizza-hero-v3 .hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.pizza-hero-v3 .hero-gradient-overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
}

.pizza-hero-v3 .hero-pattern {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ce3e27' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

/* Floating Ingredients V3 */
.pizza-hero-v3 .floating-ingredients {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.pizza-hero-v3 .ingredient {
  position: absolute;
  opacity: 0.5;
}

.pizza-hero-v3 .ingredient img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pizza-hero-v3 .ingredient-tomato {
  width: 70px;
  height: 70px;
  top: 12%;
  left: 8%;
  animation: float 6s ease-in-out infinite;
}

.pizza-hero-v3 .ingredient-basil {
  width: 55px;
  height: 70px;
  top: 20%;
  right: 12%;
  animation: floatReverse 7s ease-in-out infinite;
  animation-delay: 1s;
}

.pizza-hero-v3 .ingredient-olive {
  width: 35px;
  height: 50px;
  bottom: 25%;
  left: 6%;
  animation: float 5s ease-in-out infinite;
  animation-delay: 2s;
}

.pizza-hero-v3 .ingredient-pepper {
  width: 30px;
  height: 75px;
  bottom: 18%;
  right: 8%;
  animation: floatReverse 8s ease-in-out infinite;
  animation-delay: 0.5s;
}

.pizza-hero-v3 .ingredient-mushroom {
  width: 50px;
  height: 50px;
  top: 55%;
  right: 20%;
  animation: float 6.5s ease-in-out infinite;
  animation-delay: 1.5s;
}

/* Hero V3 Content - Full width */
.pizza-hero-v3 .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

/* Title Section - Compact spacing */
.pizza-hero-v3 .hero-title-wrapper {
  margin-bottom: 1.25rem;
  padding-top: 4rem; /* Space from navbar */
}

.pizza-hero-v3 .hero-subtitle {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--pizza-red);
  margin-bottom: 0.5rem;
  padding: 0.4rem 1.25rem;
  background: rgba(206, 62, 39, 0.1);
  border-radius: 50px;
}

.pizza-hero-v3 .hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--pizza-coal);
  margin: 0 0 0.75rem;
}

.pizza-hero-v3 .title-line {
  display: block;
}

.pizza-hero-v3 .title-accent {
  color: var(--pizza-red);
}

.pizza-hero-v3 .hero-tagline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1rem;
  color: var(--pizza-coal);
  opacity: 0.8;
}

.pizza-hero-v3 .tagline-icon-lucide {
  width: 20px;
  height: 20px;
  color: var(--pizza-red);
  stroke-width: 2;
}

.pizza-hero-v3 .hero-tagline p {
  margin: 0;
}

/* ==========================================================================
   PIZZA SHOWCASE V3 - Large Images Spread Across Width
   ========================================================================== */

.pizza-hero-v3 .hero-pizza-showcase {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 2rem;
  margin: 2.5rem 0 1.5rem; /* More space above images (after tagline) */
  padding: 0;
  width: 100%;
}

.pizza-hero-v3 .pizza-showcase-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem; /* More space between image and quality badge */
  flex: 1;
  max-width: 320px;
}

/* Large pizza images - no zoom effect */
.pizza-hero-v3 .pizza-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(40, 36, 33, 0.25);
  background: #000;
}

/* Center pizza slightly larger */
.pizza-hero-v3 .pizza-showcase-center .pizza-image-wrapper {
  transform: scale(1.1);
  z-index: 2;
}

/* Extra gap for center pizza quality badge (accounts for scaled image) */
.pizza-hero-v3 .pizza-showcase-center {
  gap: 1.75rem;
}

.pizza-hero-v3 .pizza-showcase-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* No zoom/scale transitions */
}

/* Subtle hover - just shadow, no zoom */
.pizza-hero-v3 .pizza-showcase-item:hover .pizza-image-wrapper {
  box-shadow: 0 20px 60px rgba(40, 36, 33, 0.35);
}

/* Quality Badges - Compact */
.pizza-hero-v3 .pizza-quality {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.9rem;
  background: white;
  border-radius: 50px;
  box-shadow: var(--shadow-card);
}

.pizza-hero-v3 .quality-icon {
  width: 16px;
  height: 16px;
  color: var(--pizza-green);
  stroke-width: 2;
}

.pizza-hero-v3 .quality-text {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--pizza-coal);
  white-space: nowrap;
}

/* Hero V3 Buttons - Compact */
.pizza-hero-v3 .hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin: 2rem 0 1.25rem; /* More space above buttons (after quality badges) */
}

.pizza-hero-v3 .hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.3s var(--ease-out-expo);
}

.pizza-hero-v3 .hero-btn-primary {
  background: var(--pizza-red);
  color: white;
  box-shadow: var(--shadow-button);
}

.pizza-hero-v3 .hero-btn-primary:hover {
  background: var(--pizza-red-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-button-hover);
}

.pizza-hero-v3 .btn-icon-lucide {
  width: 18px;
  height: 18px;
  stroke-width: 2;
  transition: transform 0.3s ease;
}

.pizza-hero-v3 .hero-btn-primary:hover .btn-icon-lucide {
  transform: translateX(3px);
}

.pizza-hero-v3 .hero-btn-secondary {
  background: white;
  color: var(--pizza-coal);
  border: 2px solid var(--pizza-coal);
}

.pizza-hero-v3 .hero-btn-secondary:hover {
  background: var(--pizza-coal);
  color: white;
  transform: translateY(-2px);
}

/* Trust Indicators - Compact inline */
.pizza-hero-v3 .hero-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(40, 36, 33, 0.1);
}

.pizza-hero-v3 .trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--pizza-coal);
  opacity: 0.7;
}

.pizza-hero-v3 .trust-icon-lucide {
  width: 14px;
  height: 14px;
  stroke-width: 2;
}

.pizza-hero-v3 .trust-icon-lucide.trust-star {
  color: #f5a623;
  fill: #f5a623;
}

.pizza-hero-v3 .trust-divider {
  width: 1px;
  height: 16px;
  background: rgba(40, 36, 33, 0.2);
}

/* Hero Slogan - with glow effect */
.pizza-hero-v3 .hero-slogan {
  margin-top: 1.5rem;
}

.pizza-hero-v3 .hero-slogan p {
  display: inline-block;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--pizza-coal);
  padding: 0.65rem 1.25rem;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.9),
    rgba(255, 255, 255, 0.7)
  );
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(206, 62, 39, 0.15);
  border: 1px solid rgba(206, 62, 39, 0.2);
  margin: 0;
}

/* Scroll Indicator - Positioned at bottom */
.pizza-hero-v3 .hero-scroll-indicator {
  position: absolute;
  bottom: 1rem;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  animation: scrollIndicator 2s ease-in-out infinite;
  z-index: 10;
}

.pizza-hero-v3 .scroll-mouse {
  width: 20px;
  height: 30px;
  border: 2px solid var(--pizza-coal);
  border-radius: 10px;
  position: relative;
  opacity: 0.4;
}

.pizza-hero-v3 .scroll-wheel {
  width: 3px;
  height: 6px;
  background: var(--pizza-coal);
  border-radius: 2px;
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollIndicator 2s ease-in-out infinite;
}

.pizza-hero-v3 .scroll-text {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--pizza-coal);
  opacity: 0.4;
}

/* ==========================================================================
   HERO V3 RESPONSIVE STYLES
   ========================================================================== */

@media (max-width: 1200px) {
  .pizza-hero-v3 .pizza-showcase-item {
    max-width: 280px;
  }

  .pizza-hero-v3 .hero-pizza-showcase {
    gap: 1.5rem;
  }
}

@media (max-width: 1024px) {
  .pizza-hero-v3 {
    padding: 1.5rem 1.5rem 2.5rem;
  }

  .pizza-hero-v3 .hero-pizza-showcase {
    gap: 1rem;
  }

  .pizza-hero-v3 .pizza-showcase-item {
    max-width: 220px;
  }

  .pizza-hero-v3 .pizza-showcase-center .pizza-image-wrapper {
    transform: scale(1.05);
  }
}

@media (max-width: 768px) {
  .pizza-hero-v3 {
    padding: 1.5rem 1rem 2rem;
    min-height: auto;
  }

  .pizza-hero-v3 .hero-title-wrapper {
    padding-top: 5rem; /* Extra space for mobile header */
  }

  .pizza-hero-v3 .hero-title {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
  }

  .pizza-hero-v3 .hero-pizza-showcase {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 0.75rem;
    overflow-x: auto;
    padding: 0.5rem;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .pizza-hero-v3 .hero-pizza-showcase::-webkit-scrollbar {
    display: none;
  }

  .pizza-hero-v3 .pizza-showcase-item {
    flex: 0 0 200px;
    max-width: 200px;
  }

  .pizza-hero-v3 .pizza-showcase-center .pizza-image-wrapper {
    transform: none;
  }

  /* Reset center item gap on mobile */
  .pizza-hero-v3 .pizza-showcase-center {
    gap: 0.75rem;
  }

  .pizza-hero-v3 .pizza-showcase-item {
    gap: 0.5rem;
  }

  .pizza-hero-v3 .pizza-quality {
    padding: 0.35rem 0.6rem;
    min-height: 28px;
  }

  .pizza-hero-v3 .quality-text {
    font-size: 0.7rem;
    white-space: nowrap;
  }

  .pizza-hero-v3 .quality-icon {
    width: 14px;
    height: 14px;
  }

  /* Hide floating ingredients on mobile */
  .pizza-hero-v3 .floating-ingredients {
    display: none;
  }

  .pizza-hero-v3 .hero-trust {
    gap: 0.5rem;
  }

  .pizza-hero-v3 .trust-divider {
    display: none;
  }

  .pizza-hero-v3 .trust-item {
    font-size: 0.75rem;
  }

  .pizza-hero-v3 .hero-buttons {
    gap: 0.5rem;
  }

  .pizza-hero-v3 .hero-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
  }

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

@media (max-width: 480px) {
  .pizza-hero-v3 {
    padding: 1rem 0.75rem 1.5rem;
  }

  .pizza-hero-v3 .hero-title-wrapper {
    padding-top: 5rem; /* Space for mobile header */
  }

  .pizza-hero-v3 .hero-title {
    font-size: clamp(1.5rem, 7vw, 2rem);
    margin-bottom: 0.5rem;
  }

  .pizza-hero-v3 .hero-subtitle {
    font-size: 0.75rem;
    padding: 0.3rem 0.9rem;
    letter-spacing: 1px;
  }

  .pizza-hero-v3 .hero-tagline {
    font-size: 0.85rem;
    flex-direction: column;
    gap: 0.25rem;
  }

  .pizza-hero-v3 .pizza-showcase-item {
    flex: 0 0 160px;
    max-width: 160px;
    gap: 0.4rem;
  }

  .pizza-hero-v3 .pizza-quality {
    padding: 0.3rem 0.5rem;
  }

  .pizza-hero-v3 .quality-text {
    font-size: 0.65rem;
  }

  .pizza-hero-v3 .quality-icon {
    width: 12px;
    height: 12px;
  }

  .pizza-hero-v3 .hero-slogan p {
    font-size: 0.8rem;
    padding: 0.4rem 0.9rem;
  }

  .pizza-hero-v3 .hero-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
  }

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