:root {
    --primary: #FF0000;
    --primary-dark: #CC0000;
    --primary-light: #FF3333;
    --secondary: #00274D;
    --secondary-dark: #001A33;
    --secondary-light: #003366;
    --dark: #121212;
    --light: #F8F9FA;
    --gray: #6C757D;
    --gray-light: #E9ECEF;
    --gray-dark: #343A40;
    --white: #FFFFFF;
    --black: #000000;
    --border-radius: 8px;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* Base Styles */
body {
    font-family: 'Poppins', sans-serif;
    color: var(--gray-dark);
    overflow-x: hidden;
    background-color: var(--white);
    padding-top: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
}

a {
    text-decoration: none;
    color: var(--secondary);
    transition: var(--transition);
}

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

.btn {
    border-radius: 30px;
    padding: 10px 25px;
    font-weight: 500;
    transition: var(--transition);
}

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

.btn-primary:hover, .btn-primary:focus {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-secondary {
    background-color: var(--secondary);
    border-color: var(--secondary);
}

.btn-secondary:hover, .btn-secondary:focus {
    background-color: var(--secondary-dark);
    border-color: var(--secondary-dark);
}

.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
}

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

.btn-outline-primary.active {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.section-header {
    margin-bottom: 2rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
}

.section-divider {
    height: 3px;
    width: 60px;
    background-color: var(--primary);
    margin: 0 auto 1.5rem;
}

.section-header:not(.text-center) .section-divider {
    margin-left: 0;
}

.section-subtext {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

/* Navigation */
.navbar {
    background-color: rgba(0, 39, 77, 0.95);
    padding: 15px 0;
    transition: var(--transition);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--white);
}

.navbar-brand:hover {
    color: var(--white);
}

.logo {
    height: 45px;
    width: auto;
}

.navbar-toggler {
    border: none;
    color: var(--white);
    font-size: 1.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.nav-link {
    font-weight: 500;
    color: var(--white);
    padding: 8px 15px;
    position: relative;
    text-transform: uppercase;
}

.nav-link:hover, .nav-link.active {
    color: var(--white);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 70%;
}

.order-btn {
    background-color: var(--primary);
    color: var(--white) !important;
    border-radius: 30px;
    padding: 8px 20px !important;
    transition: var(--transition);
}

.order-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
}

/* Page Header */
.page-header {
    background: linear-gradient(rgba(0, 39, 77, 0.8), rgba(0, 39, 77, 0.9)), url('page-header-bg.png');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 120px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.breadcrumb {
    justify-content: center;
    background: transparent;
}

.breadcrumb-item, .breadcrumb-item a {
    color: var(--white);
}

.breadcrumb-item.active {
    color: var(--primary-light);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--white);
}

/* Hero Section */
#hero {
    background: linear-gradient(rgba(0, 39, 77, 0.7), rgba(0, 39, 77, 0.8)), url('hero-bg.png');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 150px 0 100px;
    padding-top: 220px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

#hero .container {
    position: relative;
    z-index: 2;
}

#hero .row {
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    max-width: 100%;
}

.hero-content h1,
.hero-content p,
.hero-content .hero-subtitle {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

#hero .hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 39, 77, 0.7), rgba(0, 39, 77, 0.8));
    z-index: 1;
}

#hero h1 {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

#hero .lead, #hero p {
    font-size: 1.4rem;
    margin-bottom: 30px;
    max-width: 600px;
    opacity: 0.9;
}

.hero-buttons {
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.hero-buttons .btn {
    margin: 0;
    flex: 0 0 auto;
}

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

.hero-image img {
    max-height: 400px;
    width: auto;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    max-width: 100%;
    height: auto;
}

/* Service Options */
.service-card {
    padding: 40px 30px;
    border-radius: var(--border-radius);
    background-color: var(--white);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-align: center;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: var(--secondary);
    transition: var(--transition);
    z-index: -1;
}

.service-card:hover::before {
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    color: var(--white);
}

.service-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background-color: var(--white);
}

.service-icon i {
    font-size: 30px;
    color: var(--white);
    transition: var(--transition);
}

.service-card:hover .service-icon i {
    color: var(--primary);
}

.service-card h3 {
    margin-bottom: 15px;
    font-weight: 600;
}

/* Categories */
.category-card {
    display: block;
    text-align: center;
    transition: var(--transition);
    color: var(--white);
}

.category-card:hover {
    transform: translateY(-10px);
    color: var(--primary);
}

.category-img {
    margin: 0 auto 15px;
    transition: var(--transition);
}

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

.category-card h4 {
    font-weight: 600;
    font-size: 1.1rem;
}

/* Category Section Styles */
.category-item {
    text-align: center;
    margin-bottom: 30px;
}

