/*
Theme Name:   Astra Child - Casa de Pizza & Wings
Theme URI:    https://casadepizzawings.us
Description:  Custom child theme for Casa de Pizza & Wings restaurant
Author:       Ermis Media Production
Author URI:   https://ermismedia.com
Template:     astra
Version:      1.0.0
Text Domain:  astra-child
*/

/* ============================================================
   CASA DE PIZZA & WINGS — CUSTOM THEME
   Colors: Dark Green #1a4a1a | Red #c0392b | Cream #f5f0e8
   Fonts: Playfair Display (headings) | Poppins (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,700&family=Poppins:wght@300;400;500;600;700&family=Dancing+Script:wght@600;700&display=swap');

/* ---- CSS Variables ---- */
:root {
  --cdp-green:       #1a4a1a;
  --cdp-green-light: #2d6a2d;
  --cdp-red:         #c0392b;
  --cdp-red-dark:    #96281b;
  --cdp-cream:       #f5f0e8;
  --cdp-cream-dark:  #ede5d8;
  --cdp-gold:        #d4a017;
  --cdp-dark:        #111111;
  --cdp-text:        #2a2a2a;
  --cdp-white:       #ffffff;
  --cdp-shadow:      0 4px 24px rgba(0,0,0,0.15);
  --cdp-shadow-lg:   0 8px 40px rgba(0,0,0,0.25);
  --cdp-radius:      12px;
  --cdp-radius-sm:   8px;
  --cdp-transition:  all 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ---- Base Reset & Typography ---- */
*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--cdp-text);
  background: var(--cdp-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--cdp-dark);
}

a { color: var(--cdp-red); text-decoration: none; transition: var(--cdp-transition); }
a:hover { color: var(--cdp-red-dark); }

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

/* ---- TOP BAR ---- */
.cdp-topbar {
  background: var(--cdp-green);
  color: var(--cdp-white);
  text-align: center;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 1000;
}
.cdp-topbar a {
  color: #ffd700;
  font-weight: 700;
  text-decoration: none;
}
.cdp-topbar a:hover { color: #fff; }
.cdp-topbar .topbar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cdp-topbar .topbar-sep { opacity: 0.4; }

/* ---- HEADER ---- */
.site-header, #masthead {
  background: var(--cdp-dark) !important;
  border-bottom: 3px solid var(--cdp-red);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.ast-site-identity { padding: 8px 0; }
.custom-logo { max-height: 70px !important; width: auto !important; }

/* Navigation */
.main-navigation, .ast-main-navigation {
  background: transparent !important;
}
.main-navigation ul li a,
.ast-main-navigation .menu-item a,
#site-navigation .menu-item a {
  color: var(--cdp-white) !important;
  font-family: 'Poppins', sans-serif !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
  padding: 8px 16px !important;
  transition: var(--cdp-transition) !important;
  position: relative;
}
.main-navigation ul li a::after,
.ast-main-navigation .menu-item a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--cdp-red);
  transition: var(--cdp-transition);
}
.main-navigation ul li a:hover::after,
.ast-main-navigation .menu-item a:hover::after,
.main-navigation ul li.current-menu-item a::after {
  width: 80%;
}
.main-navigation ul li a:hover,
.ast-main-navigation .menu-item a:hover {
  color: var(--cdp-red) !important;
}

/* ORDER NOW button in nav */
.menu-item-order-now a,
.ast-main-navigation .menu-item:last-child a {
  background: var(--cdp-red) !important;
  color: var(--cdp-white) !important;
  border-radius: 6px !important;
  padding: 8px 20px !important;
}
.menu-item-order-now a:hover,
.ast-main-navigation .menu-item:last-child a:hover {
  background: var(--cdp-red-dark) !important;
}

/* Mobile hamburger */
.ast-mobile-menu-buttons button,
.menu-toggle { color: var(--cdp-white) !important; }

