/* -------------------------------------------------------------------------
   Pizza Colombia Újpest - Main Stylesheet
   ------------------------------------------------------------------------- */

/* Brand Variables */
:root {
  --primary: #F28B6D;       /* Carrd Salmon/Coral */
  --primary-dark: #E07353;
  --primary-light: #F7AC96;
  --accent: #4ECDC4;        /* Carrd Teal Accent */
  --accent-light: #E8F8F7;
  
  --bg-dark: #2D2B2A;       /* Deep Charcoal */
  --bg-light: #FAF9F6;      /* Off-White Sand */
  --bg-white: #ffffff;
  
  --text-main: #3D3A39;
  --text-muted: #7F7C7A;
  --text-light: #FFFFFF;
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Outfit', sans-serif;
  --font-accent: 'Playfair Display', serif;
  
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

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

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

a {
  text-decoration: none;
  color: inherit;
}

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

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 2rem;
  padding-left: 2rem;
}

/* -------------------------------------------------------------------------
   Navigation Bar
   ------------------------------------------------------------------------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  height: 70px;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.logo-group {
  display: flex;
  align-items: center;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-main);
  transition: var(--transition-fast);
  position: relative;
  padding: 0.25rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transition: var(--transition-fast);
}

.nav-links a:hover {
  color: var(--primary);
}

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

.btn-nav-order {
  background: var(--primary);
  color: var(--text-light) !important;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(242, 139, 109, 0.3);
  transition: var(--transition-fast) !important;
}

.btn-nav-order:hover {
  background: var(--primary-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(242, 139, 109, 0.4);
}

.btn-nav-order::after {
  display: none !important;
}

/* Mobile Toggle */
.mobile-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
}

.mobile-nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--text-main);
  border-radius: 2px;
  transition: var(--transition-fast);
}

/* Mobile Overlay Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background-color: var(--bg-white);
  box-shadow: var(--shadow-xl);
  z-index: 999;
  display: flex;
  flex-direction: column;
  padding: 100px 2rem 2rem;
  gap: 1.5rem;
  transition: var(--transition-smooth);
}

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

.mobile-menu a {
  font-size: 1.2rem;
  font-weight: 600;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.btn-mobile-order {
  background: var(--primary);
  color: var(--text-light) !important;
  text-align: center;
  padding: 0.8rem;
  border-radius: 50px;
  font-weight: 600;
  margin-top: 1rem;
}

/* -------------------------------------------------------------------------
   Hero Section
   ------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, var(--primary) 0%, #E67756 100%);
  padding-top: 160px;
  padding-bottom: 100px;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-background-stripes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.04) 0px, rgba(255, 255, 255, 0.04) 2px, transparent 2px, transparent 18px);
  pointer-events: none;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 4rem;
  position: relative;
  z-index: 10;
}

.hero-content {
  color: var(--text-light);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.25rem;
  font-weight: 300; /* Thin style matching Carrd */
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.6;
  opacity: 0.95;
  margin-bottom: 2.5rem;
  max-width: 540px;
}

/* Hero Button styling */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.05rem 2.2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition-smooth);
}

.btn-primary {
  background-color: var(--bg-white);
  color: var(--primary-dark);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  background-color: #FFFBF9;
}

.arrow-down-icon {
  width: 18px;
  height: 18px;
  animation: nudge-down 1.5s infinite alternate ease-in-out;
}

@keyframes nudge-down {
  0% { transform: translateY(-2px); }
  100% { transform: translateY(4px); }
}

.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-glow {
  position: absolute;
  width: 110%;
  height: 110%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
  z-index: 1;
}