.category-img-container {
    width: 200px;
    height: 200px;
    margin: 0 auto 15px;
    overflow: hidden;
    border-radius: 50%;
    position: relative;
}

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

.category-item:hover .category-img {
    transform: scale(1.1);
}

.category-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 15px;
}

.category-item .category-title a {
    color: var(--white);
}
.category-item .category-title a:hover {
    color: var(--primary);
}

/* Menu Items */
.product-item {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
    background-color: var(--white);
}

.product-item:hover {
    transform: translateY(-10px);
}

.product-item-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.product-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-item:hover .product-item-img img {
    transform: scale(1.1);
}

.product-item-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-item-info {
    padding: 25px;
}

.product-item h4 {
    font-weight: 600;
    margin-bottom: 5px;
}

.price {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.1rem;
}

.product-item p {
    margin: 15px 0;
    color: var(--gray);
}

/* Menu Filter */
.product-filter .btn {
    margin-right: 5px;
    margin-bottom: 10px;
}

/* Chef's Recommendations */
.chef-recommendation {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    background-color: var(--white);
    height: 100%;
}

.chef-rec-info {
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.chef-rec-info h4 {
    font-weight: 600;
    margin-bottom: 5px;
}

.chef-rec-info .price {
    margin-bottom: 10px;
}

/* Dietary Options */
.dietary-card {
    padding: 30px;
    border-radius: var(--border-radius);
    background-color: var(--white);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
}

.dietary-card:hover {
    transform: translateY(-10px);
}

.dietary-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.dietary-icon i {
    font-size: 24px;
    color: var(--white);
}

.dietary-card h3 {
    margin-bottom: 15px;
    font-weight: 600;
}

/* Delivery Platforms */
.delivery-platform {
    display: block;
    padding: 30px;
    border-radius: var(--border-radius);
    background-color: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    color: var(--white);
    text-decoration: none;
    height: 100%;
}

.delivery-platform:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-10px);
    color: var(--white);
}

.delivery-platform img {
    height: 60px;
    object-fit: contain;
    transition: var(--transition);
}

.delivery-platform:hover img {
    transform: scale(1.1);
}

.delivery-platform h4 {
    margin-top: 15px;
    font-weight: 600;
}