/* ---- HERO SECTION ---- */
.cdp-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--cdp-dark);
}
.cdp-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  opacity: 0.55;
  transition: opacity 1s ease;
}
.cdp-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,74,26,0.7) 0%, rgba(17,17,17,0.6) 50%, rgba(192,57,43,0.4) 100%);
}
.cdp-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px;
  width: 100%;
}
.cdp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(192,57,43,0.9);
  color: var(--cdp-white);
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
  backdrop-filter: blur(4px);
}
.cdp-hero-badge::before { content: '📍'; font-size: 14px; }
.cdp-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  color: var(--cdp-white);
  line-height: 1.05;
  margin: 0 0 8px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.cdp-hero-title span {
  color: var(--cdp-red);
  font-style: italic;
}
.cdp-hero-subtitle {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: #ffd700;
  margin: 0 0 20px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}
.cdp-hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
  max-width: 540px;
  margin-bottom: 40px;
  line-height: 1.8;
}
.cdp-hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 60px;
}
.cdp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  transition: var(--cdp-transition);
  cursor: pointer;
  border: none;
}
.cdp-btn-primary {
  background: var(--cdp-red);
  color: var(--cdp-white);
  box-shadow: 0 4px 20px rgba(192,57,43,0.5);
}
.cdp-btn-primary:hover {
  background: var(--cdp-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(192,57,43,0.6);
  color: var(--cdp-white);
}
.cdp-btn-outline {
  background: transparent;
  color: var(--cdp-white);
  border: 2px solid rgba(255,255,255,0.7);
  backdrop-filter: blur(4px);
}
.cdp-btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--cdp-white);
  color: var(--cdp-white);
  transform: translateY(-2px);
}
.cdp-btn-green {
  background: var(--cdp-green);
  color: var(--cdp-white);
  box-shadow: 0 4px 20px rgba(26,74,26,0.4);
}
.cdp-btn-green:hover {
  background: var(--cdp-green-light);
  transform: translateY(-2px);
  color: var(--cdp-white);
}

/* Hero stats */
.cdp-hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.cdp-stat {
  text-align: center;
  color: var(--cdp-white);
}
.cdp-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: #ffd700;
  display: block;
  line-height: 1;
}
.cdp-stat-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.8;
  margin-top: 4px;
  display: block;
}

/* ---- PHONE FLOATING BUTTON ---- */
.cdp-phone-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.cdp-phone-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--cdp-red);
  color: var(--cdp-white);
  padding: 14px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(192,57,43,0.6);
  transition: var(--cdp-transition);
  animation: pulse-phone 2s infinite;
}
.cdp-phone-btn:hover {
  background: var(--cdp-red-dark);
  transform: scale(1.05);
  color: var(--cdp-white);
}
@keyframes pulse-phone {
  0%, 100% { box-shadow: 0 4px 20px rgba(192,57,43,0.6); }
  50% { box-shadow: 0 4px 40px rgba(192,57,43,0.9), 0 0 0 8px rgba(192,57,43,0.15); }
}
.cdp-order-float {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--cdp-green);
  color: var(--cdp-white);
  padding: 12px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(26,74,26,0.5);
  transition: var(--cdp-transition);
}
.cdp-order-float:hover {
  background: var(--cdp-green-light);
  transform: scale(1.05);
  color: var(--cdp-white);
}

/* ---- SECTION STYLES ---- */
.cdp-section {
  padding: 80px 40px;
}
.cdp-section-dark {
  background: var(--cdp-dark);
  color: var(--cdp-white);
}
.cdp-section-cream {
  background: var(--cdp-cream);
}
.cdp-section-green {
  background: var(--cdp-green);
  color: var(--cdp-white);
}
.cdp-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.cdp-section-label {
  display: inline-block;
  background: var(--cdp-red);
  color: var(--cdp-white);
  padding: 4px 16px;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.cdp-section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin: 0 0 16px;
  line-height: 1.2;
}
.cdp-section-title em {
  color: var(--cdp-red);
  font-style: italic;
}
.cdp-section-title.light { color: var(--cdp-white); }
.cdp-section-desc {
  font-size: 1.05rem;
  opacity: 0.8;
  max-width: 600px;
  line-height: 1.8;
}
.cdp-section-header {
  text-align: center;
  margin-bottom: 60px;
}
.cdp-divider {
  width: 60px;
  height: 3px;
  background: var(--cdp-red);
  margin: 16px auto;
  border-radius: 2px;
}