.hero-pizza-img {
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: 50%;
  box-shadow: var(--shadow-xl);
  z-index: 2;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(2deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

/* -------------------------------------------------------------------------
   Showcase Sections (Alternating)
   ------------------------------------------------------------------------- */
.showcase-section {
  padding: 100px 0;
  background-color: var(--bg-white);
}

.bg-light {
  background-color: var(--bg-light);
}

.showcase-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 5rem;
}

.showcase-container.reverse {
  grid-template-columns: 1fr 1fr;
}

.showcase-image-box {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 1 / 1;
}

.showcase-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.showcase-image-box:hover .showcase-img {
  transform: scale(1.05);
}

.showcase-content-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Tiny horizontal line matching Carrd designs */
.accent-line-gradient {
  width: 60px;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  margin-bottom: 1.75rem;
}

.accent-line-gradient.center {
  margin: 0 auto 1.75rem;
}

.showcase-title {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 300;
  color: var(--text-main);
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

.showcase-text {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Enhanced Showcase Styles */
.showcase-header {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 4rem;
}

.showcase-header h2 {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 300;
  color: var(--text-main);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.showcase-header .showcase-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.experience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  margin-bottom: 4rem;
}

@media (max-width: 992px) {
  .experience-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.experience-card {
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.experience-card.card-catering {
  border-top: 4px solid var(--primary);
}

.experience-card.card-pizzeria {
  border-top: 4px solid var(--accent);
}

.experience-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px -15px rgba(45, 43, 42, 0.12), 0 0 0 1px rgba(242, 139, 109, 0.1);
}

.experience-card.card-pizzeria:hover {
  box-shadow: 0 30px 60px -15px rgba(45, 43, 42, 0.12), 0 0 0 1px rgba(78, 205, 196, 0.15);
}

.experience-card-img-box {
  position: relative;
  width: 100%;
  height: 260px;
  overflow: hidden;
}

.experience-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.experience-card-content {
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.experience-card-title {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 1rem;
}

.experience-card-text {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.badge-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: auto;
}

.catering-badge {
  font-size: 0.82rem;
  font-weight: 600;
  background-color: var(--bg-light);
  color: var(--text-main);
  padding: 0.45rem 0.85rem;
  border-radius: 50px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: var(--transition-fast);
}

.catering-badge:hover {
  background-color: var(--accent-light);
  color: var(--primary-dark);
  border-color: rgba(78, 205, 196, 0.3);
}

.experience-features-box {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.75) 0%, rgba(242, 139, 109, 0.03) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 24px;
  padding: 3rem 2.5rem;
  border: 1px solid rgba(242, 139, 109, 0.15);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6), var(--shadow-sm);
  margin-bottom: 4rem;
  position: relative;
  overflow: hidden;
}

.experience-features-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.features-emoji-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  list-style: none;
}

@media (max-width: 768px) {
  .features-emoji-list {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

.feature-emoji-item {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-main);
  transition: var(--transition-smooth);
}

.feature-emoji-item:hover {
  color: var(--primary-dark);
}

.emoji-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--bg-white);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.02);
  font-size: 1.35rem;
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, border-color 0.4s ease;
}

.feature-emoji-item:hover .emoji-circle {
  transform: scale(1.12) rotate(8deg);
  box-shadow: 0 8px 20px rgba(242, 139, 109, 0.18);
  border-color: rgba(242, 139, 109, 0.25);
}

.catering-outro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.catering-outro-text {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.tagline-fired {
  font-family: var(--font-accent);
  font-size: 2.25rem;
  font-style: italic;
  font-weight: 600;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.01em;
  margin-top: 1.5rem;
  animation: pulse-glow 3s ease-in-out infinite alternate;
}

@keyframes pulse-glow {
  0% { text-shadow: 0 0 0px rgba(242, 139, 109, 0); }
  100% { text-shadow: 0 0 10px rgba(242, 139, 109, 0.15); }
}

.showcase-subheading {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--primary-dark);
  margin-top: -0.5rem;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.pizza-comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
  text-align: left;
}

@media (max-width: 768px) {
  .pizza-comparison-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.comparison-column {
  background-color: var(--bg-white);
  padding: 1.85rem;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: var(--shadow-sm);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.comparison-column.col-neapolitan {
  border-left: 4px solid var(--primary);
}

.comparison-column.col-newyork {
  border-left: 4px solid var(--accent);
}

.comparison-column:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px -10px rgba(45, 43, 42, 0.08);
}

.comparison-column.col-neapolitan:hover {
  border-color: rgba(242, 139, 109, 0.2) rgba(242, 139, 109, 0.2) rgba(242, 139, 109, 0.2) var(--primary);
}

.comparison-column.col-newyork:hover {
  border-color: rgba(78, 205, 196, 0.25) rgba(78, 205, 196, 0.25) rgba(78, 205, 196, 0.25) var(--accent);
}

.comparison-column h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.comparison-column p {
  font-size: 0.96rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* -------------------------------------------------------------------------
   Stats Section
   ------------------------------------------------------------------------- */
.stats-section {
  padding: 80px 0;
  background-color: var(--bg-white);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  text-align: center;
}

.stat-card {
  padding: 2.5rem 1.5rem;
  background-color: var(--bg-white);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(242, 139, 109, 0.2);
}

.stat-kicker {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary-dark);
  background-color: rgba(242, 139, 109, 0.12);
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  margin-bottom: 1.1rem;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.75rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.03em;
}

.stat-label {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 0.75rem;
}

.stat-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 280px;
  margin: 0 auto;
}

/* -------------------------------------------------------------------------
   Order & Info Section
   ------------------------------------------------------------------------- */
.order-section {
  padding: 100px 0;
  background-color: var(--bg-light);
}

