:root {
    --pizza-red: #e74c3c;
    --shawarma-orange: #e67e22;
    --burger-yellow: #f1c40f;
    --fresh-green: #27ae60;
    --primary-gradient: linear-gradient(135deg, #e74c3c 0%, #e67e22 50%, #f1c40f 100%);
}

html {
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fa;
    line-height: 1.6;
}

/* Typography Improvements */
h1 {
    font-size: 3rem;
    font-weight: 800;
}

h2 {
    font-size: 2.5rem;
    font-weight: 800;
}

h3 {
    font-size: 2rem;
    font-weight: 700;
}

.hero-section h1,
.hero-section h2 {
    text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.4);
}

/* Spacing Enhancements */
.section-padding {
    padding-top: 80px;
    padding-bottom: 80px;
}

.section-padding-sm {
    padding-top: 60px;
    padding-bottom: 60px;
}

.section-margin {
    margin-top: 60px;
    margin-bottom: 60px;
}

/* Scroll-Reveal Animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Staggered Animation Delays */
.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

/* Green Fresh Accents */
.text-fresh {
    color: var(--fresh-green) !important;
}

.badge-fresh {
    background: linear-gradient(135deg, var(--fresh-green), #2ecc71);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.btn-fresh {
    background: linear-gradient(135deg, var(--fresh-green), #2ecc71);
    border: none;
    color: white;
}

.btn-fresh:hover {
    background: linear-gradient(135deg, #219a52, #27ae60);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(39, 174, 96, 0.3);
}

.border-fresh {
    border-color: var(--fresh-green) !important;
}

.bg-fresh-light {
    background-color: rgba(39, 174, 96, 0.1);
}

/* Success States with Green Accent */
.alert-success {
    background: linear-gradient(135deg, rgba(39, 174, 96, 0.15), rgba(46, 204, 113, 0.1));
    border-left: 4px solid var(--fresh-green);
    color: #1a6b40;
}

/* Wave Section Dividers */
.wave-divider {
    position: relative;
    height: 80px;
    width: 100%;
    overflow: hidden;
}

.wave-divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100' preserveAspectRatio='none'%3E%3Cpath fill='url(%23gradient)' d='M0,40 C150,80 350,0 500,40 C650,80 800,20 1000,50 C1200,80 1350,30 1440,60 L1440,0 L0,0 Z'/%3E%3Cdefs%3E%3ClinearGradient id='gradient' x1='0%25' y1='0%25' x2='100%25' y2='0%25'%3E%3Cstop offset='0%25' style='stop-color:%23e74c3c'/%3E%3Cstop offset='100%25' style='stop-color:%23e67e22'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E") no-repeat center;
    background-size: 100% 100%;
}

.wave-divider-bottom {
    position: relative;
    height: 80px;
    width: 100%;
    overflow: hidden;
}

.wave-divider-bottom::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100' preserveAspectRatio='none'%3E%3Cpath fill='url(%23gradient)' d='M0,60 C150,20 350,80 500,60 C650,40 800,90 1000,50 C1200,10 1350,70 1440,40 L1440,100 L0,100 Z'/%3E%3Cdefs%3E%3ClinearGradient id='gradient' x1='0%25' y1='0%25' x2='100%25' y2='0%25'%3E%3Cstop offset='0%25' style='stop-color:%23e74c3c'/%3E%3Cstop offset='100%25' style='stop-color:%23e67e22'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E") no-repeat center;
    background-size: 100% 100%;
}

.navbar {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-size: 1.5rem;
}

.hero-section {
    background: url('https://images.unsplash.com/photo-1504674900247-0877df9cc836?w=1920') center center / cover no-repeat;
    min-height: 500px;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.9) 0%, rgba(230, 126, 34, 0.85) 50%, rgba(241, 196, 15, 0.8) 100%);
}

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

.hero-title {
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    animation: fadeInDown 0.8s ease;
}