/* ---- CATEGORIES GRID ---- */
.cdp-categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.cdp-cat-card {
  position: relative;
  border-radius: var(--cdp-radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  box-shadow: var(--cdp-shadow);
  transition: var(--cdp-transition);
  text-decoration: none;
  display: block;
}
.cdp-cat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--cdp-shadow-lg);
}
.cdp-cat-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.cdp-cat-card:hover img { transform: scale(1.08); }
.cdp-cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17,17,17,0.85) 0%, rgba(17,17,17,0.2) 60%, transparent 100%);
  transition: var(--cdp-transition);
}
.cdp-cat-card:hover .cdp-cat-overlay {
  background: linear-gradient(to top, rgba(192,57,43,0.85) 0%, rgba(17,17,17,0.3) 70%, transparent 100%);
}
.cdp-cat-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 20px 20px;
  color: var(--cdp-white);
}
.cdp-cat-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #ffd700;
  display: block;
  margin-bottom: 4px;
}
.cdp-cat-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  display: block;
  margin-bottom: 6px;
}
.cdp-cat-desc {
  font-size: 12px;
  opacity: 0;
  transform: translateY(8px);
  transition: var(--cdp-transition);
  line-height: 1.5;
}
.cdp-cat-card:hover .cdp-cat-desc {
  opacity: 0.9;
  transform: translateY(0);
}
.cdp-cat-arrow {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  transition: var(--cdp-transition);
  opacity: 0;
}
.cdp-cat-card:hover .cdp-cat-arrow { opacity: 1; }

/* ---- LUNCH SPECIAL BANNER ---- */
.cdp-lunch-banner {
  background: linear-gradient(135deg, var(--cdp-dark) 0%, #1a0a00 50%, #2a0a00 100%);
  border-radius: var(--cdp-radius);
  overflow: hidden;
  position: relative;
  padding: 60px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  box-shadow: var(--cdp-shadow-lg);
}
.cdp-lunch-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--cdp-red), var(--cdp-gold), var(--cdp-red));
}
.cdp-lunch-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cdp-red);
  color: var(--cdp-white);
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.cdp-lunch-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  color: var(--cdp-white);
  line-height: 1.1;
  margin: 0 0 12px;
}
.cdp-lunch-title span { color: var(--cdp-gold); }
.cdp-lunch-hours {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cdp-lunch-hours strong { color: var(--cdp-gold); }
.cdp-lunch-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 28px;
}
.cdp-lunch-price strong { color: var(--cdp-gold); font-size: 1.5rem; }

/* Timer */
.cdp-timer-wrap {
  text-align: center;
}
.cdp-timer-status {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding: 8px 20px;
  border-radius: 30px;
  display: inline-block;
}
.cdp-timer-status.active {
  background: rgba(39,174,96,0.2);
  color: #2ecc71;
  border: 1px solid rgba(39,174,96,0.4);
}
.cdp-timer-status.inactive {
  background: rgba(192,57,43,0.2);
  color: #e74c3c;
  border: 1px solid rgba(192,57,43,0.4);
}
.cdp-timer {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.cdp-timer-block {
  text-align: center;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 16px 20px;
  min-width: 72px;
  backdrop-filter: blur(4px);
}
.cdp-timer-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--cdp-gold);
  display: block;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.cdp-timer-label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 6px;
  display: block;
}
.cdp-timer-sep {
  font-size: 2rem;
  color: var(--cdp-gold);
  font-weight: 900;
  opacity: 0.6;
}
.cdp-timer-msg {
  margin-top: 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  font-style: italic;
}

/* ---- DELIVERY OPTIONS ---- */
.cdp-delivery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cdp-delivery-card {
  background: var(--cdp-white);
  border-radius: var(--cdp-radius);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--cdp-shadow);
  transition: var(--cdp-transition);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}