/* Ambiance Section */
.ambiance-gallery img {
    transition: var(--transition);
    border: 3px solid var(--white);
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.ambiance-gallery img:hover {
    transform: scale(1.05);
    border-color: var(--primary);
}

/* Testimonials */
.testimonial-card {
    padding: 30px;
    border-radius: var(--border-radius);
    background-color: var(--white);
    box-shadow: var(--box-shadow);
    height: 100%;
    transition: var(--transition);
}

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

.testimonial-rating {
    color: #FFD700;
    margin-bottom: 20px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--gray);
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info h5 {
    margin-bottom: 0;
    font-weight: 600;
}

.testimonial-info span {
    font-size: 0.9rem;
    color: var(--gray);
}

/* Testimonial Banner */
.testimonial-banner {
    background: linear-gradient(rgba(0, 39, 77, 0.8), rgba(0, 39, 77, 0.8)), url('testimonial-bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
}

.testimonial-quote {
    padding: 40px;
    position: relative;
}

.testimonial-quote i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 20px;
    display: block;
}

.testimonial-quote .lead {
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-quote .testimonial-author {
    display: block;
    text-align: center;
}

.testimonial-quote .testimonial-author h5 {
    font-weight: 600;
    margin-bottom: 5px;
}

/* Team Cards */
.team-card {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    background-color: var(--white);
    height: 100%;
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-img {
    height: 250px;
    overflow: hidden;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.team-info {
    padding: 20px;
}

.team-info h4 {
    font-weight: 600;
    margin-bottom: 5px;
}

.team-position {
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 10px;
}

.team-social {
    margin-top: 15px;
}

.team-social a {
    display: inline-block;
    width: 32px;
    height: 32px;
    background-color: var(--gray-light);
    border-radius: 50%;
    text-align: center;
    line-height: 32px;
    margin-right: 5px;
    color: var(--gray-dark);
    transition: var(--transition);
}

.team-social a:hover {
    background-color: var(--primary);
    color: var(--white);
}

/* Achievement Cards */
.achievement-card {
    padding: 30px;
    color: var(--white);
    transition: var(--transition);
}

.achievement-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.achievement-card h3 {
    font-weight: 600;
    margin-bottom: 10px;
}

/* Value Cards */
.value-card {
    padding: 30px;
    border-radius: var(--border-radius);
    background-color: var(--white);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
    text-align: center;
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon i {
    font-size: 30px;
    color: var(--white);
}

.value-card h3 {
    margin-bottom: 15px;
    font-weight: 600;
}

/* Footer */
#footer {
    background-color: var(--secondary);
    color: var(--white);
}

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

.footer-logo {
    height: 60px;
    width: auto;
}

.social-icons {
    display: flex;
    margin-top: 20px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 10px;
    color: var(--white);
    transition: var(--transition);
}

.social-icon:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-5px);
}

.footer-heading {
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary);
}

.footer-contact li, .footer-hours li {
    margin-bottom: 10px;
}

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

.footer-links a {
    color: var(--white);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-bottom {
    background-color: var(--secondary-dark);
    padding: 20px 0;
}

.footer-bottom-link {
    color: var(--white);
    margin-left: 20px;
}

.footer-bottom-link:hover {
    color: var(--primary);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    text-align: center;
    line-height: 45px;
    padding: 0;
    z-index: 99;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    background-color: var(--primary-color-dark);
}

.back-to-top i {
    font-size: 1.25rem;
    line-height: 1;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}

/* Cart Styles */
.cart-icon {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, #FF0000, #CC0000);
    color: white;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(255, 0, 0, 0.4);
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -450px;
    width: 450px;
    height: 100vh;
    background: white;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
    transition: right 0.4s ease;
    z-index: 1050;
    display: flex;
    flex-direction: column;
}

.cart-sidebar.open {
    right: 0;
}

.cart-header {
    background: linear-gradient(135deg, #FF0000, #00274D);
    color: white;
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-body {
    flex: 1;
    overflow-y: auto;
    padding: 25px;
}

.cart-footer {
    padding: 25px;
    border-top: 1px solid #eee;
    background: #f8f9fa;
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 39, 77, 0.6);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.cart-overlay.show {
    opacity: 1;
    visibility: visible;
}

.empty-cart {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

.empty-cart i {
    font-size: 4rem;
    margin-bottom: 20px;
    color: #ddd;
}

.cart-total {
    font-size: 1.2rem;
    font-weight: 700;
    color: #FF0000;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
}

/* Responsive Adjustments */
@media (max-width: 1199.98px) {
    #hero h1 {
        font-size: 4rem;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: var(--secondary);
        padding: 20px;
        border-radius: var(--border-radius);
        margin-top: 15px;
    }
    
    #hero {
        min-height: 100vh;
        padding: 180px 0 100px;
        padding-top: 160px;
        text-align: center;
    }
    
    #hero .row {
        flex-direction: column;
    }
    
    #hero .col-lg-6 {
        margin-bottom: 30px;
    }
    
    #hero h1 {
        font-size: 3.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 767.98px) {
    #hero {
        padding: 140px 0 80px;
        padding-top: 140px;
        min-height: 90vh;
    }
    
    #hero h1 {
        font-size: 3rem;
        margin-bottom: 15px;
    }
    
    #hero .lead, #hero p {
        font-size: 1.2rem;
        margin-bottom: 25px;
    }
    
    .hero-image img {
        max-height: 300px;
    }
    
    .hero-buttons {
        margin-top: 25px;
        gap: 8px;
    }
    
    .hero-buttons .btn {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .testimonial-quote .lead {
        font-size: 1.2rem;
    }
}

@media (max-width: 575.98px) {
    .navbar-brand {
        font-size: 1.5rem;
    }
    
    .logo {
        height: 35px;
    }
    
    #hero {
        padding: 120px 0 60px;
        padding-top: 120px;
        min-height: 85vh;
    }
    
    #hero h1 {
        font-size: 2.5rem;
        line-height: 1.1;
        margin-bottom: 12px;
    }
    
    #hero .lead, #hero p {
        font-size: 1.1rem;
        margin-bottom: 20px;
        padding: 0 10px;
    }
    
    .hero-image img {
        max-height: 250px;
    }
    
    .hero-buttons {
        margin-top: 20px;
        padding: 0 15px;
    }
    
    .hero-buttons .btn {
        padding: 10px 18px;
        font-size: 0.9rem;
        max-width: 250px;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    .page-header {
        padding: 100px 0 50px;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
}

/* Extra small devices (portrait phones, less than 400px) */
@media (max-width: 399.98px) {
    #hero {
        padding: 100px 0 50px;
        padding-top: 100px;
        min-height: 80vh;
    }
    
    #hero h1 {
        font-size: 2.2rem;
        line-height: 1.1;
        margin-bottom: 10px;
    }
    
    #hero .lead, #hero p {
        font-size: 1rem;
        margin-bottom: 18px;
        padding: 0 5px;
    }
    
    .hero-image img {
        max-height: 200px;
    }
    
    .hero-buttons {
        margin-top: 18px;
        padding: 0 10px;
        gap: 6px;
    }
    
    .hero-buttons .btn {
        padding: 8px 16px;
        font-size: 0.85rem;
        max-width: 220px;
    }
}

