/*
Theme Name: Aunt Betty's Halal Soul Food Theme
Theme URI: https://auntbettys.com/
Author: Aunt Betty's Development Team
Author URI: https://auntbettys.com/
Description: A custom WordPress theme for Aunt Betty's Halal Soul Food restaurant featuring responsive design, customizer integration, and dynamic content management for menu items, testimonials, and restaurant information.
Version: 1.0.0
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: aunt-betty-theme
Domain Path: /languages
Tags: restaurant, food, business, responsive, custom-menu, custom-logo, featured-images, threaded-comments, translation-ready
*/



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Headings use DM Serif Text */
h1, h2, h3, h4, h5, h6 {
  font-family: 'DM Serif Text', serif;
  font-weight: 400; /* DM Serif is display font, no bold needed */
  line-height: 1.2;
}


html, body {
   margin: 0;
   padding: 0;
   border: 0;
   background-color: #000;
   font-family: 'Jost', sans-serif;
    font-weight: 400;
   color: #fff;
   line-height: 1.6;
   overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Labels */
.section-label {
    color: #9ACD32;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

/* Section Titles */
.section-title {
     font-size: 2.5rem;
     font-weight: 400;
     line-height: 1.2;
     color: #ffffff;
     margin-bottom: 25px;
     font-family: 'DM Serif Text', serif;
}

/* Section Descriptions */
.section-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    line-height: 1.7;
    max-width: 600px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: #9ACD32;
    color: #ffffff;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(154, 205, 50, 0.3);
}

.btn-primary:hover {
    background-color: #8BC34A;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(154, 205, 50, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

.btn-secondary:hover {
    background-color: #ffffff;
    color: #000000;
    border-color: #ffffff;
}

.btn-outline {
    background: transparent;
    color: #9ACD32;
    border: 2px solid #9ACD32;
}

.btn-outline:hover {
    background-color: #9ACD32;
    color: #000000;
}

/* .btn-order {
    background-color: #DC3545;
    color: #ffffff;
    padding: 10px 20px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 25px;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-order:hover {
    background-color: #c82333;
    transform: translateY(-2px);
} */

.btn-order {
    display: inline-block;
    padding: 10px 18px;
    background: #e63946;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    border-radius: 32px;
    transition: background 0.3s ease;
    max-width: 50%;
}

.btn-order:hover {
    background: #ff4d5a;
}

.btn-details {
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 16px;
    font-size: 11px;
}

/* ===========================
   MOBILE NAVIGATION FIX - NO BLACK LINE
   Replace your mobile nav styles with this
   =========================== */

/* Mobile toggle button - hidden by default */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
  border-radius: 4px;
  transition: all 0.3s ease;
  z-index: 10001;
}

.nav-toggle:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* ===========================
   MOBILE RESPONSIVE (768px and below)
   =========================== */
@media (max-width: 768px) {
  .header {
    margin: 0 0 !important;
    border-radius: 0 !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
    padding: 15px 0;
  }

  .header .container {
    padding: 0 20px !important;
    max-width: 100% !important;
  }

  .header-content {
    gap: 15px;
    width: 100%;
  }

  /* Show mobile toggle */
  .nav-toggle {
    display: block !important;
    order: 2;
  }

  .logo {
    order: 1;
  }

  .header-cta {
    order: 3;
    gap: 12px;
  }

  /* Mobile Navigation Overlay */
  .nav {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background-color: rgba(0,0,0,0.98) !important;
    backdrop-filter: blur(10px) !important;
    z-index: 10000 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transform: translateX(-100%) !important;
    transition: transform 0.3s ease !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
  }

  .nav.open {
    transform: translateX(0) !important;
  }

  .nav-menu {
    flex-direction: column !important;
    gap: 2rem !important;
    text-align: center !important;
    padding: 0 !important;
    margin: 0 !important;
    list-style: none !important;
    width: 100% !important;
  }

  .nav-menu li {
    display: block !important;
    width: 100% !important;
  }

  .nav-link {
    font-size: 1.8rem !important;
    font-weight: 600 !important;
    color: #ffffff !important;
    background-color: transparent !important;
    padding: 1rem 2rem !important;
    display: block !important;
    border-radius: 8px !important;
    width: 100% !important;
  }

  .nav-link:hover,
  .nav-link.active:hover {
    color: #9ACD32 !important;
    background-color: rgba(154, 205, 50, 0.1) !important;
  }

  /* Hide call button on mobile, keep cart */
  .header-cta .cta-phone {
    display: none !important;
  }

  .header-cart {
    display: flex !important;
  }

  .logo-image {
    height: 30px !important;
    max-width: 80px !important;
  }
}

/* Prevent body scroll when mobile menu is open */
body.nav-open {
  overflow: hidden !important;
  position: fixed !important;
  width: 100% !important;
  height: 100% !important;
}

/* ===========================
   SMALLER MOBILE (max 640px)
   =========================== */
@media (max-width: 640px) {
  .header {
    padding: 12px 0 !important;
  }

  .header .container {
    padding: 0 15px !important;
  }

  .logo-image {
    height: 28px !important;
    max-width: 70px !important;
  }

  .nav-link {
    font-size: 1.5rem !important;
  }

  .nav-toggle {
    font-size: 1.3rem !important;
  }
}

/* ===========================
   EXTRA SMALL MOBILE (max 375px)
   =========================== */
@media (max-width: 375px) {
  .header .container {
    padding: 0 10px !important;
  }

  .logo-image {
    height: 25px !important;
    max-width: 60px !important;
  }

  .header-cart {
    width: 32px !important;
    height: 32px !important;
  }

  .nav-link {
    font-size: 1.3rem !important;
    padding: 0.8rem 1.5rem !important;
  }
}



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

/* Background Slider Container */
.hero-bg-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* Individual Slides */
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

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

/* Dark Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
    z-index: 1;
}

/* Fallback gradient background */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2d1b0e 0%, #3d2314 25%, #4a2d1a 50%, #573822 75%, #654321 100%);
    z-index: -1;
}

/* Override container only inside hero */
.hero .container {
    margin: 0;
    max-width: 100%;
    padding: 0 180px;
    margin-top: 120px;
    z-index: 2;
    position: relative;
}

/* Content box */
.hero-content {
    max-width: 600px;
    z-index: 2;
    text-align: left;
    padding: 40px 0;
    margin: 0;
}

/* Title */
.hero-title {
    font-size: 4.2rem;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #ffffff;
    text-align: left;
    letter-spacing: -0.5px;
    font-family: 'DM Serif Text', serif;
}

.hero-highlight {
    color: #9ACD32;
}

/* Description */
.hero-description {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    max-width: 480px;
    line-height: 1.7;
    text-align: left;
    font-weight: 400;
}

/* Buttons */
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
}

/* Slider Navigation Dots */
.hero-slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