.hero-subtitle {
    text-shadow: 1px 1px 5px rgba(0,0,0,0.2);
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-buttons {
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.hero-btn-primary {
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.hero-btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.hero-btn-secondary {
    border-radius: 50px;
    border-width: 2px;
    transition: all 0.3s ease;
}

.hero-btn-secondary:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-3px);
}

.hero-food-icons {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.food-icon {
    position: absolute;
    color: rgba(255,255,255,0.15);
    font-size: 4rem;
    animation: floatIcon 6s ease-in-out infinite;
}

.food-icon-1 { top: 10%; left: 5%; animation-delay: 0s; }
.food-icon-2 { top: 20%; right: 10%; animation-delay: 1s; }
.food-icon-3 { bottom: 20%; left: 15%; animation-delay: 2s; }
.food-icon-4 { bottom: 10%; right: 5%; animation-delay: 3s; }
.food-icon-5 { top: 50%; left: 3%; animation-delay: 4s; }

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

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

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

/* Trust Badges */
.trust-badges-section {
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.trust-badge {
    padding: 15px;
    transition: all 0.3s ease;
}

.trust-badge:hover {
    transform: translateY(-5px);
}

.trust-badge:hover .trust-icon i {
    transform: scale(1.2);
}

.trust-icon i {
    transition: transform 0.3s ease;
}

/* Section Headers */
.section-header {
    position: relative;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--pizza-red), var(--shawarma-orange));
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.2rem;
    color: #2c3e50;
}

/* Enhanced Category Cards */
.category-card-enhanced {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border-radius: 20px;
    background: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

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

.category-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.category-card-enhanced:hover .category-icon-bg {
    transform: scale(1.1);
}

.category-icon-animated {
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.category-card-enhanced:hover .category-icon-animated {
    transform: scale(1.15) rotate(-5deg);
    animation: wiggle 0.5s ease;
}

@keyframes wiggle {
    0%, 100% { transform: scale(1.15) rotate(-5deg); }
    25% { transform: scale(1.15) rotate(5deg); }
    50% { transform: scale(1.15) rotate(-5deg); }
    75% { transform: scale(1.15) rotate(5deg); }
}

.category-arrow {
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.category-card-enhanced:hover .category-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Today's Specials */
.specials-section {
    position: relative;
}

.special-card {
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.special-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(231, 76, 60, 0.2);
}

.special-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 10;
}

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

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

.quick-view-btn {
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.special-card:hover .quick-view-btn {
    transform: translateY(0);
}

/* Enhanced Menu Cards */
.menu-card-enhanced {
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.menu-card-enhanced:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.menu-card-enhanced .card-img-top {
    transition: transform 0.5s ease;
}

.menu-card-enhanced:hover .card-img-top {
    transform: scale(1.08);
}

.popular-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

/* Avatar Circles for Testimonials */
.avatar-circle {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--pizza-red), var(--shawarma-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto;
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

.avatar-circle.bg-success { background: linear-gradient(135deg, #27ae60, #2ecc71); box-shadow: 0 5px 15px rgba(39, 174, 96, 0.3); }
.avatar-circle.bg-warning { background: linear-gradient(135deg, #f39c12, #f1c40f); box-shadow: 0 5px 15px rgba(243, 156, 18, 0.3); }
.avatar-circle.bg-info { background: linear-gradient(135deg, #3498db, #2980b9); box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3); }
.avatar-circle.bg-secondary { background: linear-gradient(135deg, #95a5a6, #7f8c8d); box-shadow: 0 5px 15px rgba(149, 165, 166, 0.3); }

/* Scroll Reveal Animation */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        min-height: 400px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-btn-primary {
        font-size: 1rem;
        padding: 12px 25px !important;
    }
    
    .food-icon {
        font-size: 2.5rem;
        opacity: 0.1;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .trust-badge h6 {
        font-size: 0.85rem;
    }
    
    .trust-badge small {
        font-size: 0.7rem;
    }
}

.category-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.category-card:hover .category-icon i {
    transform: scale(1.2);
}

.category-icon i {
    transition: transform 0.3s ease;
}

.menu-card {
    transition: all 0.3s ease;
    overflow: hidden;
}

.menu-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15) !important;
}

.menu-card .card-img-top {
    transition: transform 0.3s ease;
}

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

.add-to-cart-btn {
    transition: all 0.3s ease;
}

.add-to-cart-btn:hover {
    transform: scale(1.05);
}

.cart-badge, .favorites-badge {
    font-size: 0.7rem;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.favorite-btn {
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.favorite-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.favorite-btn i {
    transition: all 0.2s ease;
}

.favorite-btn:hover i {
    transform: scale(1.2);
}

.whatsapp-share-btn, .whatsapp-updates-btn {
    transition: all 0.3s ease;
}

.whatsapp-share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

.whatsapp-updates-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.2);
}

.payment-option {
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-option:hover {
    border-color: var(--bs-primary) !important;
    background-color: rgba(13, 110, 253, 0.05);
}

.payment-option:has(.form-check-input:checked) {
    border-color: var(--bs-primary) !important;
    background-color: rgba(13, 110, 253, 0.1);
}

.order-timeline .timeline-step {
    position: relative;
}

.order-timeline .step-icon {
    transition: all 0.3s ease;
}

.success-icon {
    animation: bounceIn 0.5s ease;
}

@keyframes bounceIn {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.btn-primary {
    background: linear-gradient(135deg, var(--pizza-red), var(--shawarma-orange));
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #c0392b, #d35400);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

.text-primary {
    color: var(--pizza-red) !important;
}

.bg-primary {
    background: linear-gradient(135deg, var(--pizza-red), var(--shawarma-orange)) !important;
}

.cart-item {
    transition: background-color 0.3s ease;
}

.cart-item:hover {
    background-color: rgba(0,0,0,0.02);
}

.toast {
    min-width: 300px;
}

footer {
    color: #e9ecef;
}

footer .text-muted {
    color: #adb5bd !important;
}

footer a {
    color: #adb5bd !important;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--shawarma-orange) !important;
}

footer h5, footer h6 {
    color: #fff;
}

footer ul.list-unstyled li {
    color: #adb5bd;
}

.form-control:focus, .form-select:focus {
    border-color: var(--shawarma-orange);
    box-shadow: 0 0 0 0.25rem rgba(230, 126, 34, 0.25);
}

.btn-check:checked + .btn-outline-primary {
    background: linear-gradient(135deg, var(--pizza-red), var(--shawarma-orange));
    border-color: var(--pizza-red);
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 300px;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .order-timeline {
        overflow-x: auto;
        padding-bottom: 1rem;
    }
    
    .timeline-step {
        min-width: 60px;
    }
}

[dir="rtl"] .me-2, [dir="rtl"] .me-3 {
    margin-right: 0 !important;
    margin-left: 0.5rem !important;
}

[dir="rtl"] .ms-2, [dir="rtl"] .ms-3 {
    margin-left: 0 !important;
    margin-right: 0.5rem !important;
}

.input-group-text {
    border-right: none;
}

.input-group .form-control {
    border-left: none;
}

.input-group .form-control:focus {
    border-left: none;
}

.sticky-top {
    z-index: 1020;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "›";
}

.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: 4px;
}

@keyframes skeleton-loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.skeleton-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.skeleton-image {
    width: 100%;
    height: 180px;
    border-radius: 0;
}

.skeleton-body {
    padding: 15px;
}

.skeleton-title {
    height: 20px;
    width: 70%;
    margin-bottom: 12px;
}

.skeleton-text {
    height: 14px;
    width: 100%;
    margin-bottom: 8px;
}

.skeleton-text-short {
    width: 60%;
}

.skeleton-text-block {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.skeleton-circle {
    border-radius: 50%;
}

.btn-ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: scale(0);
    animation: ripple-effect 0.6s ease-out;
    pointer-events: none;
    width: 100px;
    height: 100px;
    margin-left: -50px;
    margin-top: -50px;
}

@keyframes ripple-effect {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.toast-notification-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 350px;
}

.toast-notification {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-radius: 10px;
    background: white;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    transform: translateX(120%);
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0;
}

.toast-notification.toast-show {
    transform: translateX(0);
    opacity: 1;
}

.toast-notification.toast-hiding {
    transform: translateX(120%);
    opacity: 0;
}

.toast-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
}

.toast-message {
    flex: 1;
    font-size: 0.95rem;
    color: #333;
}

.toast-close {
    background: none;
    border: none;
    font-size: 1.3rem;
    color: #999;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    transition: color 0.2s;
}

.toast-close:hover {
    color: #333;
}

.toast-success {
    border-left: 4px solid var(--fresh-green);
}

.toast-success .toast-icon {
    color: var(--fresh-green);
}

.toast-error {
    border-left: 4px solid var(--pizza-red);
}

.toast-error .toast-icon {
    color: var(--pizza-red);
}

.toast-warning {
    border-left: 4px solid var(--shawarma-orange);
}

.toast-warning .toast-icon {
    color: var(--shawarma-orange);
}

.toast-info {
    border-left: 4px solid #3498db;
}

.toast-info .toast-icon {
    color: #3498db;
}

.navbar.header-compact {
    padding-top: 0.3rem !important;
    padding-bottom: 0.3rem !important;
    transition: padding 0.3s ease;
}

.navbar.header-compact .navbar-brand {
    font-size: 1.2rem;
    transition: font-size 0.3s ease;
}

.navbar {
    transition: padding 0.3s ease, box-shadow 0.3s ease;
}

@media (max-width: 768px) {
    .toast-notification-container {
        left: 15px;
        right: 15px;
        max-width: none;
    }
}

.location-section {
    position: relative;
    z-index: 10;
}

.location-input-group {
    max-width: 400px;
}

.location-input-group .form-control {
    border-left: 1px solid #ced4da !important;
}

.location-input-group .form-control:focus {
    border-color: var(--shawarma-orange);
    box-shadow: none;
}

.location-suggestions {
    position: absolute;
    width: 100%;
    max-width: 400px;
    background: white;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    z-index: 1000;
    display: none;
}

.location-suggestions.show {
    display: block;
}

.location-suggestion-item {
    padding: 10px 15px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
    transition: background-color 0.2s;
}

.location-suggestion-item:hover {
    background-color: #fff3e0;
}

.location-suggestion-item:last-child {
    border-bottom: none;
    border-radius: 0 0 8px 8px;
}

#detectLocationBtn {
    transition: all 0.3s ease;
}

#detectLocationBtn:hover {
    transform: scale(1.05);
}

#detectLocationBtn.detecting {
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.testimonials-section {
    background: linear-gradient(180deg, #f8f9fa 0%, #fff3e0 100%);
    padding: 60px 0;
}

.testimonial-card {
    max-width: 520px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
}

.testimonial-content {
    position: relative;
    padding: 30px 25px 25px;
}

.testimonial-content::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 1.5rem;
    color: rgba(231, 76, 60, 0.15);
    position: absolute;
    top: 15px;
    left: 20px;
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    margin: 0 auto;
}

.testimonial-avatar .avatar-circle {
    width: 56px;
    height: 56px;
    font-size: 1rem;
}

.testimonial-text {
    font-size: 0.95rem;
    font-style: italic;
    color: #555;
    line-height: 1.6;
    margin-bottom: 12px;
}

.testimonial-name {
    color: var(--pizza-red);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 2px;
}

.rating i {
    font-size: 0.9rem;
    margin: 0 1px;
}

#testimonialsCarousel .carousel-control-prev,
#testimonialsCarousel .carousel-control-next {
    width: 36px;
    height: 36px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
}

#testimonialsCarousel .carousel-control-prev-icon,
#testimonialsCarousel .carousel-control-next-icon {
    padding: 8px !important;
    width: 36px;
    height: 36px;
}

#testimonialsCarousel .carousel-control-prev {
    left: -10px;
}

#testimonialsCarousel .carousel-control-next {
    right: -10px;
}

#testimonialsCarousel .carousel-indicators {
    bottom: -20px;
}

#testimonialsCarousel .carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 4px;
}

.food-gallery-section {
    background: #fff;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.gallery-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.8), rgba(241, 196, 15, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: white;
}

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

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

#foodGalleryCarousel .carousel-control-prev,
#foodGalleryCarousel .carousel-control-next {
    width: 50px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
}

#galleryModal .modal-content {
    border: none;
    border-radius: 15px;
    overflow: hidden;
}

#galleryModalImage {
    max-height: 70vh;
    object-fit: contain;
}

@media (max-width: 768px) {
    .location-section .row {
        flex-direction: column;
        text-align: center;
    }
    
    .location-input-group {
        margin: 0 auto;
    }
    
    .testimonial-card {
        margin: 0 15px;
    }
    
    .gallery-img {
        height: 150px;
    }
    
    #testimonialsCarousel .carousel-control-prev,
    #testimonialsCarousel .carousel-control-next,
    #foodGalleryCarousel .carousel-control-prev,
    #foodGalleryCarousel .carousel-control-next {
        display: none;
    }
}

#customizeModal .modal-content {
    border: none;
    border-radius: 15px;
    overflow: hidden;
}