.order-container {
  text-align: center;
  max-width: 900px;
}

.order-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 1rem;
}

.order-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}



.reviews-section-header {
  margin-top: 1rem;
  margin-bottom: 2.5rem;
  text-align: center;
}

.reviews-subtitle {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-main);
  letter-spacing: -0.01em;
  position: relative;
  display: inline-block;
  padding-bottom: 0.5rem;
}

.reviews-subtitle::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 0 auto 4rem;
  text-align: left;
  max-width: 1000px;
}

.review-card {
  background-color: var(--bg-white);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.review-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0;
  transition: var(--transition-fast);
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(242, 139, 109, 0.15);
}

.review-card:hover::before {
  opacity: 1;
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.review-user {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.user-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: inset 0 -2px 4px rgba(0, 0, 0, 0.1);
}

.user-info {
  display: flex;
  flex-direction: column;
}

.user-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.2;
}

.user-title {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.social-source {
  color: var(--text-muted);
  opacity: 0.8;
  transition: var(--transition-fast);
}

.review-card:hover .social-source {
  opacity: 1;
}

.google-review:hover .social-source {
  color: #E67E22;
}

.facebook-review:hover .social-source {
  color: #3B5998;
}

.instagram-review:hover .social-source {
  color: #C13584;
}

.social-icon-sm {
  width: 20px;
  height: 20px;
}

.rating-stars {
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
  color: #F1C40F;
  letter-spacing: 1px;
}

.review-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-main);
  margin-bottom: 1.25rem;
  flex-grow: 1;
  font-style: italic;
}

.review-time {
  font-size: 0.8rem;
  color: var(--text-muted);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 0.75rem;
}

.order-actions {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 5rem;
}

.btn-order {
  color: var(--text-light);
  box-shadow: var(--shadow-md);
}

.wolt-btn {
  background-color: #00C2E8; /* Wolt Brand Color */
}

.wolt-btn:hover {
  background-color: #00A3C4;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 194, 232, 0.3);
}

.foodora-btn {
  background-color: #E21B70; /* Foodora Brand Color */
}

.foodora-btn:hover {
  background-color: #C1135B;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(226, 27, 112, 0.3);
}

.btn-secondary {
  background-color: var(--bg-dark);
  color: var(--text-light);
  box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
  background-color: #1A1918;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.order-brand-icon {
  width: 20px;
  height: 20px;
}

/* Info Grid (Map & Hours) */
.info-grid {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  text-align: left;
  margin-top: 2rem;
}

.info-card {
  background-color: var(--bg-white);
  padding: 2.25rem;
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: var(--transition-smooth);
}

.info-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(242, 139, 109, 0.12);
}

.map-card {
  padding: 0.6rem;
  overflow: hidden;
  min-height: 340px;
  background-color: var(--bg-white);
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: var(--transition-smooth);
  display: flex;
  width: 100%;
}

.map-card:hover {
  transform: scale(1.002);
  box-shadow: var(--shadow-lg);
  border-color: rgba(78, 205, 196, 0.15);
}

.map-card iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  border-radius: 16px;
}

.hours-dashboard-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 3.5rem;
  margin-top: 1.5rem;
}

@media (max-width: 992px) {
  .hours-dashboard-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
}

.hours-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid var(--bg-light);
  padding-bottom: 0.75rem;
  margin-bottom: 1.75rem;
}

.hours-card-header h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 0;
  border: none;
  padding: 0;
}