.dot.active {
    background: #9ACD32;
    border-color: rgba(255, 255, 255, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .hero .container {
        padding: 0 40px;
        margin-top: 80px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-slider-dots {
        bottom: 20px;
    }
}
/* About Section */
.about {
    padding: 100px 0;
    background-color: #000;
    color: #fff;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text .section-label {
    color: #9ACD32;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-text .section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-text .section-description {
    font-size: 16px;
    font-weight: 300;
    color: #ccc;
    margin-bottom: 30px;
    line-height: 1.6;
}

.about-text .btn {
    display: inline-block;
    background-color: #9ACD32;
    color: #ffffff;
    padding: 12px 28px;
    text-decoration: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.about-text .btn:hover {
    background-color: #8BC34A;
    transform: translateY(-2px);
}

/* Outer container */
.image-gallery-container {
  border: 1px solid #4c4a4a;
  background: transparent;
  padding: 8px;
  display: block;
  max-width: 500px;   /* adjust width */
  margin: 0 auto;
}

.about-image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr; /* two equal columns */
  gap: 8px;
}

/* left food column */
.food-images {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* each food image fills half the column */
.food-images .about-image {
  flex: 1;
  overflow: hidden;
}

.food-images .about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* right chef image fills entire column */
.chef-image {
  overflow: hidden;
  height: 100%;
}

.chef-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}




/* Why Choose Us */
.why-choose {
    padding: 100px 0;
    background-color: #000000;
}

.why-choose-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
    align-items: flex-start;
}

.why-choose-text {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    width: 100%;
}

.why-choose-header {
    flex: 1;
}

.why-choose-header .section-title {
    margin-bottom: 0;
    text-align: left;
}

.why-choose-description {
    flex: 1;
    text-align: left;
}

.why-choose-description .section-description {
    margin: 0;
    text-align: left;
    max-width: none;
}

.why-choose-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card-new {
    text-align: center;
    padding: 40px 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
    height: 350px;
}

.feature-card-new:hover {
    transform: translateY(-5px);
}

.feature-icon-new {
    width: 100px;
    height: 100px;
    background-color: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.feature-icon-new img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    opacity: 1;
    display: block;
    z-index: 2;
    position: relative;
}

.icon-fallback {
    width: 50px;
    height: 50px;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    z-index: 1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.feature-title-new {
     font-size: 24px;
     font-weight: 600;
     margin-bottom: 20px;
     color: #ffffff;
     line-height: 1.3;
     font-family: 'Jost', sans-serif;
}

.feature-description-new {
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
}

/* Featured Menu */
.featured-menu {
    padding: 100px 0;
    background-color: #000000;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header .section-description {
    text-align: center;
    margin: 0 auto;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.menu-item {
    background: rgba(128, 128, 128, 0.15);
    border-radius: 0px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
    height: 550px;
}

.menu-item:hover {
    transform: translateY(-5px);
}

.menu-item-image {
    width: 100%;
    height: 280px;
    background-size: cover;
    background-position: center;
}

.menu-item-content {
    padding: 25px;
    background: transparent;
}

.menu-item-1 {
    background-image: url('images/delicious-pasta-plate 1.png');
    background-color: #333;
}
.menu-item-2 {
    background-image: url('images/healthy-vegetarian-meal-rustic-wooden-table-generated-by-ai 1.png');
    background-color: #444;
}
.menu-item-3 {
    background-image: url('images/hot-grilled-spare-ribs-with-barbecue-sauce-with-fire-ai-generative 1.png');
    background-color: #333;
}
.menu-item-4 {
    background-image: url('images/grilled-beef-cooked-cast-iron-grill-generated-by-ai 1.png');
    background-color: #444;
}
.menu-item-5 {
    background-image: url('images/delicious-christmas-dinner-food 1.png');
    background-color: #333;
}
.menu-item-6 {
    background-image: url('images/thai-food-green-curry-chicken-ai-generated-image 1.png');
    background-color: #444;
}

.menu-item-content {
    padding: 25px;
}

.menu-item-title {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #ffffff;
    font-family: 'Jost', sans-serif;
}

.menu-item-price {
    color: #9ACD32;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.menu-item-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    line-height: 1.3;
    margin-bottom: 20px;
    text-align: center;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    word-wrap: break-word;
    word-break: break-word;
}

.menu-item-buttons {
    display: flex;
    gap: 10px;
}

/* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            z-index: 9999;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            /* background-color: rgba(197, 197, 197, 0.9); */
            backdrop-filter: blur(20px);
        }

        .modal.show {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .modal-content {
            background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
            /* border: 2px solid #9ACD32; */
            border-radius: 20px;
            padding: 40px;
            max-width: 800px;
            width: 90%;
            max-height: 90vh;
            position: relative;
            /* box-shadow: 0 20px 60px rgba(154, 205, 50, 0.3); */
        }

        .modal-close {
            position: absolute;
            top: 15px;
            right: 20px;
            font-size: 28px;
            color: #9ACD32;
            cursor: pointer;
            background: none;
            border: none;
            transition: color 0.3s ease;
        }

        .modal-close:hover {
            color: #8BC34A;
        }

        .modal-body {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: start;
        }

        .modal-image {
            width: 100%;
            height: 300px;
            background-size: cover;
            background-position: center;
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .modal-info {
            color: #fff;
        }

        .modal-title {
            font-family: 'DM Serif Text', serif;
            font-size: 2.5rem;
            color: #9ACD32;
            margin-bottom: 15px;
        }

        .modal-price {
            font-size: 1.8rem;
            color: #9ACD32;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .modal-description {
            font-size: 1rem;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 30px;
        }

        .quantity-selector {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 30px;
        }

        .quantity-btn {
            background: #9ACD32;
            color: #000;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .quantity-btn:hover {
            background: #8BC34A;
            transform: scale(1.1);
        }

        .quantity-display {
            font-size: 1.2rem;
            font-weight: 600;
            color: #9ACD32;
            min-width: 50px;
            text-align: center;
        }

        .add-to-cart-btn {
            background: linear-gradient(135deg, #9ACD32, #8BC34A);
            color: #000;
            border: none;
            padding: 15px 40px;
            border-radius: 30px;
            font-size: 1rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s ease;
            /* box-shadow: 0 8px 25px rgba(154, 205, 50, 0.4); */
        }

        .add-to-cart-btn:hover {
            background: linear-gradient(135deg, #8BC34A, #7CB342);
            transform: translateY(-2px);
            /* box-shadow: 0 12px 35px rgba(154, 205, 50, 0.6); */
        }

        .modal-meta {
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .modal-meta-item {
            margin-bottom: 10px;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
        }

        .modal-meta-label {
            color: #9ACD32;
            font-weight: 600;
        }

        @media (max-width: 768px) {
            .modal-content {
                padding: 20px;
                margin: 20px;
            }

            .modal-body {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .modal-title {
                font-size: 2rem;
            }

            .modal-image {
                height: 200px;
            }
        }

/* Friday Special */
.friday-special {
    position: relative;
    width: 100%;
    height: 100vh;
    /* background-color: #000000; */
    background-image: url('images/top-view-eid-al-fitr-celebration-with-delicious-food 1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-attachment: fixed;
}

.friday-special::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.4) 15%,
        rgba(0, 0, 0, 0.0) 35%,
        rgba(0, 0, 0, 0.0) 65%,
        rgba(0, 0, 0, 0.4) 85%,
        rgba(0, 0, 0, 0.85) 100%
    );
    z-index: 1;
    pointer-events: none;
}


.special-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 80px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.special-image {
    width: 100%;
    height: 400px;
    background: transparent;
    border-radius: 12px;
    /* border: 1px solid rgba(255, 255, 255, 0.1); */
    position: relative;
    overflow: hidden;
}

.special-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/30152b53-7102-43ec-88e0-1c609c7d71bf 1.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 2;
    pointer-events: none;
}

.special-offers {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 30px;
}

.discount-text {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
}

.special-menu {
    /* border: solid #ffffff; */
    width: 100%;
    max-width: 1150px;
    margin: 0 auto;
    padding: 80px 20px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    /* gap: 1px; */
    align-items:center;
}


.special-menu-header {
    /* border: solid #ffffff; */
    width: 500px;
    /* max-width: 100%; */
}

.special-menu-grid {
    /* border: solid #ffffff; */
    display: flex;
    gap: 25px;
    width: 100%;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.special-menu-grid::-webkit-scrollbar {
    display: none; /* Chrome, Safari, and Opera */
}


.special-menu-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0px;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 420px; /* increased height */
    width: 300px;
    flex-shrink: 0;
}

.special-menu-item:hover {
    transform: translateY(-5px);
}

.special-menu-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.special-menu-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.special-menu-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.special-menu-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #fff;
    font-family: 'Jost', sans-serif;
}

.special-menu-price {
    color: #9ACD32; /* green */
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.special-menu-description {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
    flex-grow: 1;
}

.btn-order {
    display: inline-block;
    padding: 10px 18px;
    background: #e63946;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    border-radius: 32px;
    transition: background 0.3s ease;
    max-width: 50%;
}

.btn-order:hover {
    background: #ff4d5a;
}


/* Reservation */
.reservation {
  padding: 100px 0;
  background-color: #000000;
}

.reservation-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.reservation-image {
  border: 1px solid #4c4a4a;
  padding: 15px; /* creates space between border and inner bg */
  background-color: #000; /* the "gap" will look black */
}

.reservation-bg {
  width: 100%;
  height: 500px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url('images/drinks-glasses-new-year-eve-celebration 1.png');
  background-size: cover;
  background-position: center;
}

.reservation-image-about {
  border: 1px solid #4c4a4a;
  padding: 15px; /* creates space between border and inner bg */
  background-color: #000; /* the "gap" will look black */
}

.reservation-bg-about {
  width: 100%;
  height: 500px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url('images/about.png');
  background-size: cover;
  background-position: center;
}

/* Text styles */
.reservation-text .section-label {
  color: #9ACD32;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.reservation-text .section-title {
  font-size: 2.8rem;
  font-weight: 400;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 25px;
}

.reservation-text .section-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 500px;
}


:root {
  --card-w: 500px;
}

/* main layout */
.testimonials {
  padding: 100px 0;
  background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.85) 0%,
      rgba(0, 0, 0, 0.4) 15%,
      rgba(0, 0, 0, 0.0) 35%,
      rgba(0, 0, 0, 0.0) 65%,
      rgba(0, 0, 0, 0.4) 85%,
      rgba(0, 0, 0, 0.85) 100%
    ),
    url('images/ordinary-life-scene-from-mall-america 1.png');
  background-size: cover;
  background-position: center;
}

.testimonials-content {
  display: flex;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  align-items: flex-start;
}

.testimonials-slider {
  overflow: hidden;
  width: 600px;
  position: relative;
}

.testimonials-cards {
  display: flex;
  gap: 30px;
  transition: transform 0.6s ease;
}

.testimonial-card {
  flex: 0 0 var(--card-w);
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease;
  box-sizing: border-box;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

/* stars */
.testimonial-rating {
  color: #9acd32;
  font-size: 18px;
  margin-bottom: 16px;
}

/* text */
.testimonial-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
  font-style: italic;
}

/* author */
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
}

.avatar1 {
  background-image: url('images/brunette-business-woman-with-wavy-long-hair-blue-eyes-stands-holding-notebook-hands 1.png');
}

.avatar2 {
  background-image: url('images/businessman-with-jacket 1.png');
}

.author-name {
  color: #fff;
  font-weight: 600;
  font-size: 16px;
}

.author-title {
  color: #9acd32;
  font-size: 13px;
}

/* buttons */
.testimonial-nav {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.testimonial-btn {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  transition: background 0.3s;
}

.testimonial-btn:hover {
  background: #9acd32;
  color: #000;
}

/* ✅ MOBILE FIXES — no slider, stacked cards */
@media (max-width: 1024px) {
  .testimonials-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .testimonial-nav {
    display: none; /* hide slider buttons */
  }

  .testimonials-slider {
    overflow: visible;
    width: 100%;
  }

  .testimonials-cards {
    flex-direction: column;
    gap: 20px;
    transform: none !important;
  }

  .testimonial-card {
    flex: 1 1 100%;
    width: 100%;
    padding: 25px;
  }
}

@media (max-width: 480px) {
  .testimonial-text {
    font-size: 14px;
  }

  .author-avatar {
    width: 48px;
    height: 48px;
  }

  .section-title {
    font-size: 22px;
  }

  .section-description {
    font-size: 14px;
  }

  .testimonials {
    padding: 60px 0;
  }
}




/* RESPONSIVE: stack on small screens */
@media (max-width: 900px){
  .testimonials-content{ grid-template-columns: 1fr; gap:30px; }
  .testimonials-cards{
    width: 100%;
    overflow-x: auto;
    scroll-behavior: smooth;
  }
  .cards-inner{ flex-direction: column; gap:20px; }
  .testimonial-card{ flex: 1 1 auto; min-width: 0; width: 100%; transform: none; }
}




/* ===========================
   FOOTER SECTION - FIXED BLACK LINE ISSUE
   =========================== */

.footer {
    background:
        linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.4) 15%,
        rgba(0, 0, 0, 0.0) 35%,
        rgba(0, 0, 0, 0.0) 65%,
        rgba(0, 0, 0, 0.4) 85%,
        rgba(0, 0, 0, 0.85) 100%
    ),
        url('images/dinner-table-setup-with-delicious-food-ready-be-served 1.png');
    background-size: cover;
    background-position: center;
    background-color: #111111;
    padding: 80px 0 0;
    margin: 0;
    width: 100%;
    overflow-x: hidden;
}