#customizeModal .modal-header {
    background: linear-gradient(135deg, var(--pizza-red) 0%, var(--shawarma-orange) 100%);
    color: white;
}

#customizeModal .modal-header .btn-close {
    filter: brightness(0) invert(1);
}

#customizeModal .btn-check:checked + .btn-outline-primary {
    background: linear-gradient(135deg, var(--pizza-red), var(--shawarma-orange));
    border-color: var(--pizza-red);
    color: white;
}

#customizeModal .topping-check {
    padding: 8px 12px;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    transition: all 0.2s ease;
}

#customizeModal .topping-check:hover {
    border-color: var(--shawarma-orange);
    background-color: rgba(230, 126, 34, 0.05);
}

#customizeModal .topping-check:has(.form-check-input:checked) {
    border-color: var(--shawarma-orange);
    background-color: rgba(230, 126, 34, 0.1);
}

#customizeModal .form-check-input:checked {
    background-color: var(--shawarma-orange);
    border-color: var(--shawarma-orange);
}

#customizeModal .modal-footer {
    border-radius: 0 0 15px 15px;
}

.suggested-item-card {
    transition: all 0.3s ease;
    background: #fff;
}

.suggested-item-card:hover {
    border-color: var(--shawarma-orange) !important;
    box-shadow: 0 5px 15px rgba(230, 126, 34, 0.15);
    transform: translateY(-2px);
}

.customizations-list .badge {
    font-weight: 400;
    font-size: 0.7rem;
    padding: 4px 8px;
    border: 1px solid #dee2e6;
}

.quick-add-btn {
    transition: all 0.3s ease;
}

.quick-add-btn:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    #customizeModal .row > .col-md-5 {
        text-align: center;
    }
    
    #customizeModal .row > .col-md-5 img {
        max-width: 200px;
    }
    
    .cart-item {
        flex-direction: column;
        align-items: flex-start !important;
    }
    
    .cart-item > .d-flex {
        width: 100%;
        margin-top: 1rem;
        justify-content: space-between;
    }
}