/* 404 Error Page Styles */
.error-404-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* 404 Hero Section */
.error-404-hero {
    background: linear-gradient(135deg, #f8fafc 0%, #e3f2fd 50%, #fff3e0 100%);
    position: relative;
    padding: 80px 0 60px;
    overflow: hidden;
}

.error-404-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 0, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 107, 53, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.error-404-content {
    position: relative;
    z-index: 2;
}

.error-number {
    font-size: 8rem;
    font-weight: 900;
    color: transparent;
    background: linear-gradient(45deg, #FF0000, #ff6b35);
    background-clip: text;
    -webkit-background-clip: text;
    text-shadow: 0 4px 8px rgba(255, 0, 0, 0.2);
    margin-bottom: 1rem;
    animation: pulse 2s ease-in-out infinite;
}

.error-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.error-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Search Form */
.error-search {
    margin: 2rem 0;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.error-search .input-group {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    overflow: hidden;
}

.error-search .form-control {
    border: none;
    padding: 15px 25px;
    font-size: 1rem;
    border-radius: 50px 0 0 50px !important;
}

.error-search .form-control:focus {
    box-shadow: none;
    border-color: #FF0000;
}

.error-search .btn-primary {
    background: #FF0000;
    border: none;
    padding: 15px 25px;
    border-radius: 0 50px 50px 0 !important;
    transition: all 0.3s ease;
}

.error-search .btn-primary:hover {
    background: #CC0000;
    transform: scale(1.05);
}

/* Navigation Buttons */
.error-navigation {
    margin-top: 2rem;
}

.error-navigation .btn {
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin: 0.5rem 0.5rem;
}

.error-navigation .btn-primary {
    background: #FF0000;
    border: 2px solid #FF0000;
}

.error-navigation .btn-primary:hover {
    background: #CC0000;
    border-color: #CC0000;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

.error-navigation .btn-outline-primary {
    color: #FF0000;
    border: 2px solid #FF0000;
    background: transparent;
}

.error-navigation .btn-outline-primary:hover {
    background: #FF0000;
    border-color: #FF0000;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

/* Menu Categories Section */
.error-suggestions {
    background: #fff;
}

.category-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.category-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.category-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

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

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.category-card:hover .category-overlay {
    opacity: 1;
}

.category-overlay i {
    color: white;
    font-size: 2rem;
    animation: zoomIn 0.3s ease;
}

.category-content {
    padding: 1.5rem;
}

.category-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.category-description {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

/* Help Section */
.error-help {
    background: #f8f9fa;
}

.help-links {
    margin: 2rem 0;
}

.help-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.help-link:hover {
    color: #FF0000;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.help-link i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #FF0000;
    transition: all 0.3s ease;
}

.help-link:hover i {
    transform: scale(1.2);
}

.help-link span {
    font-weight: 600;
}

/* Contact Info */
.contact-info {
    margin-top: 2rem;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.contact-info h4 {
    color: #FF0000;
    margin-bottom: 1rem;
}

.contact-details p {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.contact-details a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #FF0000;
}

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

@keyframes zoomIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .error-number {
        font-size: 5rem;
    }
    
    .error-title {
        font-size: 2rem;
    }
    
    .error-description {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .error-navigation .btn {
        display: block;
        margin: 0.5rem auto;
        max-width: 250px;
    }
    
    .category-image {
        height: 150px;
    }
    
    .category-content {
        padding: 1rem;
    }
    
    .help-link {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .contact-info {
        padding: 1.5rem;
        margin: 1rem;
    }
}

@media (max-width: 480px) {
    .error-404-hero {
        padding: 60px 0 40px;
    }
    
    .error-number {
        font-size: 4rem;
    }
    
    .error-title {
        font-size: 1.5rem;
    }
    
    .error-search .form-control,
    .error-search .btn-primary {
        padding: 12px 20px;
    }
}

/* Section Headers */
.section-header h2 {
    color: #333;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, #FF0000, #ff6b35);
    margin: 0 auto 1rem;
    border-radius: 2px;
}

.section-subtext {
    color: #666;
    font-size: 1.1rem;
}

/* Search Page Styles */
.search-results-container {
    min-height: 100vh;
}

/* Search Hero Section */
.search-hero {
    background: linear-gradient(135deg, #f8fafc 0%, #e3f2fd 50%, #fff3e0 100%);
    position: relative;
    padding: 80px 0 60px;
    overflow: hidden;
}

.search-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 0, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 107, 53, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.search-header {
    position: relative;
    z-index: 2;
}

.search-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.search-count {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.search-count.no-results {
    color: #dc3545;
}

/* Enhanced Search Form */
.search-form-wrapper {
    margin: 2rem 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.search-form .input-group {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    overflow: hidden;
}

.search-form .form-control {
    border: none;
    padding: 18px 25px;
    font-size: 1.1rem;
    border-radius: 50px 0 0 50px !important;
    background: white;
}

.search-form .form-control:focus {
    box-shadow: none;
    border-color: #FF0000;
    outline: none;
}

.search-form .btn-primary {
    background: #FF0000;
    border: none;
    padding: 18px 25px;
    border-radius: 0 50px 50px 0 !important;
    transition: all 0.3s ease;
    min-width: 80px;
}

.search-form .btn-primary:hover {
    background: #CC0000;
    transform: scale(1.05);
}

/* Search Content */
.search-content {
    background: #fff;
}

.search-category {
    margin-bottom: 3rem;
}

.category-header {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
}

.category-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.category-title i {
    color: #FF0000;
    font-size: 1.5rem;
}

.category-title .count {
    font-size: 1rem;
    color: #666;
    font-weight: 400;
}

/* Menu Item Cards */
.menu-item-card,
.blog-item-card,
.page-item-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #f0f0f0;
}

.menu-item-card:hover,
.blog-item-card:hover,
.page-item-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border-color: #FF0000;
}

.card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.menu-item-card:hover .card-image img,
.blog-item-card:hover .card-image img {
    transform: scale(1.1);
}

.placeholder-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    color: #6c757d;
    font-size: 3rem;
}

.featured-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

.card-content {
    padding: 1.5rem;
}

.item-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.item-description {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.item-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.item-category,
.post-date,
.post-author {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.85rem;
    color: #666;
}

.item-category i,
.post-date i,
.post-author i {
    color: #FF0000;
    font-size: 0.8rem;
}

.item-price {
    font-weight: 600;
    color: #FF0000;
    font-size: 1.1rem;
}

.dietary-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.dietary-tag {
    background: #f8f9fa;
    color: #495057;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid #e9ecef;
}

/* Page Item Cards */
.page-item-card .card-content {
    text-align: center;
    padding: 2rem 1.5rem;
}

.read-more {
    color: #FF0000;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.page-item-card:hover .read-more {
    transform: translateX(5px);
}

/* No Results Section */
.no-results {
    background: #f8f9fa;
}

.no-results-content {
    text-align: center;
}

.no-results-icon {
    font-size: 4rem;
    color: #6c757d;
    margin-bottom: 1rem;
}

.no-results-content h2 {
    color: #333;
    margin-bottom: 1rem;
}

.no-results-content p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.search-suggestions {
    margin-top: 2rem;
}

.search-suggestions h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.suggestion-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.suggestion-tag {
    background: white;
    color: #333;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.suggestion-tag:hover {
    background: #FF0000;
    color: white;
    border-color: #FF0000;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.2);
}

/* Search Categories Section */
.search-categories {
    background: #f8f9fa;
}

.search-categories .category-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.search-categories .category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.search-categories .category-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.search-categories .category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.search-categories .category-card:hover .category-image img {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.search-categories .category-card:hover .category-overlay {
    opacity: 1;
}

.category-overlay i {
    color: white;
    font-size: 2rem;
    animation: zoomIn 0.3s ease;
}

.search-categories .category-content {
    padding: 1.5rem;
}

.search-categories .category-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.search-categories .category-description {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

/* Button Styles */
.btn-lg {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #FF0000;
    border: 2px solid #FF0000;
}

.btn-primary:hover {
    background: #CC0000;
    border-color: #CC0000;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .search-title {
        font-size: 2rem;
    }
    
    .search-form .form-control,
    .search-form .btn-primary {
        padding: 15px 20px;
    }
    
    .category-title {
        font-size: 1.5rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
    
    .item-meta {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .card-image {
        height: 160px;
    }
    
    .suggestion-tags {
        flex-direction: column;
        align-items: center;
    }
    
    .suggestion-tag {
        min-width: 200px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .search-hero {
        padding: 60px 0 40px;
    }
    
    .search-title {
        font-size: 1.5rem;
    }
    
    .search-form-wrapper {
        padding: 0 1rem;
    }
    
    .card-content {
        padding: 1rem;
    }
    
    .item-title {
        font-size: 1.1rem;
    }
    
    .category-title {
        font-size: 1.3rem;
    }
}

/* Animation for zoom in effect */
@keyframes zoomIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

/* ================================
   WooCommerce Checkout Customizations
   ================================ */

/* Delivery Status Notice */
.woocommerce-info {
    background-color: #e7f3ff;
    border-left: 4px solid #FF0000;
    padding: 15px 20px;
    margin: 20px 0;
    border-radius: 5px;
}

/* Delivery Information Section */
.bc-momo-delivery-info {
    background: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px;
    margin: 20px 0;
    position: relative;
}

.bc-momo-delivery-info h3 {
    color: #FF0000;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.3em;
    font-weight: 600;
    border-bottom: 2px solid #ff6b35;
    padding-bottom: 8px;
}

.bc-momo-delivery-info .delivery-status {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 5px;
    padding: 10px 15px;
    margin-bottom: 20px;
    color: #856404;
    font-weight: 500;
}

.bc-momo-delivery-info .delivery-zones {
    margin-bottom: 20px;
}

.bc-momo-delivery-info .delivery-zones h4 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.1em;
}

.bc-momo-delivery-info .delivery-zone {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.bc-momo-delivery-info .delivery-zone:hover {
    border-color: #FF0000;
    box-shadow: 0 2px 8px rgba(255, 0, 0, 0.1);
}

.bc-momo-delivery-info .delivery-zone strong {
    color: #FF0000;
    font-size: 1.05em;
}

.bc-momo-delivery-info .delivery-zone small {
    color: #666;
    font-style: italic;
}

.bc-momo-delivery-info .delivery-zones ul {
    list-style-type: none;
    padding: 0;
}

.bc-momo-delivery-info .delivery-zones li {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    padding: 12px 15px;
    margin-bottom: 8px;
    position: relative;
    padding-left: 40px;
}

.bc-momo-delivery-info .delivery-zones li::before {
    content: "🚚";
    position: absolute;
    left: 15px;
    top: 12px;
    font-size: 1.1em;
}

.bc-momo-delivery-info .delivery-time {
    background: #e8f5e8;
    border: 1px solid #c3e6c3;
    border-radius: 5px;
    padding: 12px 15px;
    margin-bottom: 15px;
    color: #2d5016;
}

.bc-momo-delivery-info .delivery-contact {
    text-align: center;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
}

.bc-momo-delivery-info .delivery-contact a {
    color: #FF0000;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
}

.bc-momo-delivery-info .delivery-contact a:hover {
    text-decoration: underline;
}

/* Pickup Information Section */
.bc-momo-pickup-info {
    background: #f0f8f0;
    border: 1px solid #c3e6c3;
    border-radius: 8px;
    padding: 25px;
    margin: 20px 0;
    position: relative;
}

.bc-momo-pickup-info::before {
    content: "📍";
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5em;
}

.bc-momo-pickup-info h3 {
    color: #2d5016;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.3em;
    font-weight: 600;
    border-bottom: 2px solid #4caf50;
    padding-bottom: 8px;
}

.bc-momo-pickup-info .pickup-intro {
    background: #e8f5e8;
    border: 1px solid #c3e6c3;
    border-radius: 5px;
    padding: 12px 15px;
    margin-bottom: 20px;
    color: #2d5016;
    font-weight: 500;
    text-align: center;
}

.bc-momo-pickup-info h4 {
    color: #2d5016;
    margin-bottom: 8px;
    margin-top: 20px;
    font-size: 1.1em;
}

.bc-momo-pickup-info .pickup-address {
    background: white;
    border: 1px solid #c3e6c3;
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 15px;
}

.bc-momo-pickup-info address {
    font-style: normal;
    line-height: 1.6;
    color: #333;
}

.bc-momo-pickup-info .pickup-hours {
    background: white;
    border: 1px solid #c3e6c3;
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 15px;
}

.bc-momo-pickup-info .pickup-contact {
    background: white;
    border: 1px solid #c3e6c3;
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 15px;
}

.bc-momo-pickup-info .pickup-contact a {
    color: #2d5016;
    text-decoration: none;
    font-weight: 600;
}

.bc-momo-pickup-info .pickup-contact a:hover {
    text-decoration: underline;
    color: #4caf50;
}

.bc-momo-pickup-info .pickup-note {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 5px;
    padding: 12px 15px;
    margin-top: 20px;
    color: #856404;
    font-style: italic;
    text-align: center;
}

/* Opening Hours in Pickup Info */
.bc-momo-pickup-info .opening-hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bc-momo-pickup-info .opening-hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
    border-bottom: 1px solid #e0e0e0;
}

.bc-momo-pickup-info .opening-hours-list li:last-child {
    border-bottom: none;
}

.bc-momo-pickup-info .day {
    font-weight: 600;
    color: #2d5016;
}

.bc-momo-pickup-info .hours {
    color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
    .bc-momo-delivery-info,
    .bc-momo-pickup-info {
        padding: 20px;
        margin: 15px 0;
    }
    
    .bc-momo-delivery-info .delivery-zone,
    .bc-momo-delivery-info .delivery-zones li {
        padding: 10px 12px;
    }
    
    .bc-momo-delivery-info .delivery-zones li {
        padding-left: 35px;
    }
    
    .bc-momo-pickup-info .pickup-address,
    .bc-momo-pickup-info .pickup-hours,
    .bc-momo-pickup-info .pickup-contact {
        padding: 12px;
    }
    
    .bc-momo-pickup-info::before {
        top: 15px;
        right: 15px;
        font-size: 1.3em;
    }
}

/* Checkout Form Enhancements */
.woocommerce form .form-row {
    margin-bottom: 20px;
}

.woocommerce #order_review_heading {
    color: #FF0000;
    border-bottom: 2px solid #ff6b35;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.woocommerce .woocommerce-checkout-review-order-table {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.woocommerce .woocommerce-checkout-review-order-table th,
.woocommerce .woocommerce-checkout-review-order-table td {
    padding: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.woocommerce .woocommerce-checkout-review-order-table .order-total {
    background: #f9f9f9;
    font-weight: bold;
}

.woocommerce .woocommerce-checkout-review-order-table .order-total td {
    color: #FF0000;
    font-size: 1.1em;
}

/* Place Order Button */
.woocommerce #place_order {
    background: linear-gradient(135deg, #FF0000 0%, #cc0000 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.1em;
    font-weight: 600;
    border-radius: 8px;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.woocommerce #place_order:hover {
    background: linear-gradient(135deg, #cc0000 0%, #990000 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

/* Third-Party Delivery Platforms */
.bc-momo-delivery-info .third-party-delivery {
    margin-bottom: 25px;
    padding: 20px;
    background: #fff;
    border: 2px solid #4caf50;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.1);
}

.bc-momo-delivery-info .third-party-delivery h4 {
    color: #4caf50;
    margin-bottom: 15px;
    text-align: center;
    font-size: 1.2em;
    font-weight: 600;
}

.delivery-platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.delivery-platform-card {
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 20px 15px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.delivery-platform-card:hover {
    border-color: #4caf50;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.2);
}

.delivery-platform-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.delivery-platform-card .platform-logo {
    max-width: 60px;
    max-height: 60px;
    margin-bottom: 10px;
    border-radius: 8px;
}

.delivery-platform-card .platform-icon {
    font-size: 2.5em;
    margin-bottom: 10px;
    color: #4caf50;
    display: block;
}

.delivery-platform-card h5 {
    margin: 10px 0 8px 0;
    font-size: 1em;
    font-weight: 600;
}

.delivery-platform-card .order-now-text {
    background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.delivery-platform-card:hover .order-now-text {
    background: linear-gradient(135deg, #45a049 0%, #3d8b40 100%);
    transform: scale(1.05);
}

.delivery-platform-card .coming-soon-text {
    background: #ffc107;
    color: #333;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: 600;
    display: inline-block;
}

/* Platform-specific colors */
.delivery-platform-card[data-platform="uber-eats"] {
    border-color: #06c167;
}

.delivery-platform-card[data-platform="uber-eats"]:hover {
    border-color: #06c167;
    box-shadow: 0 8px 25px rgba(6, 193, 103, 0.2);
}

.delivery-platform-card[data-platform="doordash"] {
    border-color: #ff3008;
}

.delivery-platform-card[data-platform="doordash"]:hover {
    border-color: #ff3008;
    box-shadow: 0 8px 25px rgba(255, 48, 8, 0.2);
}

.delivery-platform-card[data-platform="skip-the-dishes"] {
    border-color: #E02B37;
}

.delivery-platform-card[data-platform="skip-the-dishes"]:hover {
    border-color: #E02B37;
    box-shadow: 0 8px 25px rgba(224, 43, 55, 0.2);
}

/* Our Delivery Zones (Disabled) */
.bc-momo-delivery-info .our-delivery-zones {
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f8f8;
    border: 1px solid #ddd;
    border-radius: 8px;
    opacity: 0.7;
}

.bc-momo-delivery-info .our-delivery-zones h4 {
    color: #666;
    margin-bottom: 10px;
    font-size: 1.1em;
}

.bc-momo-delivery-info .zone-note {
    font-style: italic;
    color: #888;
    margin-bottom: 15px;
    font-size: 0.95em;
}

.bc-momo-delivery-info .disabled-zone {
    background: #f5f5f5;
    border: 1px solid #ddd;
    color: #666;
    opacity: 0.8;
}

.bc-momo-delivery-info .disabled-zone::before {
    content: "⏸️";
    margin-right: 8px;
}

/* Delivery Time Info */
.bc-momo-delivery-info .delivery-time-info {
    background: #e3f2fd;
    border: 1px solid #90caf9;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
}

.bc-momo-delivery-info .delivery-time-info h4 {
    color: #1976d2;
    margin-bottom: 8px;
    font-size: 1.1em;
}

.bc-momo-delivery-info .delivery-time-info p {
    color: #424242;
    margin: 0;
    font-size: 0.95em;
}

/* Enhanced Notice Styling */
.woocommerce-info {
    background: linear-gradient(135deg, #e7f3ff 0%, #f0f8ff 100%);
    border-left: 5px solid #FF0000;
    padding: 18px 25px;
    margin: 25px 0;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.1);
}

.woocommerce-info strong {
    color: #FF0000;
}

/* Responsive Design for Delivery Platforms */
@media (max-width: 768px) {
    .delivery-platforms-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 12px;
    }
    
    .delivery-platform-card {
        padding: 15px 10px;
    }
    
    .delivery-platform-card .platform-icon {
        font-size: 2em;
    }
    
    .delivery-platform-card h5 {
        font-size: 0.9em;
    }
    
    .delivery-platform-card .order-now-text,
    .delivery-platform-card .coming-soon-text {
        padding: 6px 12px;
        font-size: 0.8em;
    }
    
    .bc-momo-delivery-info .third-party-delivery {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .delivery-platforms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Animation for platform cards */
@keyframes platformPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.delivery-platform-card.featured {
    animation: platformPulse 2s infinite;
}

/* Block Checkout Specific Styles */
.wp-block-woocommerce-checkout #bc-momo-delivery-pickup-info {
    margin-top: 30px;
    margin-bottom: 20px;
}

.wp-block-woocommerce-checkout .bc-momo-delivery-info,
.wp-block-woocommerce-checkout .bc-momo-pickup-info {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
}

/* Ensure delivery info shows properly in block checkout */
#bc-momo-delivery-pickup-info {
    width: 100%;
    clear: both;
}

/* Block checkout notice styling */
.wp-block-woocommerce-checkout .woocommerce-info {
    margin: 20px 0;
}

/* Enhanced visibility for block checkout */
.is-loading #bc-momo-delivery-pickup-info {
    display: none !important;
}

.checkout-loaded #bc-momo-delivery-pickup-info {
    display: block !important;
}

/* Block checkout specific platform grid */
.wp-block-woocommerce-checkout .delivery-platforms-grid {
    margin-top: 15px;
}

.wp-block-woocommerce-checkout .delivery-platform-card {
    transition: all 0.3s ease;
}

/* Responsive adjustments for block checkout */
@media (max-width: 768px) {
    .wp-block-woocommerce-checkout #bc-momo-delivery-pickup-info {
        margin-top: 20px;
        padding: 0 15px;
    }
    
    .wp-block-woocommerce-checkout .bc-momo-delivery-info,
    .wp-block-woocommerce-checkout .bc-momo-pickup-info {
        margin-left: -15px;
        margin-right: -15px;
    }
}

/* Checkout Delivery/Pickup Information */
.bc-momo-delivery-pickup-info {
    margin: 20px 0;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.bc-momo-delivery-info,
.bc-momo-pickup-info {
    margin-bottom: 20px;
}

.bc-momo-delivery-info h3,
.bc-momo-pickup-info h3 {
    color: #FF0000;
    margin-bottom: 15px;
}

.bc-momo-delivery-info h4,
.bc-momo-pickup-info h4 {
    color: #333;
    margin-bottom: 10px;
}

.delivery-platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 15px 0;
}

.delivery-platform-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.delivery-platform-card:hover {
    border-color: #FF0000;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.delivery-platform-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.delivery-platform-card .platform-logo {
    max-width: 80px;
    max-height: 40px;
    margin-bottom: 10px;
}

.delivery-platform-card .platform-icon {
    font-size: 24px;
    margin-bottom: 10px;
    display: block;
}

.delivery-platform-card h5 {
    margin: 10px 0 5px 0;
    font-size: 16px;
    font-weight: 600;
}

.delivery-platform-card .order-now-text {
    color: #FF0000;
    font-weight: 500;
    font-size: 14px;
}

.delivery-platform-card .coming-soon-text {
    color: #666;
    font-size: 14px;
}

.pickup-address,
.pickup-hours,
.pickup-contact {
    margin-bottom: 15px;
}

.pickup-address address {
    font-style: normal;
    line-height: 1.5;
}

.pickup-note {
    background: #e8f5e8;
    border-left: 4px solid #4caf50;
    padding: 10px 15px;
    margin-top: 15px;
    font-style: italic;
}

.delivery-time-info {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 10px 15px;
    margin: 15px 0;
}

.delivery-contact {
    text-align: center;
    font-weight: 500;
    margin-top: 15px;
}

.delivery-contact a {
    color: #FF0000;
    text-decoration: none;
}

.delivery-contact a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .delivery-platforms-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    
    .bc-momo-delivery-pickup-info {
        margin: 15px 0;
        padding: 15px;
    }
}