/* Main footer content grid */
.footer-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
    padding: 0 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Logo section */
.footer-section:first-child {
    max-width: 280px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo-image {
    height: 50px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    margin-bottom: 20px;
}

.footer-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
}

/* Section titles */
.footer-title {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    text-transform: capitalize;
}

/* Get in Touch section */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-contact p::before {
    content: '';
    width: 18px;
    height: 18px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact p:nth-child(1)::before {
    background-image: url('images/Location.png');
}

.footer-contact p:nth-child(2)::before {
    background-image: url('images/Phone.png');
}

.footer-contact p:nth-child(3)::before {
    background-image: url('images/Clock.png');
}

/* Quick Links & Social Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
    display: inline-block;
}

.footer-links a:hover {
    color: #9ACD32;
}

/* Map Section - Full Width Below Grid */
.footer-map-section {
    width: 100%;
    padding: 0 20px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-map-section .footer-title {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-map {
    width: 100%;
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-map iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding: 30px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(0, 0, 0, 0.3);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    margin: 0;
}

/* ===========================
   RESPONSIVE FOOTER
   =========================== */

/* Tablets */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .footer-section:first-child {
        max-width: 100%;
    }
    
    .footer-map {
        height: 250px;
    }
}

/* Mobile - THIS IS THE FIX */
@media (max-width: 768px) {
    /* Remove container padding on mobile */
    .footer > .container {
        padding: 0 !important;
        margin: 0 !important;
        max-width: 100% !important;
    }
    
    .footer {
        padding: 60px 0 0;
        margin: 0 !important;
        background-attachment: scroll;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 40px;
        padding: 0 20px;
    }
    
    .footer-section {
        text-align: left;
    }
    
    .footer-section:first-child {
        text-align: left;
    }
    
    .footer-map-section {
        padding: 0 20px 30px;
    }
    
    .footer-map {
        height: 250px;
    }
    
    .footer-bottom {
        padding: 25px 20px;
    }
}

@media (max-width: 480px) {
    .footer-content {
        padding: 0 15px;
    }
    
    .footer-map-section {
        padding: 0 15px 30px;
    }
    
    .footer-title {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .footer-text,
    .footer-contact p,
    .footer-links a {
        font-size: 13px;
    }
    
    .footer-map {
        height: 200px;
    }
    
    .footer-bottom {
        padding: 25px 15px;
    }
    
    .footer-bottom p {
        font-size: 12px;
    }
}
.header-cart {
  margin-left: 20px;
  display: flex;
  align-items: center;
}

.cart-contents {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
}

.cart-icon {
  font-size: 22px;
  margin-right: 6px;
}

.cart-count {
  background-color: #dc3545;
  color: white;
  border-radius: 50%;
  padding: 3px 8px;
  font-size: 0.9rem;
  font-weight: 700;
  min-width: 20px;
  text-align: center;
}


/* Touch-friendly button sizing */
/* Enhanced Touch and Accessibility Support */
@media (hover: none) and (pointer: coarse) {
    .btn,
    .btn-primary,
    .btn-secondary,
    .btn-order,
    .cta-button {
        min-height: 48px;
        min-width: 48px;
        padding: 16px 24px;
        font-size: 14px;
    }

    .nav-link {
        padding: 14px 18px;
        font-size: 14px;
    }

    .testimonial-card {
        padding: 35px 25px;
        min-height: 200px;
    }

    .special-menu-item {
        padding: 18px;
        min-height: 400px;
    }

    .footer-contact p {
        padding: 8px 0;
        min-height: 24px;
    }

    /* Remove hover effects on touch devices */
    .btn:hover,
    .nav-link:hover,
    .testimonial-card:hover,
    .special-menu-item:hover {
        transform: none;
        opacity: 1;
    }
}

/* Performance optimizations for mobile */
@media (max-width: 768px) {
.hero,
.friday-special,
.testimonials,
.footer {
    background-attachment: scroll;
}

.testimonial-card,
.special-menu-item,
.menu-item {
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.btn,
.nav-link {
    -webkit-tap-highlight-color: rgba(154, 205, 50, 0.3);
    touch-action: manipulation;
}

/* Optimize images for mobile */
.special-menu-image img,
.testimonial-card,
.footer-map {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
.author-avatar,
.footer-contact p::before {
    image-rendering: -webkit-optimize-contrast;
}
}

/* Enhanced Responsive Design */
@media (max-width: 1024px) {
    .friday-special {
        background-attachment: scroll;
        height: auto;
        min-height: 100vh;
        padding: 80px 0;
    }

    .why-choose-content {
        gap: 40px;
    }

    .why-choose-text {
        flex-direction: column;
        gap: 30px;
    }

    .why-choose-text {
        text-align: center;
    }

    .why-choose-text .section-title {
        text-align: center;
    }

    .why-choose-text .section-description {
        text-align: center;
        margin: 0 auto;
    }

    .special-menu {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 60px 20px;
    }

    .special-menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        justify-content: center;
        max-width: none;
        margin: 0 auto;
    }

    .features-grid,
    .menu-grid,
    .why-choose-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .friday-special {
        padding: 60px 0;
        min-height: 80vh;
        background-attachment: scroll;
    }

    .special-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .special-image {
        height: 300px;
        order: -1;
    }

    .header {
        position: sticky;
        top: 0;
        margin: 0;
        padding: 15px 0;
        border-radius: 0;
    }

    .header-content {
        padding: 0 15px;
    }

    /* .nav-menu {
        display: none;
    } */

    .logo-image {
        height: 30px;
        max-width: 80px;
    }

    .cta-button {
        padding: 12px 20px;
        font-size: 10px;
    }

    .logo-image {
        height: 35px;
        max-width: 100px;
    }

    .footer-logo-image {
        height: 40px;
        max-width: 120px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .hero {
        min-height: 80vh;
        padding: 80px 0 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .hero-content {
        max-width: 600px;
        justify-content: center;
        text-align: center;
        /* align-items: center; */
        padding: 20px;
    }

    .hero-title {
        font-size: 2.8rem;
        margin-bottom: 20px;
    }

    .hero-description {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .about-text .section-title {
        font-size: 28px;
        text-align: center;
    }

    .about-text .section-description {
        text-align: center;
        margin: 0 auto 30px;
    }

    .reservation {
        padding: 60px 0;
    }

    .reservation-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
        padding: 0 15px;
    }

    .reservation-image {
        height: 250px;
        order: -1;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .reservation-text {
        text-align: center;
        max-width: 500px;
        margin: 0 auto;
    }

    .reservation-text .section-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .reservation-text .section-description {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 30px;
    }

    .reservation-text .btn {
        display: inline-block;
        margin: 0 auto;
    }

    .testimonials-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .testimonials-header {
        text-align: center;
    }

    .testimonials-header .section-title {
        font-size: 2.2rem;
        text-align: center;
    }

    .testimonials-cards {
        max-width: none;
        gap: 25px;
    }

    .testimonials-cards .testimonial-card:nth-child(2) {
        transform: none;
        opacity: 1;
    }

    .hero-content,
    .about-content,
    .special-content,
    .reservation-content,
    .testimonials-header,
    .section-header {
        text-align: center;
        align-items: center;
    }

    .reservation-image-container {
        width: calc(100% + 20px);
        height: calc(400px + 20px);
        margin: -10px;
    }

    .testimonials-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 15px;
    }

    .testimonials-cards {
        max-width: none;
        width: 100%;
    }

    .testimonials-cards .testimonial-card:nth-child(2) {
        transform: translateX(20px);
        opacity: 0.9;
    }

    .testimonial-card {
        padding: 30px 20px;
        min-height: auto;
    }

    .why-choose-content {
        gap: 30px;
        padding: 0 15px;
    }

    .why-choose-text {
        flex-direction: column;
        gap: 25px;
        text-align: center;
        align-items: center;
        width: 100%;
    }

    .why-choose-header {
        text-align: center;
    }

    .why-choose-header .section-title {
        text-align: center;
        font-size: 2.2rem;
    }

    .why-choose-description {
        text-align: center;
        width: 100%;
    }

    .why-choose-description .section-description {
        text-align: center;
        margin: 0 auto;
        max-width: 600px;
    }

    .why-choose-cards {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 10px;
    }

    .feature-card-new {
        padding: 30px 20px;
        height: auto;
        min-height: 280px;
    }

    .menu-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 15px;
    }

    .menu-item {
        height: auto;
        min-height: 350px;
        margin-bottom: 15px;
    }

    .featured-menu {
        padding: 60px 0;
    }

    .featured-menu .section-header {
        margin-bottom: 40px;
    }

    .menu-item-image {
        height: 180px;
    }

    .menu-item-content {
        padding: 20px 15px;
    }

    .menu-item-title {
        font-size: 18px;
    }

    .menu-item-price {
        font-size: 16px;
    }

    .menu-item-description {
        font-size: 13px;
    }

    .features-grid,
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .special-menu-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        justify-content: center;
    }

    .testimonials-cards {
        max-width: none;
    }

    .testimonials-cards .testimonial-card:nth-child(2) {
        transform: none;
        opacity: 1;
    }

    .container {
        padding: 0 15px;
        max-width: 100%;
    }

    /* Ensure all sections are mobile-friendly */

    .special-menu {
        padding: 60px 15px;
    }

    .reservation-content,
    .testimonials-content,
    .about-content {
        padding: 0 10px;
        gap: 30px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .featured-menu .section-header {
        margin-bottom: 50px;
    }

    .featured-menu .section-description {
        font-size: 14px;
        line-height: 1.5;
    }

    .menu-item-buttons {
        flex-direction: column;
        gap: 8px;
    }

    .menu-item-buttons .btn {
        width: 100%;
        max-width: none;
    }

    .hero {
        min-height: 70vh;
        padding: 80px 0 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .hero-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .hero-title {
    font-size: 2rem;  /* adjust for smaller screens */
    line-height: 1.3;
    text-align: center;
  }

  .hero-description {
    font-size: 1rem;
    max-width: 90%;
    margin: 0 auto 1.5rem;
  }

  .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 280px;
  }

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

    .hero .container {
        margin: 0;
        max-width: 100%;
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .friday-special {
        padding: 40px 0;
        min-height: 70vh;
        background-attachment: scroll;
    }

    .special-content {
        padding: 0 10px;
        gap: 30px;
    }

    .special-image {
        height: 250px;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.1;
        margin-bottom: 15px;
    }

    .hero-description {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 25px;
    }

    .hero-buttons .btn {
        min-width: 200px;
        margin-bottom: 10px;
    }

    .hero {
        min-height: 60vh;
        padding: 60px 0 30px;
    }

    .about-text .section-title {
        font-size: 24px;
    }

    .about-text .section-description {
        font-size: 14px;
    }

    .reservation-text .section-title {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 15px;
    }

    .reservation-text .section-description {
        font-size: 13px;
        margin-bottom: 25px;
    }

    .reservation-image {
        height: 200px;
        max-width: 300px;
    }

    .reservation {
        padding: 50px 0;
    }

    .testimonials-header .section-title {
        font-size: 2rem;
    }

    .testimonial-card {
        padding: 20px 15px;
    }

    .footer-content {
        padding: 0 10px;
    }

    .btn {
        padding: 12px 20px;
        font-size: 12px;
        min-height: 44px;
    }

    .feature-card,
    .feature-card-new {
        padding: 25px 15px;
        min-height: 250px;
    }

    .feature-icon-new {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
    }

    .feature-icon-new img {
        width: 50px;
        height: 50px;
    }

    .testimonial-card {
        padding: 25px 15px;
        margin-bottom: 20px;
    }

    .footer-contact p {
        font-size: 13px;
        gap: 8px;
    }

    .footer-contact p::before {
        width: 14px;
        height: 14px;
    }

    .footer-map {
        height: 100px;
    }

    .testimonials-cards {
        gap: 20px;
    }

    .special-menu-item {
        height: 380px;
        width: 280px;
    }
}


/* === RESPONSIVE FIXES – APPEND TO END OF style.css === */

/* ---------- Special Menu (FOR THE MENU) ---------- */
@media (max-width: 768px) {
  .special-menu {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 40px 15px;
    text-align: center;
  }

  .special-menu-header {
    width: 100%;
    max-width: 100%;
    margin: 0 auto 20px;
  }

  .special-menu-grid {
    display: flex;
    flex-wrap: wrap;       /* wrap to next line instead of overflowing */
    justify-content: center;
    gap: 20px;
    margin-left: 0;
  }

  .special-menu-item {
    width: 100%;
    max-width: 280px;
    flex: 1 1 260px;
    height: auto;
  }

  .special-menu-image {
    height: auto;
  }
}

/* ---------- Reservation Section (BOOK A TABLE) ---------- */
@media (max-width: 768px) {
  .reservation-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
    padding: 0 15px;
  }

  .reservation-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    margin: 0 auto;
    order: -1;            /* show image above text */
  }

  .reservation-bg {
    height: 250px;
  }

  .reservation-text {
    max-width: 500px;
    margin: 0 auto;
  }

  .reservation-text .section-title {
    font-size: 1.8rem;
  }

  .reservation-text .section-description {
    font-size: 14px;
    line-height: 1.6;
  }
}

/* ---------- Testimonials (CUSTOMERS FEEDBACK) ---------- */
@media (max-width: 768px) {
  .testimonials-content {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 15px;
    text-align: center;
  }

  .testimonials-header {
    text-align: center;
    margin-bottom: 20px;
  }

  .testimonials-header .section-title {
    font-size: 1.9rem;
    margin-bottom: 15px;
  }

  .testimonials-cards {
    display: flex;
    flex-direction: column;  /* stack cards vertically */
    width: 100%;
    gap: 20px;
    margin: 0 auto;
  }

  .testimonial-card {
    flex: 1 1 auto;
    width: 100%;
    margin-left: 0;          /* remove fixed left margin */
    padding: 25px 20px;
    min-height: auto;
  }

  .testimonial-rating {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .testimonial-text {
    font-size: 14px;
    line-height: 1.6;
  }

  .author-name {
    font-size: 15px;
  }

  .author-title {
    font-size: 13px;
  }
}
/* Mobile Navigation Styles */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: all 0.3s ease;
    z-index: 1001;
}

.nav-toggle:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.nav-toggle:focus {
    outline: 2px solid #9ACD32;
    outline-offset: 2px;
}

.nav-toggle-icon {
    display: block;
    font-size: 1.2rem;
}

/* Mobile Navigation Menu */
@media (max-width: 768px) {
    .header-content {
        justify-content: space-between;
        align-items: center;
    }

    .logo {
        order: 1;
    }

    .nav-toggle {
        order: 2;
        display: block !important;
    }

    .header-cta {
        order: 3;
    }

    .nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(10px);
        z-index: 1000;
        display: flex;
        align-items: center;
        justify-content: center;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .nav-menu {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
        padding: 0;
        margin: 0;
        list-style: none;
    }

    .nav-link {
        font-size: 1.5rem;
        font-weight: 500;
        padding: 1rem 2rem;
        display: block;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .nav-link:hover,
    .nav-link.active {
        background-color: rgba(154, 205, 50, 0.2);
        color: #9ACD32;
    }

    /* Show nav when open class is added by JavaScript */
    .nav.open {
        transform: translateX(0);
    }

    /* Prevent body scroll when mobile menu is open */
    body.nav-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }
}

/* Tablet Navigation Adjustments */
@media (max-width: 1024px) and (min-width: 769px) {
    .nav-menu {
        gap: 1.5rem;
    }

    .nav-link {
        font-size: 13px;
        padding: 8px 12px;
    }

    .header-cta .cta-button {
        padding: 10px 18px;
        font-size: 11px;
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    .nav,
    .nav-toggle,
    .nav-link {
        transition: none;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .nav-toggle:focus {
        outline: 3px solid #ffffff;
    }

    .nav-link:hover,
    .nav-link.active {
        background-color: #9ACD32;
        color: #000000;
    }
}
/* Screen Reader Text for Accessibility */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
}

.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    clip-path: none;
    color: #21759b;
    display: block;
    font-size: 14px;
    font-weight: bold;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}
/*
 Dynamic Menu Item Styles */
.menu-item-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.menu-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Menu Item Badges */
.menu-item-badges {
    margin: 10px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.menu-badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.75em;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.menu-badge.spicy {
    background-color: #ff6b6b;
    color: white;
}

.menu-badge.vegetarian {
    background-color: #51cf66;
    color: white;
}

.menu-badge.gluten-free {
    background-color: #ffd43b;
    color: #333;
}

/* Testimonial Rating Styles */
.testimonial-rating {
    color: #ffd700;
    font-size: 1.2em;
    margin-bottom: 10px;
}

.testimonial-rating .star {
    display: inline-block;
}

.testimonial-rating .star.filled {
    color: #ffd700;
}

.testimonial-rating .star.empty {
    color: #ddd;
}

/* Dynamic Avatar Styles */
.author-avatar img {
    border-radius: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Fallback styles for missing content */
.menu-item .menu-item-content p:empty::before {
    content: "Add a description for this menu item in the WordPress admin.";
    color: #999;
    font-style: italic;
}

.testimonial-card .testimonial-text:empty::before {
    content: "Add testimonial content in the WordPress admin.";
    color: #999;
    font-style: italic;
}

/* Admin column styles for custom post types */
.wp-admin .column-menu_price,
.wp-admin .column-menu_badges,
.wp-admin .column-testimonial_rating {
    width: 100px;
}

.wp-admin .column-menu_category,
.wp-admin .column-testimonial_location {
    width: 150px;
}


/* Meta box styling */
.aunt-bettys-meta-box .form-table th {
    width: 200px;
    padding: 15px 10px 15px 0;
}

.aunt-bettys-meta-box .form-table td {
    padding: 15px 10px;
}

.aunt-bettys-meta-box fieldset {
    border: none;
    padding: 0;
    margin: 0;
}

.aunt-bettys-meta-box fieldset label {
    display: block;
    margin-bottom: 8px;
    font-weight: normal;
}

.aunt-bettys-meta-box input[type="text"],
.aunt-bettys-meta-box input[type="number"],
.aunt-bettys-meta-box input[type="date"],
.aunt-bettys-meta-box select {
    width: 100%;
    max-width: 300px;
}

/* ========================================
   WooCommerce Checkout Page Styling
   Aunt Betty's Restaurant Theme
   ======================================== */

/* Page Background */
body.woocommerce-checkout,
.woocommerce-checkout {
    background-color: #1a1a1a !important;
}

.woocommerce-checkout .site-content,
.woocommerce-checkout main {
    background-color: #1a1a1a !important;
    padding: 160px 20px 60px !important;
    min-height: 100vh;
}

.woocommerce-checkout .entry-content {
    max-width: 1400px;
    margin: 0 auto;
}

/* Main Checkout Container */
.wc-block-checkout {
    max-width: 1400px;
    margin: 0 auto !important;
}

/* Two Column Layout - Correct Parent Container */
.wc-block-components-sidebar-layout {
    display: grid !important;
    grid-template-columns: 650px 450px !important;
    gap: 40px !important;
    align-items: start !important;
    justify-content: center !important;
}

/* Left Side - Form */
.wc-block-components-main {
    background-color: transparent !important;
    width: 100% !important;
}

/* Right Side - Order Summary Sidebar */
.wc-block-components-sidebar {
    background: linear-gradient(135deg, #252525 0%, #1f1f1f 100%) !important;
    border-radius: 15px !important;
    padding: 35px !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5) !important;
    border: 2px solid #2d2d2d !important;
    width: 100% !important;
    position: sticky !important;
    top: 180px !important;
}

/* Checkout Form */
.wc-block-components-form {
    background-color: transparent !important;
}

/* ===== CHECKOUT STEP SECTIONS ===== */
.wc-block-components-checkout-step {
    background: linear-gradient(135deg, #252525 0%, #1f1f1f 100%) !important;
    border-radius: 15px !important;
    padding: 35px !important;
    margin-bottom: 30px !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5) !important;
    border: 2px solid #2d2d2d !important;
}

/* Section Headings */
.wc-block-components-checkout-step__title {
    color: #a4b82c !important;
    font-family: 'Playfair Display', serif !important;
    font-size: 28px !important;
    margin: 0 0 10px 0 !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
}

/* Section Description */
.wc-block-components-checkout-step__description {
    color: #cccccc !important;
    font-family: 'Poppins', sans-serif !important;
    font-size: 14px !important;
    margin-bottom: 25px !important;
    line-height: 1.6 !important;
}

/* ===== FORM INPUTS ===== */

/* Text Inputs Container */
.wc-block-components-text-input,
.wc-block-components-address-form__email,
.wc-block-components-address-form__first_name,
.wc-block-components-address-form__last_name,
.wc-block-components-address-form__address_1,
.wc-block-components-address-form__city,
.wc-block-components-address-form__postcode,
.wc-block-components-address-form__phone {
    position: relative !important;
    margin-bottom: 20px !important;
}

/* Input Fields */
.wc-block-components-text-input input,
.wc-block-components-address-form input[type="text"],
.wc-block-components-address-form input[type="email"],
.wc-block-components-address-form input[type="tel"] {
    background-color: #2d2d2d !important;
    border: 2px solid #444 !important;
    color: #ffffff !important;
    padding: 18px 20px !important;
    border-radius: 10px !important;
    width: 100% !important;
    font-family: 'Poppins', sans-serif !important;
    font-size: 16px !important;
    transition: all 0.3s !important;
    box-sizing: border-box !important;
}

.wc-block-components-text-input input:focus,
.wc-block-components-address-form input:focus {
    border-color: #a4b82c !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(164, 184, 44, 0.1) !important;
    background-color: #1a1a1a !important;
}

/* Floating Labels */
.wc-block-components-text-input label,
.wc-block-components-address-form label {
    position: absolute !important;
    left: 20px !important;
    top: 18px !important;
    color: #999 !important;
    font-family: 'Poppins', sans-serif !important;
    font-size: 16px !important;
    transition: all 0.3s !important;
    pointer-events: none !important;
    background-color: transparent !important;
}

/* Active State (when input has value or is focused) */
.wc-block-components-text-input.is-active label,
.wc-block-components-text-input input:focus + label {
    top: -10px !important;
    left: 15px !important;
    font-size: 12px !important;
    color: #a4b82c !important;
    background-color: #252525 !important;
    padding: 0 8px !important;
}

/* ===== SELECT DROPDOWNS ===== */
.wc-blocks-components-select {
    margin-bottom: 20px !important;
}

.wc-blocks-components-select__container {
    position: relative !important;
}

.wc-blocks-components-select__label {
    display: block !important;
    color: #a4b82c !important;
    font-family: 'Poppins', sans-serif !important;
    font-size: 12px !important;
    margin-bottom: 8px !important;
    font-weight: 600 !important;
}

.wc-blocks-components-select__select {
    background-color: #2d2d2d !important;
    border: 2px solid #444 !important;
    color: #ffffff !important;
    padding: 18px 45px 18px 20px !important;
    border-radius: 10px !important;
    width: 100% !important;
    font-family: 'Poppins', sans-serif !important;
    font-size: 16px !important;
    appearance: none !important;
    cursor: pointer !important;
    transition: all 0.3s !important;
}

.wc-blocks-components-select__select:focus {
    border-color: #a4b82c !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(164, 184, 44, 0.1) !important;
    background-color: #1a1a1a !important;
}

.wc-blocks-components-select__expand {
    position: absolute !important;
    right: 15px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    fill: #a4b82c !important;
    pointer-events: none !important;
}

/* ===== ADDRESS CARD (Edit Mode) ===== */
.wc-block-components-address-card-wrapper {
    margin-bottom: 20px !important;
}

.wc-block-components-address-card {
    background-color: #2d2d2d !important;
    border: 2px solid #444 !important;
    border-radius: 10px !important;
    padding: 20px !important;
    position: relative !important;
}

.wc-block-components-address-card address {
    color: #ffffff !important;
    font-family: 'Poppins', sans-serif !important;
    font-size: 15px !important;
    line-height: 1.8 !important;
    font-style: normal !important;
}

.wc-block-components-address-card__address-section {
    display: block !important;
    margin-bottom: 5px !important;
}

.wc-block-components-address-card__edit {
    position: absolute !important;
    top: 20px !important;
    right: 20px !important;
    background-color: #a4b82c !important;
    color: #1a1a1a !important;
    padding: 8px 20px !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    font-size: 12px !important;
    cursor: pointer !important;
    transition: all 0.3s !important;
    border: none !important;
}

.wc-block-components-address-card__edit:hover {
    background-color: #8a9a24 !important;
    transform: translateY(-2px) !important;
}

/* Add Address Line 2 Toggle */
.wc-block-components-address-form__address_2-toggle {
    color: #a4b82c !important;
    font-family: 'Poppins', sans-serif !important;
    font-size: 14px !important;
    cursor: pointer !important;
    display: inline-block !important;
    margin-bottom: 15px !important;
    transition: color 0.3s !important;
}

.wc-block-components-address-form__address_2-toggle:hover {
    color: #8a9a24 !important;
}

/* ===== PAYMENT METHODS ===== */

/* Payment Radio Options */
.wc-block-components-radio-control {
    margin-top: 20px !important;
}

.wc-block-components-radio-control-accordion-option {
    background-color: #2d2d2d !important;
    border: 2px solid #444 !important;
    border-radius: 10px !important;
    margin-bottom: 15px !important;
    overflow: hidden !important;
    transition: all 0.3s !important;
}

.wc-block-components-radio-control-accordion-option--checked-option-highlighted {
    border-color: #a4b82c !important;
    background-color: #1f1f1f !important;
}

.wc-block-components-radio-control__option {
    padding: 20px !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
}

.wc-block-components-radio-control__input {
    width: 20px !important;
    height: 20px !important;
    margin-right: 15px !important;
    accent-color: #a4b82c !important;
    cursor: pointer !important;
}

.wc-block-components-radio-control__label {
    color: #ffffff !important;
    font-family: 'Poppins', sans-serif !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    flex: 1 !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
}

/* Payment Icons */
.css-1ytih4b img {
    max-height: 25px !important;
    margin-left: 10px !important;
}

/* Payment Content Area */
.wc-block-components-radio-control-accordion-content {
    padding: 0 20px 20px 20px !important;
    background-color: transparent !important;
}

.wc-block-components-radio-control-accordion-content p {
    color: #cccccc !important;
    font-family: 'Poppins', sans-serif !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
    margin-bottom: 15px !important;
}

.wc-block-components-radio-control-accordion-content a {
    color: #a4b82c !important;
    text-decoration: underline !important;
}

/* Stripe Payment Element */
.wcstripe-payment-element {
    margin: 15px 0 !important;
}

/* ===== CHECKBOXES ===== */
.wc-block-components-checkbox {
    margin: 15px 0 !important;
}

.wc-block-components-checkbox label {
    display: flex !important;
    align-items: center !important;
    cursor: pointer !important;
    position: relative !important;
}

.wc-block-components-checkbox__input {
    width: 22px !important;
    height: 22px !important;
    margin-right: 12px !important;
    accent-color: #a4b82c !important;
    cursor: pointer !important;
    border: 2px solid #444 !important;
    border-radius: 4px !important;
}

.wc-block-components-checkbox__label {
    color: #ffffff !important;
    font-family: 'Poppins', sans-serif !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
}

/* ===== ORDER NOTES ===== */
.wc-block-checkout__add-note {
    margin-top: 10px !important;
}

/* ===== TERMS & CONDITIONS ===== */
.wc-block-checkout__terms {
    background-color: #252525 !important;
    border: 2px solid #a4b82c !important;
    border-radius: 10px !important;
    padding: 20px 25px !important;
    margin-bottom: 30px !important;
    text-align: center !important;
}

.wc-block-checkout__terms .wc-block-components-checkbox__label {
    color: #ffffff !important;
    font-family: 'Poppins', sans-serif !important;
    font-size: 14px !important;
    font-weight: 500 !important;
}

/* ===== ORDER SUMMARY SIDEBAR ===== */
.wc-block-components-sidebar {
    background: linear-gradient(135deg, #252525 0%, #1f1f1f 100%) !important;
    border-radius: 15px !important;
    padding: 35px !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5) !important;
    border: 2px solid #2d2d2d !important;
}

/* Hide mobile order summary inside form */
.wc-block-checkout__actions .checkout-order-summary-block-fill-wrapper {
    display: none !important;
}

/* Order Summary Title */
.wc-block-components-checkout-order-summary__title {
    color: #a4b82c !important;
    font-family: 'Playfair Display', serif !important;
    font-size: 28px !important;
    margin: 0 0 25px 0 !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    cursor: default !important;
}

.wc-block-components-checkout-order-summary__title-text {
    margin: 0 !important;
}

.wc-block-components-checkout-order-summary__title-price {
    font-size: 24px !important;
    color: #a4b82c !important;
}

.wc-block-components-checkout-order-summary__title-icon {
    display: none !important;
}

/* Order Summary Items */
.wc-block-components-order-summary-item {
    display: flex !important;
    gap: 15px !important;
    padding: 20px 0 !important;
    border-bottom: 1px solid #333 !important;
}

.wc-block-components-order-summary-item:last-child {
    border-bottom: none !important;
}

.wc-block-components-order-summary-item__image {
    width: 70px !important;
    height: 70px !important;
    border-radius: 10px !important;
    overflow: hidden !important;
    flex-shrink: 0 !important;
}

.wc-block-components-order-summary-item__image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.wc-block-components-order-summary-item__quantity {
    position: absolute !important;
    top: -8px !important;
    right: -8px !important;
    background-color: #a4b82c !important;
    color: #1a1a1a !important;
    width: 24px !important;
    height: 24px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 12px !important;
    font-weight: 700 !important;
}

.wc-block-components-order-summary-item__description {
    flex: 1 !important;
}

.wc-block-components-order-summary-item__header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
    margin-bottom: 8px !important;
}

.wc-block-components-product-name {
    color: #ffffff !important;
    font-family: 'Poppins', sans-serif !important;
    font-size: 16px !important;
    font-weight: 600 !important;
}

.wc-block-components-product-price {
    color: #a4b82c !important;
    font-family: 'Poppins', sans-serif !important;
    font-size: 16px !important;
    font-weight: 700 !important;
}

.wc-block-components-product-price del {
    color: #999 !important;
    margin-right: 8px !important;
}

.wc-block-components-product-metadata {
    color: #cccccc !important;
    font-size: 13px !important;
    line-height: 1.6 !important;
}

/* Coupon Form */
.wc-block-components-totals-coupon {
    margin: 20px 0 !important;
}

.wc-block-components-totals-coupon button {
    background-color: transparent !important;
    color: #a4b82c !important;
    border: 2px solid #a4b82c !important;
    padding: 10px 20px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s !important;
}

.wc-block-components-totals-coupon button:hover {
    background-color: #a4b82c !important;
    color: #1a1a1a !important;
}

/* Totals Section */
.wc-block-components-totals-wrapper {
    margin-top: 25px !important;
    padding-top: 25px !important;
    border-top: 2px solid #333 !important;
}

.wc-block-components-totals-item {
    display: flex !important;
    justify-content: space-between !important;
    padding: 12px 0 !important;
    color: #ffffff !important;
    font-family: 'Poppins', sans-serif !important;
    font-size: 15px !important;
}

.wc-block-components-totals-item__label {
    font-weight: 500 !important;
}

.wc-block-components-totals-item__value {
    font-weight: 600 !important;
    color: #a4b82c !important;
}

/* Total Footer */
.wc-block-components-totals-footer-item {
    display: flex !important;
    justify-content: space-between !important;
    padding: 20px 0 0 0 !important;
    margin-top: 15px !important;
    border-top: 3px solid #a4b82c !important;
    color: #a4b82c !important;
    font-family: 'Poppins', sans-serif !important;
    font-size: 24px !important;
    font-weight: 700 !important;
}

.wc-block-components-totals-footer-item .wc-block-components-totals-item__label {
    color: #a4b82c !important;
}

.wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
    color: #a4b82c !important;
}

/* ===== ACTION BUTTONS ===== */
.wc-block-checkout__actions {
    background-color: transparent !important;
    padding: 0 !important;
    margin-top: 30px !important;
}

.wc-block-checkout__actions_row {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 20px !important;
}

/* Return to Cart Button */
.wc-block-components-checkout-return-to-cart-button {
    background-color: transparent !important;
    color: #a4b82c !important;
    border: 2px solid #a4b82c !important;
    padding: 15px 30px !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    font-family: 'Poppins', sans-serif !important;
    font-size: 14px !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    transition: all 0.3s !important;
}

.wc-block-components-checkout-return-to-cart-button:hover {
    background-color: #a4b82c !important;
    color: #1a1a1a !important;
    transform: translateX(-5px) !important;
}

.wc-block-components-checkout-return-to-cart-button svg {
    fill: currentColor !important;
}

/* Place Order Button */
.wc-block-components-checkout-place-order-button {
    background: linear-gradient(135deg, #d4524f 0%, #b93432 100%) !important;
    color: #ffffff !important;
    padding: 18px 50px !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    font-family: 'Poppins', sans-serif !important;
    font-size: 16px !important;
    border: none !important;
    cursor: pointer !important;
    transition: all 0.3s !important;
    box-shadow: 0 8px 25px rgba(212, 82, 79, 0.3) !important;
    flex: 1 !important;
}

.wc-block-components-checkout-place-order-button:hover:not(:disabled) {
    transform: translateY(-3px) !important;
    box-shadow: 0 12px 35px rgba(212, 82, 79, 0.5) !important;
}

.wc-block-components-checkout-place-order-button:disabled {
    opacity: 0.5 !important;
    cursor: not-allowed !important;
}

/* ===== NOTICES ===== */
.wc-block-components-notices {
    margin-bottom: 20px !important;
}

.wc-block-components-notice-banner {
    background-color: #2d2d2d !important;
    border-left: 4px solid #a4b82c !important;
    padding: 15px 20px !important;
    border-radius: 8px !important;
    color: #ffffff !important;
    font-family: 'Poppins', sans-serif !important;
}

/* Error Notices */
.wc-block-components-notice-banner.is-error {
    border-left-color: #d4524f !important;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .wc-block-components-sidebar-layout {
        grid-template-columns: 1fr !important;
    }
    
    .wc-block-components-main {
        grid-column: 1 !important;
        order: 1 !important;
    }
    
    .wc-block-components-sidebar {
        grid-column: 1 !important;
        order: 2 !important;
        position: relative !important;
        top: 0 !important;
    }
    
    .woocommerce-checkout .site-content {
        padding: 120px 15px 40px !important;
    }
}

@media (max-width: 768px) {
    .wc-block-components-checkout-step {
        padding: 25px 20px !important;
    }
    
    .wc-block-components-checkout-step__title {
        font-size: 24px !important;
    }
    
    .wc-block-checkout__actions_row {
        flex-direction: column-reverse !important;
    }
    
    .wc-block-components-checkout-return-to-cart-button,
    .wc-block-components-checkout-place-order-button {
        width: 100% !important;
        justify-content: center !important;
    }
}

/* ========================================
   WooCommerce Order Received / Thank You Page
   Aunt Betty's Restaurant Theme
   ======================================== */

/* Page Background */
body.woocommerce-order-received,
.woocommerce-order-received {
    background-color: #1a1a1a !important;
}

.woocommerce-order-received .site-content,
.woocommerce-order-received main {
    background-color: #1a1a1a !important;
    padding: 160px 20px 60px !important;
    min-height: 100vh;
}

.woocommerce-order-received .entry-content {
    max-width: 900px;
    margin: 0 auto;
}

/* Success Message */
.woocommerce-notice--success.woocommerce-thankyou-order-received {
    background: linear-gradient(135deg, #a4b82c 0%, #8a9a24 100%) !important;
    color: #1a1a1a !important;
    padding: 30px 40px !important;
    border-radius: 15px !important;
    font-size: 24px !important;
    font-weight: 700 !important;
    text-align: center !important;
    border: none !important;
    box-shadow: 0 8px 30px rgba(164, 184, 44, 0.3) !important;
    margin-bottom: 40px !important;
    font-family: 'Playfair Display', serif !important;
    letter-spacing: 0.5px;
	margin-top: 50px;
}

.woocommerce-notice--success.woocommerce-thankyou-order-received::before {
    content: "✓ ";
    font-size: 32px;
    margin-right: 10px;
}

/* Order Overview List */
.woocommerce-order-overview {
    background: linear-gradient(135deg, #252525 0%, #1f1f1f 100%) !important;
    border-radius: 15px !important;
    padding: 35px 40px !important;
    margin: 0 0 40px 0 !important;
    list-style: none !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5) !important;
    border: 2px solid #2d2d2d !important;
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
    gap: 20px !important;
}

.woocommerce-order-overview li {
    color: #ffffff !important;
    font-family: 'Poppins', sans-serif !important;
    font-size: 15px !important;
    padding: 15px 20px !important;
    margin: 0 !important;
    border-right: 1px solid #333 !important;
    text-align: center !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
}

.woocommerce-order-overview li:last-child {
    border-right: none !important;
}

.woocommerce-order-overview li strong {
    color: #a4b82c !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    display: block !important;
    margin-top: 8px !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    max-width: 100% !important;
}

/* Section Headings */
.woocommerce-order-details__title,
.woocommerce-column__title {
    color: #a4b82c !important;
    font-family: 'Playfair Display', serif !important;
    font-size: 32px !important;
    margin: 40px 0 25px 0 !important;
    text-align: center !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    font-weight: 700 !important;
}

/* Order Details Section */
.woocommerce-order-details {
    background-color: #252525 !important;
    border-radius: 15px !important;
    padding: 40px !important;
    margin-bottom: 40px !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5) !important;
    border: 2px solid #2d2d2d !important;
}

/* Order Details Table */
.woocommerce-table--order-details {
    background-color: transparent !important;
    border: none !important;
    width: 100% !important;
    border-collapse: separate !important;
    border-spacing: 0 !important;
}

/* Table Header */
.woocommerce-table--order-details thead {
    background: linear-gradient(135deg, #2d2d2d 0%, #1f1f1f 100%) !important;
    border-radius: 10px 10px 0 0 !important;
}

.woocommerce-table--order-details thead th {
    color: #a4b82c !important;
    font-family: 'Poppins', sans-serif !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    font-size: 14px !important;
    letter-spacing: 1.5px !important;
    padding: 20px 25px !important;
    border: none !important;
    border-bottom: 3px solid #a4b82c !important;
    text-align: left !important;
}

/* Table Body */
.woocommerce-table--order-details tbody tr {
    background-color: transparent !important;
    border-bottom: 1px solid #333 !important;
}

.woocommerce-table--order-details tbody td {
    color: #ffffff !important;
    padding: 25px !important;
    border: none !important;
    font-family: 'Poppins', sans-serif !important;
    font-size: 16px !important;
    vertical-align: middle !important;
}

.woocommerce-table--order-details tbody td a {
    color: #ffffff !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    transition: color 0.3s !important;
}

.woocommerce-table--order-details tbody td a:hover {
    color: #a4b82c !important;
}

.woocommerce-table--order-details .product-quantity {
    color: #999 !important;
    font-weight: 400 !important;
    margin-left: 8px !important;
}

.woocommerce-table--order-details .product-total {
    text-align: right !important;
    color: #a4b82c !important;
    font-weight: 700 !important;
    font-size: 18px !important;
}

/* Table Footer (Totals) */
.woocommerce-table--order-details tfoot {
    background: linear-gradient(135deg, #2d2d2d 0%, #1f1f1f 100%) !important;
    border-radius: 0 0 10px 10px !important;
}

.woocommerce-table--order-details tfoot tr {
    border-bottom: 1px solid #333 !important;
}

.woocommerce-table--order-details tfoot tr:last-child {
    border-bottom: none !important;
}

.woocommerce-table--order-details tfoot th {
    color: #ffffff !important;
    font-family: 'Poppins', sans-serif !important;
    font-weight: 600 !important;
    padding: 18px 25px !important;
    text-align: left !important;
    font-size: 16px !important;
}

.woocommerce-table--order-details tfoot td {
    color: #a4b82c !important;
    font-weight: 700 !important;
    padding: 18px 25px !important;
    text-align: right !important;
    font-size: 18px !important;
}

/* Total Row - Special Styling */
.woocommerce-table--order-details tfoot tr:has(th:contains("Total")) th,
.woocommerce-table--order-details tfoot tr:has(th:contains("Total")) td {
    font-size: 22px !important;
    padding-top: 25px !important;
    padding-bottom: 25px !important;
    border-top: 3px solid #a4b82c !important;
}

/* Customer Details Section */
.woocommerce-customer-details {
    background-color: #252525 !important;
    border-radius: 15px !important;
    padding: 40px !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5) !important;
    border: 2px solid #2d2d2d !important;
    margin-bottom: 40px !important;
}

/* Billing Address */
.woocommerce-customer-details address {
    background: linear-gradient(135deg, #2d2d2d 0%, #1f1f1f 100%) !important;
    color: #ffffff !important;
    font-family: 'Poppins', sans-serif !important;
    font-size: 16px !important;
    line-height: 1.8 !important;
    padding: 30px !important;
    border-radius: 10px !important;
    border: none !important;
    font-style: normal !important;
    margin-top: 20px !important;
}

.woocommerce-customer-details--phone,
.woocommerce-customer-details--email {
    color: #a4b82c !important;
    font-weight: 600 !important;
    margin-top: 15px !important;
    padding-top: 15px !important;
    border-top: 1px solid #333 !important;
}

.woocommerce-customer-details--phone::before {
    content: "📞 ";
    margin-right: 8px;
}

.woocommerce-customer-details--email::before {
    content: "✉ ";
    margin-right: 8px;
}

/* Price Styling */
.woocommerce-Price-amount {
    color: #a4b82c !important;
    font-weight: 700 !important;
}

.woocommerce-Price-currencySymbol {
    margin-right: 2px !important;
}

/* Download Section (if digital products) */
.woocommerce-order-downloads {
    background-color: #252525 !important;
    border-radius: 15px !important;
    padding: 40px !important;
    margin-bottom: 40px !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5) !important;
}

.woocommerce-order-downloads a {
    background-color: #a4b82c !important;
    color: #1a1a1a !important;
    padding: 12px 30px !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    display: inline-block !important;
    transition: all 0.3s !important;
}

.woocommerce-order-downloads a:hover {
    background-color: #8a9a24 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 20px rgba(164, 184, 44, 0.4) !important;
}

/* Back to Shop Button (if present) */
.woocommerce-button.button {
    background-color: #a4b82c !important;
    color: #1a1a1a !important;
    padding: 15px 40px !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    text-decoration: none !important;
    display: inline-block !important;
    transition: all 0.3s !important;
    font-family: 'Poppins', sans-serif !important;
    margin-top: 30px !important;
    border: none !important;
}

.woocommerce-button.button:hover {
    background-color: #8a9a24 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 20px rgba(164, 184, 44, 0.4) !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .woocommerce-order-received .site-content {
        padding: 100px 15px 40px !important;
    }
    
    .woocommerce-notice--success.woocommerce-thankyou-order-received {
        font-size: 20px !important;
        padding: 25px 20px !important;
    }
    
    .woocommerce-order-overview {
        grid-template-columns: 1fr !important;
        padding: 25px 20px !important;
    }
    
    .woocommerce-order-overview li {
        border-right: none !important;
        border-bottom: 1px solid #333 !important;
        padding-bottom: 15px !important;
        margin-bottom: 15px !important;
    }
    
    .woocommerce-order-overview li:last-child {
        border-bottom: none !important;
    }
    
    .woocommerce-order-details,
    .woocommerce-customer-details {
        padding: 25px 20px !important;
    }
    
    .woocommerce-order-details__title,
    .woocommerce-column__title {
        font-size: 26px !important;
    }
    
    .woocommerce-table--order-details thead {
        display: none !important;
    }
    
    .woocommerce-table--order-details tbody tr {
        display: block !important;
        margin-bottom: 20px !important;
        border: 1px solid #333 !important;
        border-radius: 10px !important;
        padding: 15px !important;
    }
    
    .woocommerce-table--order-details tbody td {
        display: block !important;
        text-align: left !important;
        padding: 10px 0 !important;
    }
    
    .woocommerce-table--order-details tbody td::before {
        content: attr(data-title) ": ";
        font-weight: 700;
        color: #a4b82c;
    }
    
    .woocommerce-table--order-details .product-total {
        text-align: left !important;
    }
}

/* ===========================
   PHONE BUTTON HOVER EFFECT
   Add this to your style.css file
   =========================== */

/* Phone button container */
.cta-phone {
  position: relative;
  overflow: visible !important;
}

/* Phone text wrapper */
.cta-phone .phone-text {
  display: inline-block;
  transition: opacity 0.3s ease;
}

/* Phone number tooltip */
.cta-phone .phone-number {
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  background: #a8c256;
  color: #0a0a0a;
  padding: 8px 15px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  margin-top: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  pointer-events: none;
}

/* Arrow pointer on tooltip */
.cta-phone .phone-number::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #a8c256;
}

/* Show tooltip on hover */
.cta-phone:hover .phone-number {
  opacity: 1;
  visibility: visible;
  margin-top: 12px;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .cta-phone .phone-number {
    font-size: 0.85rem;
    padding: 6px 12px;
  }
}

/* Tablet adjustments */
@media (max-width: 1024px) and (min-width: 769px) {
  .cta-phone .phone-number {
    font-size: 0.88rem;
  }
}

/* ===========================
   IMPROVED RESPONSIVE HEADER NAVBAR
   Replace your existing header styles with these
   =========================== */

/* Header container - Desktop */
.header {
  position: fixed !important;
  top: 25px;
  left: 0;
  right: 0;
  margin: 0 auto;
  max-width: calc(100% - 360px);
  padding: 18px 0;
  border-radius: 60px;
  background: rgba(0,0,0,0.9);
  backdrop-filter: blur(15px);
  z-index: 1000;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.1);
}

/* Header when scrolled */
.header.scrolled {
  background: rgba(0, 0, 0, 0.95);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.6);
  border-color: rgba(255, 255, 255, 0.15);
}

/* Flex container */
.header .container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 30px;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

/* ===========================
   LOGO
   =========================== */
.header .logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.header .logo-image {
  height: 35px;
  width: auto;
  max-width: 100px;
}

/* ===========================
   NAV MENU - Desktop
   =========================== */
.nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 32px;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-link {
  color: #ffffff !important;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  transition: color 0.3s;
  position: relative;
  line-height: 1.2;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active:hover {
  color: #9ACD32 !important;
}

/* ===========================
   CTA + CART
   =========================== */
.header-cta {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-shrink: 0;
}

/* CTA button */
.header-cta .cta-button {
  background-color: #9ACD32;
  color: #fff;
  padding: 14px 28px;
  text-decoration: none;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(154, 205, 50, 0.3);
  white-space: nowrap;
}

.header-cta .cta-button:hover {
  background-color: #8BC34A;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(154, 205, 50, 0.4);
}

/* CTA phone icon */
.phone-icon {
  width: 16px;
  height: 16px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  animation: pulse 2s infinite;
}

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

/* Cart button */
.header-cart {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  font-size: 16px;
  transition: all 0.3s ease;
  position: relative;
}

.header-cart .cart-contents {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #fff;
}

.header-cart:hover {
  background: #9ACD32;
  color: #fff;
  transform: translateY(-2px);
}

.header-cart .cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  background: #E63946;
  color: #fff;
  font-size: 10px;
  font-weight: bold;
  padding: 2px 5px;
  border-radius: 50%;
  min-width: 18px;
  text-align: center;
}

/* Mobile toggle button - hidden by default */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
  border-radius: 4px;
  transition: all 0.3s ease;
  z-index: 1001;
}