.status-badge {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.4rem 0.8rem;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.status-badge.checking {
  background-color: var(--bg-light);
  color: var(--text-muted);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.status-badge.open {
  background-color: #E8F8F5;
  color: #1ABC9C;
  border: 1px solid rgba(26, 188, 156, 0.2);
  animation: status-pulse 2s infinite;
}

.status-badge.closed {
  background-color: #FDEDEC;
  color: #E74C3C;
  border: 1px solid rgba(231, 76, 60, 0.2);
}

@keyframes status-pulse {
  0% { box-shadow: 0 0 0 0 rgba(26, 188, 156, 0.2); }
  70% { box-shadow: 0 0 0 6px rgba(26, 188, 156, 0); }
  100% { box-shadow: 0 0 0 0 rgba(26, 188, 156, 0); }
}

.info-item {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.info-item:last-child {
  margin-bottom: 0;
}

.info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: var(--bg-light);
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 0.15rem;
  transition: var(--transition-smooth);
}

.info-item:hover .info-icon {
  background-color: var(--accent-light);
  color: var(--accent);
  transform: scale(1.08);
}

.info-icon-svg {
  width: 18px;
  height: 18px;
}

.info-text strong {
  display: block;
  font-size: 1rem;
  color: var(--text-main);
  margin-bottom: 0.35rem;
}

.info-text p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.address-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.address-text {
  line-height: 1.5;
  margin-bottom: 0;
}

.btn-copy-address {
  background: none;
  border: none;
  color: var(--text-muted);
  padding: 0.35rem;
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
}

.btn-copy-address:hover {
  color: var(--primary);
  background-color: var(--bg-light);
  transform: scale(1.1);
}

.btn-copy-address:active {
  transform: scale(0.95);
}

.copy-icon {
  width: 16px;
  height: 16px;
}

.btn-copy-address.copied {
  color: #1ABC9C;
  background-color: #E8F8F5;
  border-color: rgba(26, 188, 156, 0.2);
}

.hours-list p {
  display: grid;
  grid-template-columns: minmax(92px, auto) 1fr;
  align-items: baseline;
  column-gap: 1rem;
  line-height: 1.45;
  margin-bottom: 0.35rem;
  transition: var(--transition-fast);
  border-radius: 6px;
  padding: 0.15rem 0.4rem;
  margin-left: -0.4rem;
  margin-right: -0.4rem;
}

.hours-list p:last-child {
  margin-bottom: 0;
}

.hours-list p span:last-child {
  font-variant-numeric: tabular-nums;
}

.hours-list p.active-day {
  font-weight: 600;
  color: var(--text-main);
  background-color: rgba(242, 139, 109, 0.08);
  border-left: 3px solid var(--primary);
  padding-left: 0.5rem;
}

.info-actions {
  margin-top: 1.75rem;
  border-top: 1px solid var(--bg-light);
  padding-top: 1.25rem;
}

.btn-directions {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  padding: 0.85rem;
  background-color: var(--primary);
  color: var(--text-light);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(242, 139, 109, 0.2);
  transition: var(--transition-smooth);
}

.btn-directions:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(242, 139, 109, 0.35);
}

.btn-directions:active {
  transform: translateY(0);
}

.directions-icon {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.btn-directions:hover .directions-icon {
  transform: translate(2px, -2px);
}

/* -------------------------------------------------------------------------
   Interactive Digital Menu Modal
   ------------------------------------------------------------------------- */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(45, 43, 42, 0.6);
}

.modal-container {
  position: relative;
  background-color: var(--bg-white);
  width: 90%;
  max-width: 800px;
  max-height: 85vh;
  border-radius: 20px;
  box-shadow: var(--shadow-xl);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 10001;
  transform: scale(0.92);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal.active .modal-container {
  transform: scale(1);
}

.modal-header {
  padding: 1.75rem 2rem;
  background-color: var(--bg-light);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h2 {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1.75rem;
}

.modal-close-btn {
  font-size: 2.25rem;
  line-height: 1;
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.modal-close-btn:hover {
  color: var(--primary);
}

/* Modal Tabs */
.modal-tabs {
  display: flex;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  background-color: #ffffff;
}

.tab-btn {
  flex: 1;
  padding: 1.25rem 1rem;
  font-weight: 600;
  color: var(--text-muted);
  text-align: center;
  transition: var(--transition-fast);
  border-bottom: 3px solid transparent;
}

.tab-btn:hover {
  color: var(--primary);
  background-color: var(--bg-light);
}

.tab-btn.active {
  color: var(--primary-dark);
  border-bottom-color: var(--primary);
}

/* Modal Content */
.modal-content {
  padding: 2rem;
  overflow-y: auto;
  flex: 1;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.menu-tab-pane {
  display: none;
}

.menu-tab-pane.active {
  display: block;
  animation: fade-in-up 0.5s ease forwards;
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  align-items: start;
}

.menu-item {
  border-bottom: 1px dashed rgba(0, 0, 0, 0.08);
  padding-bottom: 1.25rem;
}

.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.5rem;
  gap: 1rem;
}

.menu-item-name {
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text-main);
}

.menu-item-price {
  font-weight: 700;
  color: var(--primary-dark);
  white-space: nowrap;
}

.menu-item-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.modal-footer {
  padding: 1.25rem 2rem;
  background-color: var(--bg-light);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* -------------------------------------------------------------------------
   Footer Area
   ------------------------------------------------------------------------- */
.main-footer {
  padding: 3rem 0;
  background-color: var(--bg-dark);
  color: #9F9B98;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-copy {
  font-size: 0.95rem;
}

.footer-socials {
  display: flex;
  gap: 1.25rem;
}

.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background-color: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease, background-color 0.3s ease;
}

.footer-socials a:hover {
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
  background-color: #f5f5f5;
}

.social-icon {
  width: 22px;
  height: 22px;
  transition: var(--transition-smooth);
}

.social-facebook {
  color: #1877F2;
}

.social-facebook:hover {
  color: #0d58c8;
}

.social-instagram {
  color: #E1306C;
}

.social-instagram:hover {
  color: #b81c4e;
}

.social-tiktok {
  color: #010101;
}

.social-tiktok:hover {
  color: #FE2C55;
}

/* -------------------------------------------------------------------------
   Animations / Reveal classes
   ------------------------------------------------------------------------- */
.scroll-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* -------------------------------------------------------------------------
   Responsive Breakpoints
   ------------------------------------------------------------------------- */
@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .hero-title {
    font-size: 2.75rem;
  }
  
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  
  .showcase-container,
  .showcase-container.reverse {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .showcase-container.reverse .showcase-content-box {
    order: 2;
  }
  
  .showcase-container.reverse .showcase-image-box {
    order: 1;
  }
  
  .info-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 500px;
  }

  .menu-customizations {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .menu-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .mobile-nav-toggle {
    display: flex;
  }
  
  /* Burger Animation */
  .mobile-nav-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .mobile-nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .mobile-nav-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  
  .hero-title {
    font-size: 2.25rem;
  }
  
  .showcase-title {
    font-size: 1.85rem;
  }
  
  .stats-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .stat-card {
    padding: 1.5rem;
  }

  .testimonial-strip {
    padding: 1.6rem 1.4rem;
    border-radius: 18px;
  }

  .testimonial-quote {
    font-size: 1.35rem;
  }
  
  .footer-container {
    flex-direction: column;
    text-align: center;
  }
}

/* ==========================================================================
   Spin the Pizza Wheel Styles
   ========================================================================== */

.pizza-wheel-section {
  max-width: 950px;
  margin: 2.5rem auto 4.5rem;
  width: 100%;
}

.pizza-wheel-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 32px;
  border: 1px solid rgba(242, 139, 109, 0.15);
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  padding: 3rem;
  position: relative;
  overflow: hidden;
  text-align: left;
}

@media (max-width: 868px) {
  .pizza-wheel-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .pizza-wheel-container {
    padding: 1rem;
    gap: 1.5rem;
    border-radius: 24px;
  }

  .wheel-center-btn {
    width: 60px;
    height: 60px;
    font-size: 0.9rem;
    border-width: 3px;
  }

  .wheel-pointer {
    top: -8px;
    width: 26px;
    height: 26px;
  }

  .wheel-pointer::before {
    border-left-width: 13px;
    border-right-width: 13px;
    border-top-width: 20px;
  }
}

.wheel-visual-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

.wheel-wrapper {
  position: relative;
  width: 100%;
  max-width: 320px;
  aspect-ratio: 1 / 1;
  display: flex;
  justify-content: center;
  align-items: center;
  filter: drop-shadow(0 15px 30px rgba(45, 43, 42, 0.15));
}

#pizza-wheel {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: block;
  transition: transform 4.5s cubic-bezier(0.1, 0.8, 0.1, 1);
}

.wheel-pointer {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 30px;
  z-index: 10;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.15));
}