.cdp-delivery-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--cdp-red);
  transform: scaleX(0);
  transition: var(--cdp-transition);
}
.cdp-delivery-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--cdp-shadow-lg);
  border-color: var(--cdp-red);
}
.cdp-delivery-card:hover::before { transform: scaleX(1); }
.cdp-delivery-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 16px;
  line-height: 1;
}
.cdp-delivery-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--cdp-dark);
  margin-bottom: 12px;
}
.cdp-delivery-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px;
}
.cdp-delivery-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--cdp-red);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ---- FEATURED ITEMS ---- */
.cdp-featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}
.cdp-featured-card {
  background: var(--cdp-white);
  border-radius: var(--cdp-radius);
  overflow: hidden;
  box-shadow: var(--cdp-shadow);
  transition: var(--cdp-transition);
  text-decoration: none;
  color: inherit;
  display: block;
}
.cdp-featured-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--cdp-shadow-lg);
  color: inherit;
}
.cdp-featured-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.cdp-featured-card:hover .cdp-featured-img { transform: scale(1.05); }
.cdp-featured-body {
  padding: 24px;
}
.cdp-featured-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cdp-red);
  margin-bottom: 8px;
  display: block;
}
.cdp-featured-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--cdp-dark);
  margin-bottom: 10px;
}
.cdp-featured-desc {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 16px;
}
.cdp-featured-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cdp-featured-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--cdp-green);
}
.cdp-featured-cta {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--cdp-red);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ---- TESTIMONIALS ---- */
.cdp-testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.cdp-testimonial {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--cdp-radius);
  padding: 28px;
  position: relative;
}
.cdp-testimonial::before {
  content: '"';
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--cdp-red);
  opacity: 0.4;
  position: absolute;
  top: 10px;
  left: 20px;
  line-height: 1;
}
.cdp-testimonial-text {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
  margin-bottom: 20px;
  padding-top: 20px;
}
.cdp-testimonial-stars {
  color: var(--cdp-gold);
  font-size: 16px;
  margin-bottom: 10px;
  letter-spacing: 2px;
}
.cdp-testimonial-author {
  font-weight: 700;
  color: var(--cdp-white);
  font-size: 14px;
}
.cdp-testimonial-source {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin-top: 2px;
}

/* ---- HOURS & LOCATION ---- */
.cdp-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.cdp-hours-table {
  width: 100%;
  border-collapse: collapse;
}
.cdp-hours-table tr {
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.cdp-hours-table td {
  padding: 12px 0;
  font-size: 15px;
}
.cdp-hours-table td:first-child { font-weight: 600; color: var(--cdp-dark); }
.cdp-hours-table td:last-child { text-align: right; color: var(--cdp-green); font-weight: 500; }
.cdp-hours-table tr.today {
  background: rgba(192,57,43,0.05);
  border-radius: 6px;
}
.cdp-hours-table tr.today td:first-child { color: var(--cdp-red); }
.cdp-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.cdp-contact-icon {
  width: 48px;
  height: 48px;
  background: var(--cdp-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.cdp-contact-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cdp-red);
  margin-bottom: 4px;
}
.cdp-contact-value {
  font-size: 16px;
  font-weight: 600;
  color: var(--cdp-dark);
}
.cdp-contact-value a { color: var(--cdp-dark); }
.cdp-contact-value a:hover { color: var(--cdp-red); }

/* ---- MENU PAGE ---- */
.cdp-menu-sticky-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cdp-dark);
  border-bottom: 3px solid var(--cdp-red);
  padding: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.cdp-menu-sticky-nav::-webkit-scrollbar { display: none; }