.nav-toggle:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* ===========================
   LARGE TABLETS (1025px - 1280px)
   =========================== */
@media (max-width: 1280px) {
  .header {
    max-width: calc(100% - 100px);
    top: 20px;
  }

  .header .container {
    padding: 0 25px;
  }

  .nav-menu {
    gap: 24px;
  }

  .nav-link {
    font-size: 12px;
  }

  .header-cta .cta-button {
    padding: 12px 22px;
    font-size: 10px;
  }
}

/* ===========================
   MEDIUM TABLETS (769px - 1024px)
   =========================== */
@media (max-width: 1024px) {
  .header {
    max-width: calc(100% - 60px);
    margin: 0 30px;
    top: 15px;
    border-radius: 50px;
  }

  .header .container {
    padding: 0 20px;
  }

  .nav-menu {
    gap: 20px;
  }

  .nav-link {
    font-size: 11px;
    letter-spacing: 0.5px;
  }

  .header-cta .cta-button {
    padding: 10px 18px;
    font-size: 9px;
    gap: 8px;
  }

  .phone-icon {
    width: 14px;
    height: 14px;
  }

  .header-cart {
    width: 35px;
    height: 35px;
  }

  .logo-image {
    height: 32px;
  }
}

/* ===========================
   SMALL TABLETS (641px - 768px)
   =========================== */