.wheel-pointer::before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 25px solid var(--primary);
}

.wheel-center-btn {
  position: absolute;
  width: 70px;
  height: 70px;
  background: radial-gradient(circle at 35% 35%, #ffffff 0%, #f4f2f0 60%, #e0dbd7 100%);
  border: 4px solid #ffffff;
  border-radius: 50%;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-main);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2), inset 0 2px 4px rgba(255, 255, 255, 0.8);
  cursor: pointer;
  z-index: 11;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.2s ease;
}

.wheel-center-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25), inset 0 2px 4px rgba(255, 255, 255, 0.8);
}

.wheel-center-btn:active {
  transform: scale(0.95);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.wheel-center-btn.disabled {
  background: #e2e2e2 !important;
  color: #a0a0a0 !important;
  border-color: #f0f0f0 !important;
  cursor: not-allowed !important;
  box-shadow: none !important;
  transform: none !important;
}

/* Info Card CSS */
.wheel-info-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.wheel-card-header h3 {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.wheel-card-header p {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.wheel-status-area {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.wheel-prizes-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

@media (max-width: 576px) {
  .wheel-prizes-list {
    grid-template-columns: 1fr;
  }
}

.prize-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background-color: var(--bg-light);
  border: 1px solid rgba(0, 0, 0, 0.03);
  padding: 0.65rem 1rem;
  border-radius: 12px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-main);
}

.prize-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.odds-tag {
  margin-left: auto;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.15rem 0.5rem;
  border-radius: 50px;
}

.odds-tag.common {
  background-color: rgba(46, 204, 113, 0.1);
  color: #2ECC71;
}

.odds-tag.lucky {
  background-color: rgba(52, 152, 219, 0.1);
  color: #3498DB;
}

.odds-tag.rare {
  background-color: rgba(155, 89, 182, 0.1);
  color: #9B59B6;
}

.wheel-action-hint {
  font-size: 0.95rem;
  color: var(--text-muted);
  border-left: 3px solid var(--primary);
  padding-left: 0.75rem;
  margin-top: 0.5rem;
}

/* Result Card */
.wheel-result-card {
  text-align: center;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.4) 100%);
  border: 1px solid rgba(242, 139, 109, 0.3);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: var(--shadow-md);
  animation: pop-in-card 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes pop-in-card {
  0% { transform: scale(0.9); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.result-celebration {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--primary-dark);
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
}

.wheel-result-card h4 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.wheel-result-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.promo-code-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background-color: var(--bg-dark);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.8rem 1.5rem;
  border-radius: 16px;
  max-width: 280px;
  margin: 0 auto 1rem;
}

.promo-code-text {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--accent-light);
  letter-spacing: 0.05em;
}