.cdp-menu-nav-inner {
  display: flex;
  gap: 0;
  min-width: max-content;
  padding: 0 20px;
}
.cdp-menu-nav-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 20px;
  color: rgba(255,255,255,0.7);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: var(--cdp-transition);
  border-bottom: 3px solid transparent;
  white-space: nowrap;
  cursor: pointer;
}
.cdp-menu-nav-item:hover,
.cdp-menu-nav-item.active {
  color: var(--cdp-white);
  border-bottom-color: var(--cdp-red);
}
.cdp-menu-section {
  padding: 60px 40px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.cdp-menu-section:nth-child(even) { background: var(--cdp-cream); }
.cdp-menu-section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--cdp-dark);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.cdp-menu-section-title::after {
  content: '';
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, var(--cdp-red), transparent);
}
.cdp-menu-section-desc {
  font-size: 14px;
  color: #777;
  margin-bottom: 32px;
}
.cdp-menu-items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.cdp-menu-item-card {
  background: var(--cdp-white);
  border-radius: var(--cdp-radius-sm);
  padding: 20px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: var(--cdp-transition);
  border: 1px solid rgba(0,0,0,0.06);
}
.cdp-menu-item-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.12);
  transform: translateY(-3px);
}
.cdp-menu-item-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cdp-dark);
  margin-bottom: 8px;
}
.cdp-menu-item-desc {
  font-size: 13px;
  color: #777;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
}
.cdp-menu-item-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cdp-menu-item-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--cdp-green);
}
.cdp-menu-item-add {
  background: var(--cdp-red);
  color: var(--cdp-white);
  border: none;
  border-radius: 6px;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--cdp-transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.cdp-menu-item-add:hover {
  background: var(--cdp-red-dark);
  color: var(--cdp-white);
  transform: scale(1.05);
}

/* ---- CATERING PAGE ---- */
.cdp-catering-hero {
  background: linear-gradient(135deg, var(--cdp-green) 0%, var(--cdp-dark) 100%);
  padding: 100px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cdp-catering-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 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='%23ffffff' 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");
}
.cdp-catering-packages {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
  margin-bottom: 60px;
}
.cdp-catering-pkg {
  background: var(--cdp-white);
  border-radius: var(--cdp-radius);
  overflow: hidden;
  box-shadow: var(--cdp-shadow);
  transition: var(--cdp-transition);
  border: 2px solid transparent;
}
.cdp-catering-pkg:hover {
  transform: translateY(-6px);
  box-shadow: var(--cdp-shadow-lg);
  border-color: var(--cdp-red);
}
.cdp-catering-pkg-header {
  background: linear-gradient(135deg, var(--cdp-green), var(--cdp-green-light));
  padding: 28px;
  color: var(--cdp-white);
  text-align: center;
}
.cdp-catering-pkg-icon { font-size: 2.5rem; margin-bottom: 12px; display: block; }
.cdp-catering-pkg-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.cdp-catering-pkg-guests {
  font-size: 13px;
  opacity: 0.8;
}
.cdp-catering-pkg-body { padding: 28px; }
.cdp-catering-pkg-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.cdp-catering-pkg-features li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.cdp-catering-pkg-features li::before {
  content: '✓';
  color: var(--cdp-green);
  font-weight: 700;
  flex-shrink: 0;
}

/* Reservation tabs */
.cdp-tabs {
  display: flex;
  border-bottom: 2px solid rgba(0,0,0,0.1);
  margin-bottom: 40px;
  gap: 0;
}
.cdp-tab-btn {
  padding: 14px 32px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  background: transparent;
  color: #999;
  cursor: pointer;
  transition: var(--cdp-transition);
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
}
.cdp-tab-btn.active,
.cdp-tab-btn:hover {
  color: var(--cdp-red);
  border-bottom-color: var(--cdp-red);
}
.cdp-tab-panel { display: none; }
.cdp-tab-panel.active { display: block; }

/* ---- CONTACT PAGE ---- */
.cdp-contact-form-wrap {
  background: var(--cdp-white);
  border-radius: var(--cdp-radius);
  padding: 48px;
  box-shadow: var(--cdp-shadow);
}
.cdp-form-group {
  margin-bottom: 24px;
}
.cdp-form-label {
  display: block;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--cdp-dark);
  margin-bottom: 8px;
}
.cdp-form-input,
.cdp-form-textarea,
.cdp-form-select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid rgba(0,0,0,0.1);
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: var(--cdp-dark);
  background: var(--cdp-white);
  transition: var(--cdp-transition);
  outline: none;
}
.cdp-form-input:focus,
.cdp-form-textarea:focus,
.cdp-form-select:focus {
  border-color: var(--cdp-red);
  box-shadow: 0 0 0 3px rgba(192,57,43,0.1);
}
.cdp-form-textarea { min-height: 140px; resize: vertical; }
.cdp-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.cdp-map-wrap {
  border-radius: var(--cdp-radius);
  overflow: hidden;
  box-shadow: var(--cdp-shadow);
  height: 400px;
}
.cdp-map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ---- FOOTER ---- */
.site-footer, #colophon {
  background: var(--cdp-dark) !important;
  color: rgba(255,255,255,0.7) !important;
  padding: 0 !important;
}
.cdp-footer {
  background: var(--cdp-dark);
  color: rgba(255,255,255,0.7);
}
.cdp-footer-top {
  padding: 60px 40px 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.cdp-footer-brand img { max-height: 80px; margin-bottom: 20px; }
.cdp-footer-brand p { font-size: 14px; line-height: 1.8; margin-bottom: 20px; }
.cdp-footer-social { display: flex; gap: 12px; }
.cdp-social-link {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cdp-white);
  text-decoration: none;
  font-size: 16px;
  transition: var(--cdp-transition);
}
.cdp-social-link:hover { background: var(--cdp-red); color: var(--cdp-white); }
.cdp-footer-heading {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cdp-white);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--cdp-red);
  display: inline-block;
}
.cdp-footer-links { list-style: none; padding: 0; margin: 0; }
.cdp-footer-links li { margin-bottom: 10px; }
.cdp-footer-links a {
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  text-decoration: none;
  transition: var(--cdp-transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.cdp-footer-links a:hover { color: var(--cdp-red); padding-left: 4px; }
.cdp-footer-hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.cdp-footer-hours-row span:last-child { color: var(--cdp-gold); }
.cdp-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 40px;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  max-width: 1200px;
  margin: 0 auto;
}
.cdp-footer-bottom a { color: rgba(255,255,255,0.6); }
.cdp-footer-bottom a:hover { color: var(--cdp-red); }

/* ---- WooCommerce Overrides ---- */
.woocommerce .products .product .woocommerce-loop-product__title {
  font-family: 'Playfair Display', serif !important;
  font-size: 1.1rem !important;
}
.woocommerce a.button,
.woocommerce button.button,
.woocommerce .button {
  background: var(--cdp-red) !important;
  color: var(--cdp-white) !important;
  border-radius: 8px !important;
  font-family: 'Poppins', sans-serif !important;
  font-weight: 700 !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  font-size: 12px !important;
  transition: var(--cdp-transition) !important;
}
.woocommerce a.button:hover,
.woocommerce button.button:hover {
  background: var(--cdp-red-dark) !important;
  color: var(--cdp-white) !important;
}
.woocommerce .price { color: var(--cdp-green) !important; font-family: 'Playfair Display', serif !important; }
.woocommerce-breadcrumb { font-size: 13px; color: #999; }
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  border-radius: 6px !important;
}
.woocommerce nav.woocommerce-pagination ul li a:focus,
.woocommerce nav.woocommerce-pagination ul li a:hover,
.woocommerce nav.woocommerce-pagination ul li span.current {
  background: var(--cdp-red) !important;
  color: var(--cdp-white) !important;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .cdp-footer-top { grid-template-columns: 1fr 1fr; }
  .cdp-info-grid { grid-template-columns: 1fr; gap: 40px; }
  .cdp-lunch-banner { grid-template-columns: 1fr; text-align: center; }
  .cdp-lunch-hours { justify-content: center; }
}

@media (max-width: 768px) {
  .cdp-section { padding: 60px 20px; }
  .cdp-hero-content { padding: 60px 20px; }
  .cdp-delivery-grid { grid-template-columns: 1fr; }
  .cdp-categories-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .cdp-footer-top { grid-template-columns: 1fr; gap: 32px; padding: 40px 20px; }
  .cdp-footer-bottom { padding: 20px; }
  .cdp-phone-float { bottom: 20px; right: 16px; }
  .cdp-phone-btn { padding: 12px 18px; font-size: 14px; }
  .cdp-form-row { grid-template-columns: 1fr; }
  .cdp-contact-form-wrap { padding: 28px 20px; }
  .cdp-lunch-banner { padding: 40px 24px; }
  .cdp-catering-packages { grid-template-columns: 1fr; }
  .cdp-hero-stats { gap: 24px; }
  .cdp-hero-cta { flex-direction: column; align-items: flex-start; }
  .cdp-btn { width: 100%; justify-content: center; }
  .cdp-menu-section { padding: 40px 20px; }
  .cdp-tabs { overflow-x: auto; }
  .cdp-tab-btn { padding: 12px 20px; font-size: 12px; white-space: nowrap; }
}

@media (max-width: 480px) {
  .cdp-categories-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .cdp-cat-name { font-size: 1rem; }
  .cdp-timer { gap: 8px; }
  .cdp-timer-block { min-width: 60px; padding: 12px 14px; }
  .cdp-timer-num { font-size: 1.8rem; }
  .cdp-featured-grid { grid-template-columns: 1fr; }
}

/* ---- ANIMATIONS ---- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.cdp-animate {
  animation: fadeInUp 0.6s ease forwards;
}
.cdp-animate-delay-1 { animation-delay: 0.1s; opacity: 0; }
.cdp-animate-delay-2 { animation-delay: 0.2s; opacity: 0; }
.cdp-animate-delay-3 { animation-delay: 0.3s; opacity: 0; }
.cdp-animate-delay-4 { animation-delay: 0.4s; opacity: 0; }

/* ---- OPEN/CLOSED STATUS ---- */
.cdp-status-open {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(39,174,96,0.15);
  color: #27ae60;
  border: 1px solid rgba(39,174,96,0.3);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.cdp-status-open::before {
  content: '';
  width: 8px;
  height: 8px;
  background: #27ae60;
  border-radius: 50%;
  animation: blink 1.5s infinite;
}
.cdp-status-closed {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(192,57,43,0.15);
  color: var(--cdp-red);
  border: 1px solid rgba(192,57,43,0.3);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.cdp-status-closed::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--cdp-red);
  border-radius: 50%;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* ---- HIDE PAGE TITLE ON FULL-WIDTH PAGES ---- */
.cdp-home .entry-title,
.cdp-home .ast-page-single-title,
.cdp-catering-page .entry-title,
.cdp-catering-page .ast-page-single-title,
.cdp-contact-page .entry-title,
.cdp-contact-page .ast-page-single-title,
.cdp-menu-page .entry-title,
.cdp-menu-page .ast-page-single-title,
.page-id-291 .entry-title,
.page-id-292 .entry-title,
.page-id-293 .entry-title,
.page-id-291 .ast-page-single-title,
.page-id-292 .ast-page-single-title,
.page-id-293 .ast-page-single-title {
  display: none !important;
}

/* Hide page header section on these pages */
.cdp-home .ast-page-single-title-wrap,
.cdp-catering-page .ast-page-single-title-wrap,
.cdp-contact-page .ast-page-single-title-wrap,
.page-id-291 .ast-page-single-title-wrap,
.page-id-292 .ast-page-single-title-wrap,
.page-id-293 .ast-page-single-title-wrap {
  display: none !important;
}

/* Remove extra padding from entry content on full pages */
.cdp-home .entry-content,
.cdp-catering-page .entry-content,
.cdp-contact-page .entry-content {
  padding: 0 !important;
  margin: 0 !important;
}

/* Remove container padding on full-width pages */
.cdp-home .ast-container,
.cdp-catering-page .ast-container,
.cdp-contact-page .ast-container {
  max-width: 100% !important;
  padding: 0 !important;
}

/* Site header with logo */
.ast-site-identity .site-logo-img img,
.ast-site-identity .custom-logo-link img {
  max-height: 65px !important;
  width: auto !important;
  display: block;
}

/* Ensure header is dark */
.site-header {
  background-color: #111111 !important;
}

/* Nav menu color fix */
.ast-main-navigation .menu-item > a,
.main-header-menu .menu-item > a {
  color: #ffffff !important;
}

/* Scroll reveal */

.cdp-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.cdp-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   MENU PAGE - Full Custom Menu with Sliding Category Nav
   ============================================================ */

/* Menu page wrapper */
.cdp-menu-page-wrap {
  background: #f5f0e8;
  min-height: 100vh;
}

/* Menu Hero */
.cdp-menu-hero {
  position: relative;
  height: 320px;
  background: url('/wp-content/uploads/2026/06/pizza_hero.webp') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.cdp-menu-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,74,26,0.85) 0%, rgba(0,0,0,0.7) 100%);
}
.cdp-menu-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
}
.cdp-menu-hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: #fff;
  margin: 12px 0 8px;
  line-height: 1.1;
}
.cdp-menu-hero-content h1 em {
  color: #e74c3c;
  font-style: italic;
}
.cdp-menu-hero-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  margin: 0;
}