@media (max-width: 768px) {
  .header {
    margin: 0 20px;
    border-radius: 20px;
    top: 10px;
    max-width: calc(100% - 40px);
  }

  .header .container {
    padding: 0 15px;
  }

  .header-content {
    gap: 15px;
  }

  /* Show mobile toggle */
  .nav-toggle {
    display: block !important;
    order: 2;
  }

  .logo {
    order: 1;
  }

  .header-cta {
    order: 3;
    gap: 12px;
  }

  /* Hide desktop nav */
  .nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0,0,0,0.98);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }

  .nav.open {
    transform: translateX(0);
  }

  .nav-menu {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
    padding: 0;
    margin: 0;
  }

  .nav-menu li {
    display: block;
  }

  .nav-link {
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffffff !important;
    background-color: transparent !important;
    padding: 1rem 2rem;
    display: block;
    border-radius: 8px;
  }

  .nav-link:hover,
  .nav-link.active:hover {
    color: #9ACD32 !important;
    background-color: rgba(154, 205, 50, 0.1) !important;
  }

  /* Hide call button on mobile, keep cart */
  .header-cta .cta-phone {
    display: none;
  }

  .header-cart {
    display: flex;
  }

  .logo-image {
    height: 30px;
    max-width: 80px;
  }
}