/* WhatsApp Chat Widget */
.whatsapp-float {
    position: fixed;
    bottom: 90px;
    z-index: 9999;
}
.whatsapp-right {
    right: 25px;
}
.whatsapp-left {
    left: 25px;
}
.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-size: 32px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    position: relative;
}
.whatsapp-btn:hover {
    background: #128C7E;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}
.whatsapp-btn:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}
.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: #333;
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
    pointer-events: none;
}
.whatsapp-left .whatsapp-tooltip {
    right: auto;
    left: 70px;
    transform: translateX(-10px);
}
.whatsapp-left .whatsapp-btn:hover .whatsapp-tooltip {
    transform: translateX(0);
}
.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -6px;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: #333;
}
.whatsapp-left .whatsapp-tooltip::after {
    right: auto;
    left: -6px;
    border-left-color: transparent;
    border-right-color: #333;
}
.whatsapp-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.3);
    animation: whatsappPulse 2s infinite;
    pointer-events: none;
}
@keyframes whatsappPulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.5); opacity: 0; }
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
    }
    .whatsapp-btn {
        width: 55px;
        height: 55px;
        font-size: 24px;
    }
    .whatsapp-pulse {
        width: 55px;
        height: 55px;
    }
    .whatsapp-tooltip {
        display: none;
    }
}

/* ===== ENHANCED MENU PAGE STYLES ===== */

/* Category Filter Buttons */
.category-filter-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.category-filter-wrapper::-webkit-scrollbar {
    display: none;
}

.category-filter-btn {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 50px;
    padding: 8px 20px;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.category-filter-btn:hover {
    border-color: var(--shawarma-orange);
    color: var(--shawarma-orange);
    transform: translateY(-2px);
}

.category-filter-btn.active {
    background: linear-gradient(135deg, var(--pizza-red), var(--shawarma-orange));
    border-color: transparent;
    color: white;
    box-shadow: 0 5px 20px rgba(231, 76, 60, 0.3);
}
.category-filter-btn.active[style*="--cat-color"] {
    background: var(--cat-color);
}

/* Search Input */
.search-input-wrapper {
    position: relative;
}

.search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #adb5bd;
    z-index: 10;
}

.search-input {
    padding-left: 45px;
    border-radius: 50px;
    border: 2px solid #e9ecef;
    height: 48px;
    transition: all 0.3s ease;
}

.search-input:focus {
    border-color: var(--shawarma-orange);
    box-shadow: 0 0 0 4px rgba(230, 126, 34, 0.1);
}

.sort-select {
    border-radius: 50px;
    border: 2px solid #e9ecef;
    height: 48px;
    padding: 0 20px;
}

.sort-select:focus {
    border-color: var(--shawarma-orange);
    box-shadow: 0 0 0 4px rgba(230, 126, 34, 0.1);
}

/* Enhanced Menu Card V2 */
.menu-card-v2 {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    background: white;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.menu-card-v2:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.menu-card-v2 .card-body {
    padding: 15px;
}

/* Image Wrapper */
.menu-card-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 220px;
    background: #f8f0ed;
}

.menu-card-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
    background: #f8f0ed;
    display: block;
}

.menu-card-v2:hover .menu-card-image {
    transform: scale(1.1);
}

/* Gradient Overlay */
.image-gradient-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.menu-card-v2:hover .image-gradient-overlay {
    opacity: 0.7;
}

/* Category Ribbon */
.category-ribbon {
    position: absolute;
    top: 15px;
    right: -35px;
    transform: rotate(45deg);
    padding: 5px 40px;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Featured Badge */
.featured-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #f1c40f, #f39c12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
    box-shadow: 0 3px 10px rgba(241, 196, 15, 0.4);
    animation: pulse-star 2s infinite;
}

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