.btn-copy-promo {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem;
  transition: var(--transition-smooth);
}

.btn-copy-promo:hover {
  color: var(--text-light);
  transform: scale(1.15);
}

.btn-copy-promo:active {
  transform: scale(0.9);
}

.btn-copy-promo.copied {
  color: #1ABC9C;
}

.result-terms {
  font-size: 0.78rem !important;
  color: var(--text-muted);
  margin-bottom: 0 !important;
  opacity: 0.8;
}

.hidden {
  display: none !important;
}

/* Confetti Overlay */
#confetti-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999999;
  pointer-events: none;
}

/* Social Handles inside Spin Result Card */
.result-social-handles {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin: 1.25rem 0;
  flex-wrap: wrap;
}

.handle-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--bg-light);
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 0.4rem 0.85rem;
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--text-main);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.2s ease, background-color 0.2s ease;
}

.handle-item:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: var(--shadow-md);
  background-color: var(--bg-white);
  color: var(--text-main);
}

.handle-svg-icon {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.facebook-tag .handle-svg-icon {
  color: #1877F2;
}

.instagram-tag .handle-svg-icon {
  color: #E1306C;
}

.tiktok-tag .handle-svg-icon {
  color: #010101;
}

.tiktok-tag:hover .handle-svg-icon {
  color: #FE2C55;
}

/* ==========================================================================
   Add to Cart Buttons & Shopping Cart Styles
   ========================================================================== */

/* Menu Item Add to Cart Button */
.btn-add-to-cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.65rem 1rem;
  margin-top: 1rem;
  background-color: var(--primary);
  color: var(--text-light);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(242, 139, 109, 0.15);
  transition: var(--transition-smooth);
}

.btn-add-to-cart:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(242, 139, 109, 0.3);
}

.btn-add-to-cart:active {
  transform: translateY(0);
}

/* Floating Cart Button */
.floating-cart-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.9rem 1.4rem;
  background-color: var(--primary);
  color: var(--text-light);
  border: none;
  border-radius: 50px;
  box-shadow: 0 10px 25px rgba(242, 139, 109, 0.4);
  cursor: pointer;
  transform: scale(1);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.3s, box-shadow 0.3s;
}

.floating-cart-btn:hover {
  background-color: var(--primary-dark);
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 12px 30px rgba(242, 139, 109, 0.55);
}

.floating-cart-btn:active {
  transform: scale(0.98) translateY(0);
}

.cart-icon-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.cart-icon {
  width: 22px;
  height: 22px;
}

.cart-count-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  background-color: var(--accent);
  color: var(--text-main);
  font-size: 0.72rem;
  font-weight: 800;
  border-radius: 10px;
  border: 2px solid var(--primary);
}

.cart-total-floating {
  font-weight: 700;
  font-size: 0.95rem;
  border-left: 1px solid rgba(255, 255, 255, 0.25);
  padding-left: 0.85rem;
}

/* Shopping Cart Drawer */
.cart-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  z-index: 10000;
  visibility: hidden;
  transition: visibility 0.4s;
}

.cart-drawer.active {
  visibility: visible;
}

.cart-drawer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(45, 43, 42, 0.4);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.cart-drawer.active .cart-drawer-overlay {
  opacity: 1;
}

.cart-drawer-container {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 480px;
  height: 100%;
  height: 100dvh;
  background-color: #ffffff;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cart-drawer.active .cart-drawer-container {
  transform: translateX(0);
}

.cart-drawer-header {
  padding: 1.75rem 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-drawer-header h2 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--text-main);
}