/* Sticky Category Nav */
.cdp-menu-sticky-nav {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #1a1a1a;
  border-bottom: 3px solid #e74c3c;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.cdp-menu-sticky-inner {
  display: flex;
  overflow-x: auto;
  gap: 0;
  padding: 0 12px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
}
.cdp-menu-sticky-inner::-webkit-scrollbar {
  display: none;
}
.cdp-menu-cat-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 18px;
  color: rgba(255,255,255,0.75) !important;
  text-decoration: none !important;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  transition: all 0.2s ease;
  cursor: pointer;
}
.cdp-menu-cat-link:hover,
.cdp-menu-cat-link.active {
  color: #fff !important;
  border-bottom-color: #e74c3c;
  background: rgba(255,255,255,0.05);
}

/* Menu Sections Wrapper */
.cdp-menu-sections-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px 80px;
}

/* Individual Menu Section */
.cdp-menu-section {
  margin-bottom: 60px;
  scroll-margin-top: 80px;
}
.cdp-menu-section-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 2px solid #e8e0d0;
}
.cdp-menu-section-icon {
  font-size: 2rem;
  width: 56px;
  height: 56px;
  background: #1a4a1a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cdp-menu-section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
}

/* Menu Items Grid */
.cdp-menu-items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

/* Individual Menu Item Card */
.cdp-menu-item {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}
.cdp-menu-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.15);
}
.cdp-menu-item-img {
  height: 160px;
  background-size: cover;
  background-position: center;
  background-color: #f0ebe0;
  flex-shrink: 0;
}
.cdp-menu-item-body {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.cdp-menu-item-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 6px;
  line-height: 1.3;
}
.cdp-menu-item-desc {
  font-size: 0.82rem;
  color: #666;
  margin: 0 0 12px;
  line-height: 1.5;
  flex: 1;
}
.cdp-menu-item-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}
.cdp-menu-item-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a4a1a;
}
.cdp-menu-item-price .woocommerce-Price-amount {
  color: #1a4a1a;
  font-weight: 700;
}
.cdp-menu-item-btn {
  display: inline-block;
  padding: 8px 18px;
  background: #e74c3c;
  color: #fff !important;
  text-decoration: none !important;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: background 0.2s ease;
}
.cdp-menu-item-btn:hover {
  background: #c0392b !important;
  color: #fff !important;
}

/* Menu page - remove Astra container padding */
.cdp-menu-page .entry-content,
.cdp-menu-page .ast-container,
.page-id-7 .entry-content,
.page-id-7 .ast-container {
  padding: 0 !important;
  margin: 0 !important;
  max-width: 100% !important;
}
.cdp-menu-page header.entry-header,
.page-id-7 header.entry-header {
  display: none !important;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .cdp-menu-hero {
    height: 220px;
  }
  .cdp-menu-cat-link {
    padding: 12px 14px;
    font-size: 0.75rem;
  }
  .cdp-menu-items-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .cdp-menu-item-img {
    height: 120px;
  }
  .cdp-menu-item-name {
    font-size: 0.88rem;
  }
  .cdp-menu-sections-wrap {
    padding: 24px 12px 60px;
  }
}
@media (max-width: 480px) {
  .cdp-menu-items-grid {
    grid-template-columns: 1fr;
  }
}