/* ===========================
   MOBILE (max 640px)
   =========================== */
@media (max-width: 640px) {
  .header {
    margin: 0 15px;
    top: 10px;
    padding: 15px 0;
  }

  .header .container {
    padding: 0 12px;
  }

  .logo-image {
    height: 28px;
    max-width: 70px;
  }

  .nav-link {
    font-size: 1.5rem;
  }
}

/* Prevent body scroll when mobile menu is open */
body.nav-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

/* ===========================
   PHONE BUTTON HOVER EFFECT
   =========================== */
.cta-phone {
  position: relative;
  overflow: visible !important;
}

.cta-phone .phone-text {
  display: inline-block;
  transition: opacity 0.3s ease;
}

.cta-phone .phone-number {
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  background: #a8c256;
  color: #0a0a0a;
  padding: 8px 15px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  margin-top: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  pointer-events: none;
}

.cta-phone .phone-number::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #a8c256;
}

.cta-phone:hover .phone-number {
  opacity: 1;
  visibility: visible;
  margin-top: 12px;
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
  .nav,
  .nav-toggle,
  .nav-link,
  .header {
    transition: none;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .nav-toggle:focus {
    outline: 3px solid #ffffff;
  }

  .nav-link:hover,
  .nav-link.active {
    background-color: #9ACD32;
    color: #000000 !important;
  }
}