/* Spice Level Indicator */
.spice-indicator {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(255, 255, 255, 0.95);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.spice-indicator i {
    font-size: 0.7rem;
}

.spice-mild i { color: #27ae60; }
.spice-mild .spice-text { color: #27ae60; }

.spice-medium i { color: #e67e22; }
.spice-medium .spice-text { color: #e67e22; }

.spice-hot i { color: #e74c3c; }
.spice-hot .spice-text { color: #e74c3c; }

/* Quick Add Overlay */
.quick-add-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-card-v2:hover .quick-add-overlay {
    opacity: 1;
}

.quick-add-overlay .quick-add-btn {
    transform: translateY(20px);
    transition: all 0.3s ease;
    border-radius: 50px;
    padding: 12px 25px;
    font-weight: 600;
}

.menu-card-v2:hover .quick-add-overlay .quick-add-btn {
    transform: translateY(0);
}

.quick-add-overlay .quick-add-btn:hover {
    background: var(--shawarma-orange);
    color: white;
    transform: scale(1.05);
}

/* Favorite Button V2 */
.favorite-btn-v2 {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    z-index: 10;
}

.favorite-btn-v2:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.favorite-btn-v2 i {
    color: #e74c3c;
    font-size: 1rem;
}

.favorite-btn-v2.active i {
    font-weight: 900;
}

/* Card Body Styles */
.menu-card-title {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 5px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.6em;
}

.menu-card-title a:hover {
    color: var(--pizza-red) !important;
}

/* Star Rating */
.star-rating {
    display: flex;
    align-items: center;
    gap: 2px;
    font-size: 0.8rem;
}

.star-rating i {
    font-size: 0.8rem;
}

.rating-text {
    font-size: 0.75rem;
    color: #888;
    margin-left: 4px;
}

/* Description */
.menu-card-desc {
    font-size: 0.85rem;
    color: #777;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.55em;
    margin-bottom: 10px;
}

/* Price Wrapper */
.price-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.original-price {
    text-decoration: line-through;
    color: #aaa;
    font-size: 0.8rem;
}

.current-price {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--pizza-red, #e74c3c);
}

.discount-badge {
    background: #e74c3c;
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    display: inline-block;
}

/* Add to Cart Button V2 */
.add-to-cart-btn-v2 {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    flex-shrink: 0;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.add-to-cart-btn-v2:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 5px 20px rgba(231, 76, 60, 0.4);
}

/* Empty State */
.empty-state {
    padding: 60px 20px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

/* Responsive */
@media (max-width: 768px) {
    .menu-card-image-wrapper {
        height: 160px;
    }
    
    .category-ribbon {
        font-size: 0.65rem;
        padding: 4px 35px;
        right: -38px;
    }
    
    .quick-add-overlay {
        display: none;
    }
    
    .menu-card-title {
        font-size: 1rem;
    }
    
    .current-price {
        font-size: 1.1rem;
    }
    
    .add-to-cart-btn-v2 {
        width: 38px;
        height: 38px;
    }
}

/* ===== ENHANCED CART PAGE STYLES ===== */

/* Animated Empty Cart State */
.empty-cart-container {
    padding: 60px 20px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.empty-cart-animation {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.cart-icon-wrapper {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto;
}

.cart-icon-bounce {
    font-size: 5rem;
    color: var(--shawarma-orange);
    animation: cartBounce 2s ease-in-out infinite;
    display: block;
}

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

.floating-items {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-item {
    position: absolute;
    font-size: 1.5rem;
    opacity: 0.7;
}

.floating-pizza {
    top: -10px;
    left: 10px;
    color: var(--pizza-red);
    animation: floatItem 3s ease-in-out infinite;
}

.floating-burger {
    top: 20px;
    right: 5px;
    color: var(--burger-yellow);
    animation: floatItem 3s ease-in-out infinite 0.5s;
}

.floating-drink {
    bottom: 30px;
    left: 0px;
    color: #3498db;
    animation: floatItem 3s ease-in-out infinite 1s;
}

.floating-fries {
    bottom: 10px;
    right: 15px;
    color: #f39c12;
    animation: floatItem 3s ease-in-out infinite 1.5s;
}

@keyframes floatItem {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.7; }
    50% { transform: translateY(-20px) scale(1.2); opacity: 1; }
}

/* Free Delivery Progress Bar */
.free-delivery-banner {
    animation: slideDown 0.5s ease;
}

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

.delivery-progress-bar {
    margin-top: 10px;
}

.delivery-progress-track {
    height: 10px;
    background: #e9ecef;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.delivery-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--pizza-red), var(--shawarma-orange), #27ae60);
    border-radius: 10px;
    transition: width 0.5s ease;
    position: relative;
}

.delivery-progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.delivery-progress-markers {
    display: flex;
    justify-content: space-between;
    margin-top: 5px;
    font-size: 0.75rem;
    color: #6c757d;
}

/* Enhanced Cart Item Cards */
.cart-item-enhanced {
    transition: all 0.3s ease;
    padding: 15px;
    border-radius: 15px;
    margin-bottom: 10px;
    border: 1px solid transparent !important;
}

.cart-item-enhanced:hover {
    background-color: rgba(230, 126, 34, 0.05);
    border-color: rgba(230, 126, 34, 0.2) !important;
    transform: translateX(5px);
}

.cart-item-image-wrapper {
    width: 90px;
    height: 90px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.cart-item-enhanced:hover .cart-item-image-wrapper {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.cart-item-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.cart-item-enhanced:hover .cart-item-image {
    transform: scale(1.1);
}

/* Larger Quantity Buttons (40px) */
.qty-control-group {
    display: flex;
    align-items: center;
    gap: 0;
    background: #f8f9fa;
    border-radius: 25px;
    padding: 4px;
}

.qty-btn-large {
    width: 40px;
    height: 40px;
    border: none;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--pizza-red);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.qty-btn-large:hover {
    background: linear-gradient(135deg, var(--pizza-red), var(--shawarma-orange));
    color: white;
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.qty-btn-large:active {
    transform: scale(0.95);
}

.qty-btn-large.qty-pulse {
    animation: qtyPulse 0.3s ease;
}

@keyframes qtyPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); box-shadow: 0 0 20px rgba(231, 76, 60, 0.5); }
    100% { transform: scale(1); }
}

.qty-input-large {
    width: 50px;
    text-align: center;
    border: none;
    background: transparent;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
}

.qty-input-large:focus {
    outline: none;
}

/* Remove Item Button */
.btn-remove-item {
    width: 40px;
    height: 40px;
    border: 2px solid #dc3545;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #dc3545;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-remove-item:hover {
    background: #dc3545;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

/* Complete Your Meal Section */
.complete-meal-section {
    border: 2px dashed var(--shawarma-orange) !important;
    background: linear-gradient(135deg, rgba(241, 196, 15, 0.05), rgba(230, 126, 34, 0.05));
}

.complete-meal-card {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.complete-meal-card:hover {
    border-color: var(--shawarma-orange);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(230, 126, 34, 0.15);
}

.meal-icon-wrapper {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(241, 196, 15, 0.2), rgba(230, 126, 34, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.meal-icon-wrapper i {
    font-size: 1.5rem;
}

.quick-meal-add {
    border-radius: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.quick-meal-add:hover {
    background: var(--shawarma-orange);
    border-color: var(--shawarma-orange);
    color: white;
    transform: scale(1.05);
}

/* Order Summary Card Enhancement */
.order-summary-card {
    position: sticky;
    top: 100px;
    border-radius: 20px !important;
}

/* Responsive Cart Styles */
@media (max-width: 768px) {
    .cart-item-enhanced {
        flex-direction: column;
        align-items: flex-start !important;
    }
    
    .cart-item-enhanced > .d-flex {
        width: 100%;
        margin-top: 1rem;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .cart-item-image-wrapper {
        width: 70px;
        height: 70px;
    }
    
    .qty-control-group {
        order: 1;
    }
    
    .item-total {
        order: 2;
    }
    
    .btn-remove-item {
        order: 3;
    }
    
    .complete-meal-card {
        padding: 10px !important;
    }
    
    .meal-icon-wrapper {
        width: 40px;
        height: 40px;
    }
    
    .meal-icon-wrapper i {
        font-size: 1.2rem;
    }
    
    .cart-icon-wrapper {
        width: 120px;
        height: 120px;
    }
    
    .cart-icon-bounce {
        font-size: 4rem;
    }
    
    .floating-item {
        font-size: 1.2rem;
    }
}

/* ============================================
   CHECKOUT PAGE ENHANCEMENTS
   ============================================ */

/* Progress Steps */
.checkout-progress-steps {
    background: white;
    border-radius: 16px;
    padding: 25px 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.progress-track {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.step-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #e9ecef;
    border: 3px solid #dee2e6;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
}

.step-number {
    font-weight: 700;
    font-size: 1.1rem;
    color: #6c757d;
    transition: all 0.3s ease;
}

.step-check {
    display: none;
    color: white;
    font-size: 1.1rem;
}

.step-label {
    margin-top: 10px;
    font-weight: 600;
    color: #6c757d;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.progress-connector {
    flex: 1;
    height: 4px;
    background: #e9ecef;
    margin: 0 10px;
    border-radius: 2px;
    position: relative;
    top: -12px;
    transition: all 0.3s ease;
}

.progress-step.active .step-circle {
    background: linear-gradient(135deg, var(--pizza-red), var(--shawarma-orange));
    border-color: var(--pizza-red);
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
}

.progress-step.active .step-number {
    color: white;
}

.progress-step.active .step-label {
    color: var(--pizza-red);
}

.progress-step.completed .step-circle {
    background: #27ae60;
    border-color: #27ae60;
}

.progress-step.completed .step-number {
    display: none;
}

.progress-step.completed .step-check {
    display: block;
}

.progress-step.completed .step-label {
    color: #27ae60;
}

.progress-connector.active {
    background: linear-gradient(90deg, var(--pizza-red), var(--shawarma-orange));
}

/* Checkout Card Styling */
.checkout-card {
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.checkout-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.12) !important;
}

.card-header-enhanced {
    display: flex;
    align-items: center;
    padding: 20px 20px 15px;
    gap: 15px;
}

.card-icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

/* Payment Method Icons */
.payment-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.payment-icon-cod {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: white;
}

.payment-icon-easypaisa {
    background: linear-gradient(135deg, #4CAF50 0%, #8BC34A 100%);
    color: white;
    position: relative;
}

.payment-easypaisa {
    border-color: #4CAF50 !important;
}

.payment-easypaisa:has(.form-check-input:checked) {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(139, 195, 74, 0.1)) !important;
    border-color: #4CAF50 !important;
}

.payment-icon-jazzcash {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
}

.payment-jazzcash {
    border-color: #e74c3c !important;
}

.payment-jazzcash:has(.form-check-input:checked) {
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.1), rgba(192, 57, 43, 0.1)) !important;
    border-color: #e74c3c !important;
}

.payment-icon-bank {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
}

.payment-bank {
    border-color: #3498db !important;
}

.payment-bank:has(.form-check-input:checked) {
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.1), rgba(41, 128, 185, 0.1)) !important;
    border-color: #3498db !important;
}

.payment-icon-card {
    background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
    color: white;
}

.payment-card {
    border-color: #9b59b6 !important;
}

.payment-card:has(.form-check-input:checked) {
    background: linear-gradient(135deg, rgba(155, 89, 182, 0.1), rgba(142, 68, 173, 0.1)) !important;
    border-color: #9b59b6 !important;
}

.payment-option {
    border-width: 2px !important;
    transition: all 0.3s ease;
}

.payment-option:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.payment-option:hover .payment-icon-wrapper {
    transform: scale(1.1);
}

/* Order Summary Card */
.order-summary-card {
    border-radius: 16px;
    border: 2px solid #e9ecef !important;
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
}

.order-summary-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--pizza-red), var(--shawarma-orange), var(--burger-yellow));
    border-radius: 16px 16px 0 0;
}

.order-summary-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--pizza-red), var(--shawarma-orange));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.order-items {
    max-height: 200px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--shawarma-orange) #f1f1f1;
}

.order-items::-webkit-scrollbar {
    width: 6px;
}

.order-items::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.order-items::-webkit-scrollbar-thumb {
    background: var(--shawarma-orange);
    border-radius: 3px;
}

/* Map Actions */
.map-actions-bar {
    background: #f8f9fa;
    padding: 10px 15px;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

#pinLocationBtn {
    background: white;
    border: 2px solid var(--pizza-red);
    color: var(--pizza-red);
    font-weight: 600;
    transition: all 0.3s ease;
}

#pinLocationBtn:hover {
    background: var(--pizza-red);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .checkout-progress-steps {
        padding: 15px 10px;
    }
    
    .step-circle {
        width: 40px;
        height: 40px;
    }
    
    .step-number {
        font-size: 0.95rem;
    }
    
    .step-label {
        font-size: 0.75rem;
    }
    
    .progress-connector {
        margin: 0 5px;
    }
    
    .card-header-enhanced {
        padding: 15px 15px 10px;
    }
    
    .card-icon-wrapper {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .payment-icon-wrapper {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .order-summary-card {
        position: relative !important;
        top: auto !important;
    }
}

/* ===== CONTACT PAGE ENHANCEMENTS ===== */

/* Animated Contact Icons */
.contact-icon-animated .rounded-circle {
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.contact-icon-animated:hover .rounded-circle {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.contact-icon-animated:hover .rounded-circle i {
    animation: iconPulse 0.5s ease;
}

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

/* Social Links Animation */
.social-link-animated {
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.social-link-animated:hover {
    transform: scale(1.2) rotate(-5deg) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2) !important;
}

.social-link-animated.btn-outline-primary:hover {
    background: linear-gradient(135deg, #1877f2, #166fe5) !important;
    border-color: #1877f2 !important;
    color: white !important;
}

.social-link-animated.btn-outline-danger:hover {
    background: linear-gradient(135deg, #e1306c, #c13584) !important;
    border-color: #e1306c !important;
    color: white !important;
}

.social-link-animated.btn-outline-info:hover {
    background: linear-gradient(135deg, #1da1f2, #0d95e8) !important;
    border-color: #1da1f2 !important;
    color: white !important;
}

.social-link-animated.btn-outline-success:hover {
    background: linear-gradient(135deg, #25d366, #128c7e) !important;
    border-color: #25d366 !important;
    color: white !important;
}

/* Success Animation Container */
.success-animation-container {
    text-align: center;
    padding: 40px 20px;
    position: relative;
    overflow: hidden;
}

/* Success Checkmark Animation */
.success-checkmark {
    width: 80px;
    height: 80px;
    margin: 0 auto;
}

.check-icon {
    width: 80px;
    height: 80px;
    position: relative;
    border-radius: 50%;
    box-sizing: content-box;
    border: 4px solid #4CAF50;
}

.check-icon::before {
    top: 3px;
    left: -2px;
    width: 30px;
    transform-origin: 100% 50%;
    border-radius: 100px 0 0 100px;
}

.check-icon::after {
    top: 0;
    left: 30px;
    width: 60px;
    transform-origin: 0 50%;
    border-radius: 0 100px 100px 0;
    animation: rotate-circle 4.25s ease-in;
}

.check-icon::before, .check-icon::after {
    content: '';
    height: 100px;
    position: absolute;
    background: #f8f9fa;
    transform: rotate(-45deg);
}

.icon-line {
    height: 5px;
    background-color: #4CAF50;
    display: block;
    border-radius: 2px;
    position: absolute;
    z-index: 10;
}

.icon-line.line-tip {
    top: 46px;
    left: 14px;
    width: 25px;
    transform: rotate(45deg);
    animation: icon-line-tip 0.75s;
}

.icon-line.line-long {
    top: 38px;
    right: 8px;
    width: 47px;
    transform: rotate(-45deg);
    animation: icon-line-long 0.75s;
}

.icon-circle {
    top: -4px;
    left: -4px;
    z-index: 10;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    position: absolute;
    box-sizing: content-box;
    border: 4px solid rgba(76, 175, 80, 0.5);
}

.icon-fix {
    top: 8px;
    width: 5px;
    left: 26px;
    z-index: 1;
    height: 85px;
    position: absolute;
    transform: rotate(-45deg);
    background-color: #f8f9fa;
}

@keyframes rotate-circle {
    0% { transform: rotate(-45deg); }
    5% { transform: rotate(-45deg); }
    12% { transform: rotate(-405deg); }
    100% { transform: rotate(-405deg); }
}

@keyframes icon-line-tip {
    0% { width: 0; left: 1px; top: 19px; }
    54% { width: 0; left: 1px; top: 19px; }
    70% { width: 50px; left: -8px; top: 37px; }
    84% { width: 17px; left: 21px; top: 48px; }
    100% { width: 25px; left: 14px; top: 46px; }
}

@keyframes icon-line-long {
    0% { width: 0; right: 46px; top: 54px; }
    65% { width: 0; right: 46px; top: 54px; }
    84% { width: 55px; right: 0px; top: 35px; }
    100% { width: 47px; right: 8px; top: 38px; }
}

/* Confetti Effect */
.confetti-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.confetti {
    position: absolute;
    width: 10px;
    height: 10px;
    top: -10px;
    animation: confetti-fall 3s ease-in-out forwards;
}

.confetti:nth-child(1) { left: 10%; background: #e74c3c; animation-delay: 0s; border-radius: 50%; }
.confetti:nth-child(2) { left: 20%; background: #3498db; animation-delay: 0.1s; border-radius: 2px; }
.confetti:nth-child(3) { left: 30%; background: #f1c40f; animation-delay: 0.2s; border-radius: 50%; }
.confetti:nth-child(4) { left: 40%; background: #2ecc71; animation-delay: 0.15s; border-radius: 2px; }
.confetti:nth-child(5) { left: 50%; background: #9b59b6; animation-delay: 0.25s; border-radius: 50%; }
.confetti:nth-child(6) { left: 60%; background: #e67e22; animation-delay: 0.1s; border-radius: 2px; }
.confetti:nth-child(7) { left: 70%; background: #1abc9c; animation-delay: 0.3s; border-radius: 50%; }
.confetti:nth-child(8) { left: 80%; background: #e74c3c; animation-delay: 0.2s; border-radius: 2px; }
.confetti:nth-child(9) { left: 85%; background: #3498db; animation-delay: 0.35s; border-radius: 50%; }
.confetti:nth-child(10) { left: 90%; background: #f1c40f; animation-delay: 0.15s; border-radius: 2px; }

@keyframes confetti-fall {
    0% {
        top: -10px;
        transform: rotate(0deg) scale(1);
        opacity: 1;
    }
    50% {
        transform: rotate(180deg) scale(1.2);
    }
    100% {
        top: 100%;
        transform: rotate(720deg) scale(0.5);
        opacity: 0;
    }
}

/* ===== MEAL PLAN CARDS STYLES ===== */
.meal-plan-card {
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.meal-plan-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15) !important;
}

.meal-plan-popular {
    border: 2px solid var(--pizza-red) !important;
    background: linear-gradient(180deg, #fff8f6 0%, #ffffff 50%, #f8f9fa 100%);
}

.meal-plan-popular:hover {
    box-shadow: 0 20px 50px rgba(231, 76, 60, 0.25) !important;
}

.meal-plan-badge {
    background: linear-gradient(135deg, var(--pizza-red) 0%, var(--shawarma-orange) 100%);
    color: white;
    text-align: center;
    padding: 12px 20px;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    animation: pulse-badge 2s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

@keyframes pulse-badge {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
    }
    50% {
        box-shadow: 0 4px 25px rgba(231, 76, 60, 0.6), 0 0 20px rgba(230, 126, 34, 0.4);
    }
}

.meal-plan-badge i {
    animation: star-glow 1.5s ease-in-out infinite;
}

@keyframes star-glow {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.2);
    }
}

.meal-plan-card .card-body {
    padding: 2rem;
}

.meal-plan-card .display-4 {
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--pizza-red), var(--shawarma-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.meal-plan-card .badge.bg-success {
    background: linear-gradient(135deg, #27ae60, #2ecc71) !important;
    padding: 8px 16px;
    border-radius: 20px;
}

.meal-plan-card hr {
    border-color: rgba(0, 0, 0, 0.08);
    margin: 1.5rem 0;
}

.meal-plan-card .card-footer {
    padding: 1.5rem 2rem 2rem;
}

.meal-plan-card .subscribe-btn {
    border-radius: 50px;
    padding: 12px 24px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.meal-plan-card .subscribe-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.35);
}

@media (max-width: 768px) {
    .meal-plan-card:hover {
        transform: translateY(-5px) scale(1.01);
    }
    
    .meal-plan-card .display-4 {
        font-size: 2rem;
    }
}

/* ===== MOBILE IMPROVEMENTS (max-width: 576px) ===== */
@media (max-width: 576px) {
    /* Typography scaling for mobile */
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    /* Menu Cards - Single Column with Larger Images */
    .menu-card-v2,
    .menu-card,
    .menu-card-enhanced {
        margin-bottom: 20px;
    }
    
    .menu-card-image-wrapper,
    .menu-card .card-img-top,
    .menu-card-enhanced .card-img-top {
        height: 250px;
    }
    
    .menu-card-image {
        height: 250px;
    }
    
    /* Force single column on mobile */
    .row > [class*="col-"] .menu-card-v2,
    .row > [class*="col-"] .menu-card,
    .row > [class*="col-"] .menu-card-enhanced {
        width: 100%;
    }
    
    /* All buttons minimum 48px height for touch targets */
    .btn,
    button,
    .add-to-cart-btn,
    .add-to-cart-btn-v2,
    .quick-add-btn,
    .hero-btn-primary,
    .hero-btn-secondary,
    .category-filter-btn,
    .btn-primary,
    .btn-secondary,
    .btn-outline-primary,
    .btn-fresh {
        min-height: 48px;
        padding-top: 12px;
        padding-bottom: 12px;
    }
    
    /* Larger touch-friendly quantity buttons */
    .qty-btn-large {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }
    
    /* Section padding adjustments */
    .section-padding {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    
    .section-padding-sm {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    
    /* Wave dividers smaller on mobile */
    .wave-divider,
    .wave-divider-bottom {
        height: 50px;
    }
    
    /* Improved card spacing on mobile */
    .category-card-enhanced,
    .special-card {
        margin-bottom: 15px;
    }
    
    /* Full width buttons on mobile */
    .checkout-btn,
    .order-now-btn {
        width: 100%;
    }
    
    /* Add padding to body for mobile bottom nav */
    body {
        padding-bottom: 80px;
    }
}

/* ===== MOBILE BOTTOM NAVIGATION ===== */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: white;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 1000;
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #6c757d;
    font-size: 10px;
    padding: 8px 12px;
    transition: all 0.3s ease;
    position: relative;
}

.mobile-nav-item i {
    font-size: 20px;
    margin-bottom: 4px;
}

.mobile-nav-item span {
    line-height: 1;
}

.mobile-nav-item:hover,
.mobile-nav-item.active {
    color: var(--pizza-red);
}

.mobile-nav-item.active i {
    transform: scale(1.1);
}

/* Cart badge for mobile nav */
.cart-nav-item {
    position: relative;
}

.cart-badge-mobile {
    position: absolute;
    top: 2px;
    right: 8px;
    background: var(--pizza-red);
    color: white;
    font-size: 10px;
    font-weight: 600;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.cart-badge-mobile:empty,
.cart-badge-mobile[data-count="0"] {
    display: none;
}

/* Adjust WhatsApp widget position when mobile nav is visible */
@media (max-width: 767.98px) {
    .whatsapp-float {
        bottom: 75px;
    }
}

.menu-card-v2[onclick],
.menu-card-enhanced[onclick] {
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.menu-card-v2[onclick]:hover,
.menu-card-enhanced[onclick]:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

/* Item Detail Page */
.item-detail-image-wrapper {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.item-detail-image-wrapper img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.item-detail-image-wrapper:hover img {
    transform: scale(1.05);
}
.item-detail-badges {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 2;
}
.item-detail-actions {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 2;
}
.item-detail-actions .btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.95);
    border: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}
.item-detail-actions .btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.item-price-section {
    background: linear-gradient(135deg, #fff5f5, #fff);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 24px;
}
.item-original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 1.1rem;
}
.item-current-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color, #e74c3c);
}
.item-discount-badge {
    background: #e74c3c;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
}
.item-qty-selector {
    display: flex;
    align-items: center;
    gap: 0;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    max-width: 160px;
}
.item-qty-selector .btn {
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 0;
    font-size: 1.2rem;
    font-weight: bold;
    background: #f8f9fa;
    transition: background 0.2s;
}
.item-qty-selector .btn:hover {
    background: #e9ecef;
}
.item-qty-selector input {
    width: 60px;
    text-align: center;
    border: none;
    font-size: 1.2rem;
    font-weight: 700;
    background: transparent;
}
.item-qty-selector input:focus {
    outline: none;
    box-shadow: none;
}
.item-spice-display {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}
.item-spice-display.spice-mild {
    background: #e8f5e9;
    color: #2e7d32;
}
.item-spice-display.spice-medium {
    background: #fff3e0;
    color: #e65100;
}
.item-spice-display.spice-hot {
    background: #fbe9e7;
    color: #bf360c;
}
.item-info-tabs .nav-link {
    color: #666;
    font-weight: 600;
    border: none;
    padding: 12px 24px;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
}
.item-info-tabs .nav-link.active {
    color: var(--primary-color, #e74c3c);
    border-bottom-color: var(--primary-color, #e74c3c);
    background: transparent;
}
.related-item-card {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}
.related-item-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}
.related-item-card img {
    height: 180px;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.related-item-card:hover img {
    transform: scale(1.05);
}
@media (max-width: 768px) {
    .item-detail-image-wrapper img {
        height: 300px;
    }
    .item-detail-image-wrapper {
        border-radius: 0;
        margin-left: -12px;
        margin-right: -12px;
        width: calc(100% + 24px);
    }
    .item-current-price {
        font-size: 1.6rem;
    }
    .item-info-tabs .nav-link {
        padding: 10px 14px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .payment-option {
        padding: 12px !important;
    }
    .payment-option .form-check-label {
        flex-wrap: wrap;
        gap: 8px;
    }
    .payment-icon-wrapper {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
    .checkout-progress-steps {
        padding: 12px 8px;
    }
    .step-circle {
        width: 35px;
        height: 35px;
    }
    .step-label {
        font-size: 0.7rem;
    }
    .progress-connector {
        margin: 0 3px;
    }

    #storeMap {
        height: 280px !important;
        border-radius: 0 !important;
        margin-left: -1.5rem;
        margin-right: -1.5rem;
        width: calc(100% + 3rem) !important;
    }

    .cart-item-enhanced {
        padding: 12px !important;
    }
    .order-summary-card {
        margin-bottom: 80px;
    }

    .whatsapp-float {
        bottom: 80px !important;
    }

    .navbar .navbar-collapse .nav-link {
        padding: 10px 15px;
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    .navbar .navbar-collapse .dropdown-menu {
        border: none;
        background: rgba(255,255,255,0.1);
        padding: 0;
    }
    .navbar .navbar-collapse .dropdown-item {
        color: rgba(255,255,255,0.85);
        padding: 10px 25px;
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    .navbar .navbar-collapse .dropdown-item:hover,
    .navbar .navbar-collapse .dropdown-item.active {
        background: rgba(255,255,255,0.15);
        color: white;
    }
}