.cart-close-btn {
  font-size: 2.25rem;
  line-height: 1;
  color: var(--text-muted);
  background: none;
  border: none;
  cursor: pointer;
  transition: var(--transition-fast);
}

.cart-close-btn:hover {
  color: var(--primary);
}

.cart-drawer-content {
  flex: 1;
  padding: 2rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

/* Steps Management */
.drawer-step {
  display: none;
  flex-direction: column;
  flex: 1;
}

.drawer-step.active {
  display: flex;
}

/* Cart Empty State */
.cart-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: auto;
  padding: 2rem 0;
}

.cart-empty-emoji {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  animation: bounce-slow 2s infinite;
}

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

.cart-empty-state p {
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.cart-empty-state .empty-sub {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Cart Items Layout */
.cart-items-container {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background-color: var(--bg-white);
  padding: 1rem;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.cart-item-details {
  flex: 1;
}

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

.cart-item-price {
  font-weight: 700;
  color: var(--primary-dark);
  font-size: 0.95rem;
}

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

.qty-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background-color: var(--bg-light);
  color: var(--text-main);
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.qty-btn:hover {
  background-color: var(--primary);
  color: white;
  border-color: var(--primary);
}

.cart-item-qty {
  font-weight: 700;
  font-size: 1rem;
  min-width: 16px;
  text-align: center;
}

.btn-remove-item {
  background: none;
  border: none;
  color: #E74C3C;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.25rem;
  transition: opacity 0.2s;
}

.btn-remove-item:hover {
  opacity: 0.7;
}

/* Checkout Form Styling */
.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-section-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text-main);
  margin-bottom: 0.25rem;
  border-bottom: 2px solid var(--primary);
  display: inline-block;
  padding-bottom: 0.25rem;
  width: fit-content;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-main);
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"] {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background-color: var(--bg-white);
  color: var(--text-main);
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(242, 139, 109, 0.15);
}

/* Order Option Switch */
.order-type-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background-color: var(--bg-light);
  padding: 0.35rem;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.toggle-label {
  padding: 0.75rem;
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
  color: var(--text-muted);
}

.order-type-toggle input[type="radio"]:checked + .toggle-label {
  background-color: var(--primary);
  color: white;
  box-shadow: var(--shadow-sm);
}

/* Address Fields Wrapper */
.address-group {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, opacity 0.4s;
  opacity: 0;
}

.address-group.active {
  max-height: 350px;
  opacity: 1;
}

/* Review Order summary card */
.review-summary-card {
  background-color: var(--bg-white);
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: var(--shadow-sm);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.summary-section h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-main);
  margin-bottom: 0.85rem;
}

.summary-section p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0.4rem;
}

.summary-section p strong {
  color: var(--text-main);
}

.summary-divider {
  height: 1px;
  background-color: rgba(0, 0, 0, 0.06);
}

.review-items-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.review-item-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.review-item-row .item-qty-name {
  font-weight: 500;
  color: var(--text-main);
}

/* Sticky Drawer Footer */
.cart-drawer-footer {
  padding: 1.5rem 2rem;
  background-color: var(--bg-light);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.cart-drawer-footer.active {
  display: flex;
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.cart-summary-row.fee-row {
  color: #E67E22;
  font-weight: 500;
}

.cart-summary-row.total-row {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-main);
  border-top: 1px dashed rgba(0, 0, 0, 0.1);
  padding-top: 0.85rem;
  margin-top: 0.25rem;
}

/* Action Buttons Footer */
.cart-footer-actions {
  margin-top: 0.5rem;
}

.btn-footer-action, .cart-footer-btn-group {
  width: 100%;
}

#btn-goto-checkout {
  display: none;
}

#btn-goto-checkout.active {
  display: inline-flex;
}

.btn-goto-checkout, .btn-submit-order {
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.85rem;
  font-size: 1.05rem;
}

.order-arrow-icon {
  width: 18px;
  height: 18px;
  transition: transform 0.3s;
}

.btn-goto-checkout:hover .order-arrow-icon,
.btn-goto-review:hover .order-arrow-icon {
  transform: translateX(4px);
}

/* Footer Button Group (Step 2 and 3) */
.cart-footer-btn-group {
  display: flex;
  gap: 0.85rem;
}

.btn-back-action {
  flex: 1;
  background-color: var(--bg-white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: var(--text-muted);
}

.btn-back-action:hover {
  background-color: var(--bg-light);
  color: var(--text-main);
  box-shadow: none;
  transform: translateY(-2px);
}

.cart-footer-btn-group .btn-footer-action,
.cart-footer-btn-group .btn-pay-action {
  flex: 2;
}

.btn-pay-action {
  background-color: #0066FF; /* SumUp Blue color */
  color: white;
}

.btn-pay-action:hover {
  background-color: #0052CC;
  box-shadow: 0 8px 18px rgba(0, 102, 255, 0.3);
}

.success-view {
  align-items: center;
  text-align: center;
  margin: auto 0;
}

.drawer-step.success-view {
  display: none;
}

.drawer-step.success-view.active {
  display: flex;
  flex-direction: column;
}

.success-icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: rgba(46, 204, 113, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.checkmark-svg {
  width: 48px;
  height: 48px;
}

.success-view h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--text-main);
  margin-bottom: 0.75rem;
}

.success-instruction {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.success-details {
  background-color: var(--bg-light);
  border-radius: 12px;
  padding: 1rem 1.5rem;
  width: 100%;
}

.success-details p {
  font-size: 0.9rem;
  color: var(--text-muted);
  display: flex;
  justify-content: space-between;
}

.success-details p strong {
  color: var(--text-main);
}

/* Menu Item Image Styling */
.menu-item-image {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 1.15rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: var(--bg-light);
}

.menu-item:hover .menu-item-image {
  transform: scale(1.03);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

/* Image Placeholder Styling */
.menu-item-image-placeholder {
  width: 100%;
  height: 160px;
  background: linear-gradient(135deg, #fdfbf7 0%, #f5f0e6 100%);
  border: 1px dashed rgba(0, 0, 0, 0.1);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.15rem;
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 500;
  font-style: italic;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
}

/* Chef Loader and Verification Page styles */
.chef-loader-container {
  position: relative;
  width: 100px;
  height: 100px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
}

.chef-emoji-pulse {
  font-size: 3.5rem;
  z-index: 2;
  animation: float-slow 3s ease-in-out infinite;
}

.glowing-ring {
  position: absolute;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 3px solid rgba(46, 204, 113, 0.3);
  border-top-color: #2ECC71;
  animation: spin 1.5s linear infinite;
  box-shadow: 0 0 15px rgba(46, 204, 113, 0.2);
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes float-slow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.timer-box {
  background: rgba(0, 0, 0, 0.03);
  border-radius: 12px;
  padding: 1.25rem 2rem;
  margin: 1.5rem 0;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.05);
  width: 100%;
  box-sizing: border-box;
}

.timer-label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.35rem;
}

.timer-countdown {
  font-family: monospace;
  font-size: 2.2rem;
  font-weight: 700;
  color: #2C3E50;
  letter-spacing: 2px;
}

.pulse-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

.pulse-dot-green {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #2ECC71;
  box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7);
  animation: pulse-green 1.8s infinite;
}

@keyframes pulse-green {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(46, 204, 113, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(46, 204, 113, 0);
  }
}

.btn-skip-timer {
  background: none;
  border: none;
  color: var(--text-muted);
  text-decoration: underline;
  font-size: 0.8rem;
  cursor: pointer;
  margin-top: 1.5rem;
  transition: color 0.3s;
}

.btn-skip-timer:hover {
  color: var(--color-primary);
}

.pulse-dot-red {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #E74C3C;
  box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.7);
  animation: pulse-red 1.8s infinite;
}

@keyframes pulse-red {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(231, 76, 60, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(231, 76, 60, 0);
  }
}

/* Mobile Viewport Optimizations for Cart Drawer */
@media (max-width: 480px) {
  .cart-drawer-header {
    padding: 1.25rem 1.5rem;
  }
  
  .cart-drawer-content {
    padding: 1.25rem;
  }
  
  .cart-drawer-footer {
    padding: 1.25rem 1.5rem;
    gap: 0.65rem;
  }

  .cart-items-container {
    gap: 0.85rem;
  }

  .cart-item {
    padding: 0.85rem;
    gap: 0.75rem;
  }

  .cart-item-name {
    font-size: 0.95rem;
    line-height: 1.3;
  }

  .cart-item-price {
    font-size: 0.9rem;
  }

  .cart-item-controls {
    gap: 0.5rem;
  }

  .qty-btn {
    width: 26px;
    height: 26px;
    font-size: 0.9rem;
  }

  .btn-remove-item {
    font-size: 1.35rem;
  }

  .cart-summary-row.total-row {
    font-size: 1.15rem;
    padding-top: 0.65rem;
  }

  .cart-footer-btn-group {
    display: flex;
    gap: 0.5rem;
    width: 100%;
  }

  .cart-footer-btn-group .btn {
    flex: 1;
    font-size: 0.9rem;
    padding: 0.65rem 0.5rem;
    justify-content: center;
    align-items: center;
  }
}

