/* ================================= */
/* GLOBAL STYLES & VARIABLES */
/* ================================= */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");

:root {
    --primary-orange: #ea580c;
    --secondary-orange: #f97316;
    --dark-orange: #c2410c;
    --light-orange: #fed7aa;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
}

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

body {
    font-family: "Inter", sans-serif;
    color: var(--gray-900);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Responsive Typography */
@media (max-width: 576px) {
    body {
        font-size: 14px;
    }
}

@media (min-width: 577px) and (max-width: 768px) {
    body {
        font-size: 15px;
    }
}

@media (min-width: 769px) {
    body {
        font-size: 16px;
    }
}

/* ================= HEADER ================= */
.custom-header {
    background: #000;
    padding: 12px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    width: 100%;
}

/* ROW */
.header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 100%;
    position: relative;
}

/* LOGO */
.logo {
    display: flex;
    align-items: center;
    order: 0;
    margin-right: auto;
}

.logo img {
    height: 50px;
    transition: transform 0.3s ease;
}

/* MENU */
.menu {
    display: flex;
    gap: 28px;
    align-items: center;
    margin-left: 0;
    order: 2;
}

.menu a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: 0.3s;
    padding: 5px 0;
}

.menu a:hover {
    color: #ff8c2b;
}

/* RIGHT SIDE */
.header-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    order: 3;
    margin-left: 0;
}

/* CART */
.cart {
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    transition: color 0.3s ease;
    margin-left: auto;
}

.cart:hover {
    color: #ff8c2b;
}

/* BUTTON */
.join-btn {
    background: #ff8c2b;
    color: #fff;
    padding: 10px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s;
    border: none;
    cursor: pointer;
}

.join-btn:hover {
    background: #e6761f;
    color: #fff;
    transform: translateY(-1px);
}

/* MOBILE MENU OVERLAY */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: none;
}

/* MOBILE MENU SIDEBAR */
.mobile-menu-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 70%;
    height: 100%;
    background: #fff;
    z-index: 1001;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}

/* MOBILE MENU HEADER */
.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #ddd;
}

.mobile-menu-header h4 {
    color: #000;
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: #666;
    font-size: 20px;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #ff8c2b;
}

/* MOBILE MENU CONTENT */
.mobile-menu-content {
    padding: 20px;
}

.mobile-menu-link {
    display: block;
    color: #000;
    text-decoration: none;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 16px;
    transition: color 0.3s ease;
}

.mobile-menu-link:hover {
    color: #ff8c2b;
}

.mobile-menu-link:last-child {
    border-bottom: none;
}

/* MOBILE MENU DIVIDER */
.mobile-menu-divider {
    height: 1px;
    background: #f0f0f0;
    margin: 20px 0;
}

/* MOBILE MENU AUTH BUTTONS */
.mobile-menu-auth {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

.mobile-menu-btn {
    background: #ff8c2b;
    color: #fff;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.mobile-menu-btn:hover {
    background: #e6761f;
    transform: translateY(-1px);
}

/* MOBILE USER INFO */
.mobile-user-info {
    margin-bottom: 15px;
}

.mobile-user-name {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #000;
    font-weight: 600;
    font-size: 16px;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.mobile-user-name i {
    color: #ff8c2b;
    font-size: 18px;
}

/* MOBILE LOGOUT BUTTON */
.mobile-logout-form {
    margin: 0;
    padding: 0;
}

.mobile-logout-btn {
    background: none;
    color: black;
    text-decoration: none;
    font-weight: 600;
    border: none;
    cursor: pointer;
}

.mobile-logout-btn:hover {
    background: none;
}

.mobile-logout-btn i {
    font-size: 14px;
}

/* MOBILE */
.mobile-toggle {
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    transition: color 0.3s ease;
    margin-right: 15px;
}

.mobile-toggle:hover {
    color: #ff8c2b;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .menu,
    .header-actions {
        display: none !important;
    }

    .logo {
        position: static;
        transform: none;
        text-align: left;
        flex: 0 0 auto;
    }

    .logo img {
        height: 45px;
    }

    .mobile-toggle {
        order: 0;
        margin-left: 0;
        margin-right: 15px;
    }

    .logo {
        order: 1;
    }

    .cart {
        order: 3;
        margin-left: auto;
    }
}
/* ================================= */
/* HERO SECTION CAROUSEL STYLES */
/* ================================= */
/* HERO SECTION */
.hero-section {
    background: #000;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

/* Slide background */
.hero-slide {
    min-height: 520px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    z-index: 0;
}

/* Shadow overlay only on background image */
.hero-slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        ellipse at center,
        rgba(0, 0, 0, 0.2) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 0, 0, 0.8) 100%
    );
    z-index: 1;
    pointer-events: none;
}

/* Ensure content is above overlay */
.hero-slide .container {
    position: relative;
    z-index: 10;
}

/* Individual slide backgrounds */
.carousel-item:nth-child(1) .hero-slide {
    background-image: url("../images/Home/5-1-1.jpg");
}

.carousel-item:nth-child(2) .hero-slide {
    background-image: url("../images/Home/fresh-gourmet-dessert-splashing-sweet-chocolate-liquid-generative-ai_188544-12404.webp");
}

.carousel-item:nth-child(3) .hero-slide {
    background-image: url("../images/Home/5-1.jpg");
}

/* Text styles */
.hero-tag {
    color: #ff7a00;
    letter-spacing: 2px;
    font-size: 14px;
    margin-bottom: 15px;
}

.hero-title {
    font-size: 3.4rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    font-family: "Merienda", sans-serif;
}

.hero-sub {
    color: #ccc;
    margin: 20px 0;
    font-size: 16px;
}

/* ================================= */
/* UNIFIED ARYA MEALS BUTTON SYSTEM */
/* ================================= */

/* Main button class - use for all buttons */
.arya-btn {
    background: linear-gradient(135deg, #ef7f1a, #ff5a1f);
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(239, 127, 26, 0.2);
}

.arya-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(239, 127, 26, 0.3);
    color: white;
}

/* Button variants */
.arya-btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.arya-btn-outline:hover {
    background: white;
    color: #ef7f1a;
}

.arya-btn-dark {
    background: #1f252b;
    color: white;
}

.arya-btn-dark:hover {
    background: #2a3138;
}

.arya-btn-light {
    background: #f8f9fa;
    color: #333;
}

.arya-btn-light:hover {
    background: #e9ecef;
}

/* Button sizes */
.arya-btn-sm {
    padding: 8px 20px;
    font-size: 0.875rem;
}

.arya-btn-lg {
    padding: 15px 35px;
    font-size: 1.1rem;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .arya-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* ================================= */
/* LEGACY BUTTON CLASSES - MAPPED TO NEW SYSTEM */
/* ================================= */

.hero-btn {
    background: linear-gradient(135deg, #ef7f1a, #ff5a1f);
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(239, 127, 26, 0.2);
}

.hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(239, 127, 26, 0.3);
    color: white;
}

.back-btnsubc {
    background: linear-gradient(135deg, #ef7f1a, #ff5a1f);
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(239, 127, 26, 0.2);
}

.back-btnsubc:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(239, 127, 26, 0.3);
}

.back-color {
    background: linear-gradient(135deg, #ef7f1a, #ff5a1f) !important;
    color: white !important;
    padding: 12px 25px !important;
    border-radius: 8px !important;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(239, 127, 26, 0.2);
}

.back-color:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(239, 127, 26, 0.3);
    color: white;
}

/* Right card */
.hero-card {
    border-radius: 15px;
    max-width: 320px;
    margin: auto;
}

.hero-card img {
    width: 100%;
    border-radius: 15px;
}

/* Indicators */
.custom-indicators button {
    width: 30px;
    height: 4px;
    background: #888;
    border: none;
    transition: all 0.3s ease;
}

/* Arrows */
.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-section:hover .carousel-control-prev,
.hero-section:hover .carousel-control-next {
    opacity: 0.7;
}

.custom-arrow {
    font-size: 28px;
    color: #ff7a00;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
.combo-carousel .carousel-indicators [data-bs-target] {
    width: 10px !important;
    height: 10px !important;
}
/* RESPONSIVE */
@media (max-width: 768px) {
    .combo-hero {
    border-radius: 20px !important;
    padding: 10px !important;
    margin: 5rem 10px 0 !important;
}
    .combo-carousel {
    margin: 80px 20px 0 !important;
}


.combo-content {
    flex-direction: row !important;
    text-align: center !important;
    flex-wrap: nowrap !important;
}
.combo-content .col-md-6 {
    width: 50% !important;
    max-width: 50%!important;
    flex: 50%!important;
    padding-left:0 !important;
}
section#category {
    margin-top: 20px !important;
}
section#category {
    padding: 20px 0 !important;
}
section.arya-cloud-kitchen-section.py-5.bg-light {
    padding: 20px 0 !important;
}
.category-title {
    font-size: 24px !important;
}
input.form-control.mobile-search-input::placeholder {
    color: #ccc;
}
div#comboCarousel .carousel-indicators {
    bottom: 0 !important;
    margin-bottom: 0;
}
.carousel-indicators .active {
    opacity: 1;
}
.combo-carousel .carousel-indicators [data-bs-target] {
    width: 10px !important;
    height: 10px !important;
}
.combo-title {
    text-align: left !important;
}
.combo-slide {
    padding: 10px !important;
}
.combo-title {
    font-size: 18px !important;
    margin: 0!important;
}
.combo-subtitle {
    font-size: 14px !important;
    text-align: left !important;
    margin: 0 !important;
}
.col-md-6.combo-text.order-md-1.order-1 .combo-description {
    display: none !important;
}
.combo-price-wrapper {
    margin-bottom: 0 !important;
    text-align: left !important;
}

.combo-price {
    font-size: 22px !important;
}
.combo-btn {
    padding: 10px 5px !important;
    font-size: 12px !important;
    margin-top: 10px !important;
}
    
    
    .carousel-control-prev,
    .carousel-control-next {
        display: none !important;
    }
    .hero-title {
        font-size: 28px;
        line-height: 1.3;
    }

    .hero-slide {
        text-align: center;
        padding: 30px 0;
    }

    .hero-card {
        margin-top: 30px;
        max-width: 280px;
    }

    .hero-card img {
        width: 100%;
        height: auto;
        border-radius: 12px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 24px;
        line-height: 1.2;
    }

    .hero-slide {
        padding: 20px 0;
    }

    .hero-card {
        margin-top: 20px;
        max-width: 240px;
    }

    .hero-tag {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .hero-sub {
        font-size: 14px;
        margin: 15px 0;
    }
}
/* ================================= */
/* CATEGORIES SECTION STYLES */
/* ================================= */
.category-section {
    padding: 60px 5%;
    background: #f8f8f8;
}

/* Title */
.category-title {
    font-size: 32px;
    font-family: "Merienda", sans-serif;
}

.category-title span {
    color: var(--primary-orange);
}

.category-scroll::-webkit-scrollbar {
    display: none;
}

/* Scroll container */
.category-scroll {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    padding: 0;
    justify-content: flex-start;
}

.category-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 110px; /* was 150px */
    flex: 0 0 auto;
}

.category-item {
    width: 131px;
    text-align: center;
}

.category-item img {
    width: 140px;
    height: 140px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    mix-blend-mode: multiply;
    filter: contrast(1.1);
}

.category-item p {
    font-size: 13px;
    line-height: 1.3;
    margin: 10px 0 0 3px;
    width: 100%;
}

.category-item a:hover p {
    color: var(--primary-orange);
}

.category-item a {
    display: block;
    text-decoration: none;
    transition: transform 0.3s ease;
}


/* Buttons */
.category-nav {
    display: flex;
    gap: 10px;
}

.nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #ccc;
    background: #fff;
    cursor: pointer;
}

.nav-btn:hover {
    background: #000;
    color: #fff;
}

@media (max-width: 768px) {
    .category-section {
        padding: 0;
    }
    .category-section .category-title {
        font-size: 24px;
    }
}
/* ================================= */
/* RESTAURANT SECTIONS STYLES */
/* ================================= */
.content-section {
    padding: 3rem 0;
    background: #212529;
    color: white;
}

/* Restaurant Slider */
.restaurant-slider-section {
    margin-top: 1.5rem;
}

.restaurant-slider-title {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 600;
}

.restaurant-slider-hint {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.8rem;
    margin: 0;
}

.restaurant-slider-nav {
    display: flex;
    gap: 0.5rem;
}

.restaurant-slider-nav .nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.restaurant-slider-nav .nav-btn:hover {
    background: var(--primary-orange, #f97316);
    border-color: var(--primary-orange, #f97316);
    transform: scale(1.05);
}

.restaurant-slider {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    cursor: grab;
    touch-action: pan-x;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 0.5rem;
}

.restaurant-slider::-webkit-scrollbar {
    display: none;
}

.restaurant-slider.is-dragging {
    cursor: grabbing;
    scroll-behavior: auto;
    user-select: none;
}

.restaurant-slider-track {
    display: flex;
    gap: 1rem;
    padding: 0.25rem 0.5rem 1rem;
    width: max-content;
}

.restaurant-slide {
    flex: 0 0 auto;
    width: 300px;
    max-width: 85vw;
}

.restaurant-slide .restaurant-card {
    height: 100%;
}

/* Restaurant Cards */
.restaurant-card {
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    height: 100%;
    border: 1px solid var(--gray-200);
}

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

.restaurant-card img {
    width: 100%;
    height: 12rem;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.restaurant-card-content {
    padding: 1.25rem;
}

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

.restaurant-name {
    font-size: 15px;
    color: white;
    line-height: 1.2;
}

.rating-badge {
    background: #ef7f1a;
    color: white;
    padding: 0.25rem 0.625rem;
    border-radius: 0.375rem;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

/* Section Header Styling */
.sub-hcolor {
    color: var(--primary-orange) !important;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem auto;
}

.section-header h5 {
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary-orange);
    margin-bottom: 1rem;
    font-size: 15px;
}

.section-header h2 {
    color: white;
    margin: 0 0 1.5rem 0;
    line-height: 1.1;
    font-family: "Merienda", sans-serif;
}

.section-header p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin: 0;
    font-size: 15px;
}

/* Category Filters */
.category-filters {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: white;
    border: 1px solid var(--gray-300);
    border-radius: 50px;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    color: var(--gray-700);
    transition: all 0.3s ease;
    cursor: pointer;
    font-weight: 500;
}

.filter-btn:hover {
    background: var(--primary-orange);
    color: white;
    border-color: var(--primary-orange);
    transform: translateY(-2px);
}

/* Content Sections Responsive */
@media (max-width: 768px) {
    .content-section {
        padding: 2rem 0;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .food-card img,
    .restaurant-card img {
        height: 10rem;
    }

    .food-card-content,
    .restaurant-card-content {
        padding: 1rem;
    }

    .food-card-title {
        font-size: 1rem;
    }

    .restaurant-name {
        font-size: 1.125rem;
    }
}

@media (max-width: 576px) {
    .content-section {
        padding: 1.5rem 0;
    }

    .food-card img,
    .restaurant-card img {
        height: 8rem;
    }

    .food-card-content,
    .restaurant-card-content {
        padding: 0.75rem;
    }

    .food-card-title {
        font-size: 0.875rem;
    }

    .restaurant-name {
        font-size: 1rem;
    }

    .food-price {
        font-size: 1rem;
    }

    .add-btn {
        padding: 0.25rem 0.625rem;
        font-size: 0.75rem;
    }
}

/* ================================= */
/* ANIMATIONS & EFFECTS */
/* ================================= */
@keyframes pulse {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.skeleton {
    background: linear-gradient(
        90deg,
        var(--gray-200) 25%,
        var(--gray-100) 50%,
        var(--gray-200) 75%
    );
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    border-radius: 0.5rem;
}

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

/* Scrollbar Styling */
.categories-container::-webkit-scrollbar {
    height: 6px;
}

.categories-container::-webkit-scrollbar-track {
    background: var(--gray-100);
    border-radius: 3px;
}

.categories-container::-webkit-scrollbar-thumb {
    background: var(--primary-orange);
    border-radius: 3px;
}

.categories-container::-webkit-scrollbar-thumb:hover {
    background: var(--dark-orange);
}

/* ================================= */
/* CART MODAL STYLES */
/* ================================= */
.cart-modal {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 100%;
    max-width: 24rem;
    background: white;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 2000;
}

.cart-modal.show {
    transform: translateX(0);
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1999;
    display: none;
    backdrop-filter: blur(2px);
}

.cart-overlay.show {
    display: block;
}

.notification {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    background: #10b981;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    z-index: 3000;
    animation: slideIn 0.3s ease;
    max-width: 300px !important;
    width: auto !important;
    height: auto !important;
    min-height: auto !important;
    min-width: auto !important;
}

.card-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #22c55e;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    z-index: 9999;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    max-width: 300px !important;
    width: auto !important;
    height: auto !important;
}

/* Cart Responsive */
@media (max-width: 768px) {
    .cart-modal {
        max-width: 100%;
        width: 100%;
    }
}
/* ================================= */
/* HOW WORKS STYLES */
/* ================================= */
/* Section background */
.how-it-works {
    background: #1f252b;
    padding-bottom: 2rem;
}

/* Title */
.how-title {
    color: #fff;
    font-weight: 600;
    font-size: 32px;
    font-family: "Merienda", sans-serif;
}

/* Orange box */
.steps-box {
    background: #ef7f1a;
    border-radius: 15px;
    padding: 22px;
}

/* Each step */
.step-item h1 {
    color: #fff;
    font-size: 3rem;
    margin-bottom: 10px;
    text-align: left;
}

.step-item p {
    color: #fff;
    font-size: 1.2rem;
    text-align: left;
}

/* Spacing */
.step-item {
    margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .step-item h1 {
        font-size: 32px;
    }

    .how-title {
        font-size: 24px;
    }
}

/* ================================= */
/* WHAT WE OFFER STYLES */
/* ================================= */
.offer-title {
    font-size: 34px;
    font-family: "Merienda", sans-serif;
    font-weight: 600;
}

.offer-sub {
    color: #555;
    margin-top: 10px;
}

/* Card */
.offer-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: left;
    box-shadow: 0 5px 20px rgb(134 131 131 / 18%);
    transition: 0.3s;
}

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

/* Icon */
.icon-box {
    width: 50px;
    height: 50px;
    background: #f57c00;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.icon-box i {
    color: #fff;
    font-size: 20px;
}

/* Text */
.offer-card h5 {
    font-size: 18px;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .offer-title {
        font-size: 26px;
    }

    .offer-card {
        text-align: center;
    }
}

/* ================================= */
/* PARTNER SECTION STYLES */
/* ================================= */
.partner-section {
    padding: 50px 0;
    position: relative;
}
.partner-title {
    font-family: "Merienda", sans-serif;
    font-weight: 700;
}
.partner-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.65) 0%,
        rgba(0, 0, 0, 0.45) 50%,
        rgba(0, 0, 0, 0.35) 100%
    );
}
.partner-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}
.partner-section .container {
    position: relative;
    z-index: 1;
}
/* Card shadow */
.partner-card img {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    width: 327px;
    height: auto;
    object-fit: cover;
}

/* Partner section responsive */
@media (max-width: 768px) {
    .partner-section {
        padding: 40px 0;
    }

    .partner-card img {
        width: 100%;
        max-width: 330px;
        margin: 0 auto;
        display: block;
    }

    .partner-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .partner-section .col-lg-6:first-child {
        text-align: center;
        margin-bottom: 30px;
    }

    .partner-list {
        margin-bottom: 20px;
    }

    .partner-list li {
        font-size: 14px;
        margin-bottom: 8px;
    }
}

@media (max-width: 576px) {
    .partner-section {
        padding: 30px 0;
    }

    .partner-card img {
        max-width: 330px;
    }

    .partner-title {
        font-size: 20px;
    }

    .partner-section h5 {
        font-size: 14px;
    }

    .partner-desc {
        font-size: 14px;
    }

    .partner-list li {
        font-size: 13px;
        padding-left: 24px;
    }

    .partner-list li::before {
        font-size: 14px;
    }
}
/* List */
.partner-list {
    list-style: none;
    padding: 0;
}
.partner-list li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 28px;
}
.sub-hcolor {
    color: rgb(239 127 26);
}
.partner-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ef7f1a;
    font-weight: bold;
}
div#testimonialSlider img {
    object-fit: cover;
}
.area-icon {
    background: #ef7f1a;
    width: 28px;
}
.area-icon i {
    color: #fff;
}
.cta-section {
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgb(0 0 0 / 79%); /* overlay darkness */
    z-index: 1;
}
.breadcrumb a {
    text-decoration: none;
    font-weight: 500;
}
.breadcrumb {
    position: relative;
    z-index: 1;
}
.breadcrumb-item + .breadcrumb-item::before {
    display: none;
}
/* Overlay layer */
.breadcrumb::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgb(0 0 0 / 89%); /* overlay darkness */
    z-index: -1;
}
nav.breadcrumb {
    display: block;
}
.bg-remove::before {
    background: transparent !important;
}
.breadcrumb-desc {
    display: block;
    margin-top: 6px;
    font-size: 16px;
    opacity: 0.9;
}
li.breadcrumb-item:nth-child(1):hover a {
    color: #ef7f1a !important;
}
.cta-section > * {
    position: relative;
    z-index: 2;
}
span.prices {
    text-align: right;
    font-size: 14px;
    color: #fb8f2c;
}
.food-card-fixed h5:hover {
    color: #fb8f2c;
}

.food-section {
    padding: 60px 5%;
    background: #f8f8f8;
}
.nav-buttons {
    display: flex;
}
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.nav-buttons button {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: #e5e5e5;
    cursor: pointer;
    margin-left: 10px;
    font-size: 18px;
}

.slider-container {
    overflow: hidden;
}

.slider-track {
    display: grid;
    grid-auto-flow: column;
    grid-template-rows: repeat(2, auto);
    transition: transform 0.5s ease;
    gap: 20px 20px;
}

/* DESKTOP → 9 × 2 */
@media (min-width: 1024px) {
    .slider-track {
        grid-auto-columns: calc(100% / 9);
    }
}

/* MOBILE → 4 × 2 */
@media (max-width: 600px) {
    .slider-track {
        grid-auto-columns: calc(100% / 4);
        gap: 15px 15px;
    }
}

/* ================================= */
/* TESTIMONIAL SECTION STYLES */
/* ================================= */
.testimonial-sec {
    background: #f8f9fa;
    padding: 60px 0;
}

.testimonial-sec h5 {
    color: var(--primary-orange);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.testimonial-sec h2 {
    color: #212529;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0.5rem 0 2rem 0;
    font-family: "Merienda", sans-serif;
}

/* Testimonial Cards */
.testimonial-sec .carousel-item article {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    height: 100%;
    border: 1px solid #e9ecef;
}

.testimonial-sec .carousel-item article:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.testimonial-sec .carousel-item p {
    color: #495057;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-sec .carousel-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border: 3px solid #f8f9fa;
}

.testimonial-sec .carousel-item h6 {
    color: #212529;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.testimonial-sec .carousel-item small {
    color: #6c757d;
    font-size: 0.9rem;
}

/* Carousel Controls */
.testimonial-sec .carousel-control-prev,
.testimonial-sec .carousel-control-next {
    width: 50px;
    height: 50px;
    background: var(--primary-orange);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
    transition: opacity 0.3s ease;
    z-index: 15;
}

.testimonial-sec .carousel-control-prev:hover,
.testimonial-sec .carousel-control-next:hover {
    opacity: 1;
}

.testimonial-sec .carousel-control-prev-icon,
.testimonial-sec .carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

/* Testimonial section responsive */
@media (max-width: 768px) {
    .testimonial-sec {
        padding: 40px 0;
    }

    .testimonial-sec h2 {
        font-size: 28px;
    }

    .testimonial-sec .carousel-control-prev,
    .testimonial-sec .carousel-control-next {
        top: 20%;
        transform: translateY(-20%);
        width: 40px;
        height: 40px;
        opacity: 0.9;
    }

    .testimonial-sec .carousel-control-prev {
        left: 10px;
    }

    .testimonial-sec .carousel-control-next {
        right: 10px;
    }

    .testimonial-sec .carousel-item article {
        padding: 1.5rem;
    }

    .testimonial-sec .carousel-item p {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .testimonial-sec {
        padding: 30px 0;
    }

    .testimonial-sec h2 {
        font-size: 24px;
    }

    .testimonial-sec .carousel-control-prev,
    .testimonial-sec .carousel-control-next {
        top: 15%;
        transform: translateY(-15%);
        width: 35px;
        height: 35px;
    }

    .testimonial-sec .carousel-control-prev {
        left: 5px;
    }

    .testimonial-sec .carousel-control-next {
        right: 5px;
    }

    .testimonial-sec .carousel-item article {
        padding: 1.25rem;
    }

    .testimonial-sec .carousel-item p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .testimonial-sec .carousel-item img {
        width: 50px;
        height: 50px;
    }

    .testimonial-sec .carousel-item h6 {
        font-size: 1rem;
    }

    .testimonial-sec .carousel-item small {
        font-size: 0.8rem;
    }
}

/* Carousel Indicators */
.testimonial-sec .carousel-indicators button {
    background-color: var(--primary-orange);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
}

/* ================================= */
/* CALL TO ACTION SECTION STYLES */
/* ================================= */
.cta-section {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.cta-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.cta-section > * {
    position: relative;
    z-index: 2;
}

.cta-section h5 {
    color: var(--primary-orange);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-bottom: 1rem;
}

.cta-section h2 {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 1.5rem 0;
    font-family: "Merienda", sans-serif;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0 0 2rem 0;
}

.cta-section .arya-btn {
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    display: inline-block;
}

.cta-section .arya-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(239, 127, 26, 0.3);
}

/* =============================
   WHY SECTION
============================= */

.why-choose {
    background: linear-gradient(90deg, #1f252b, #232a31) !important;
    padding: 90px 0 !important;
}

/* FIX LEFT CARD */
.why-card {
    background: #000;
    padding: 15px;
    border-radius: 18px;
    width: 300px;
    margin: auto;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
}

/* REMOVE OLD WIDTH ISSUE */
.why-card img {
    width: 100% !important;
    border-radius: 12px !important;
    box-shadow: none !important;
    height: auto !important;
    object-fit: cover !important;
}

/* Why choose section responsive */
@media (max-width: 768px) {
    .why-choose {
        padding: 60px 0 !important;
    }

    .why-card {
        width: 100%;
        max-width: 330px;
        margin: 0 auto 30px auto;
    }

    #why h2 {
        font-size: 24px !important;
        text-align: center;
        margin-bottom: 25px;
    }

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

    .why-list li {
        font-size: 14px;
        margin-bottom: 10px;
    }
}

@media (max-width: 576px) {
    .why-choose {
        padding: 40px 0 !important;
    }

    .why-card {
        max-width: 330px;
        padding: 12px;
    }

    #why h2 {
        font-size: 20px !important;
    }

    .why-list li {
        font-size: 13px;
    }
}

/* TITLE FIX */
#why h2 {
    font-size: 1.6rem !important;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: "Merienda", sans-serif;
    line-height: 1.3;
}

/* LIST FIX */
.why-list li {
    font-size: 14px !important;
    margin-bottom: 12px;
    color: #fff;
    list-style: none;
}

.why-list li::before {
    content: "✓ ";
    padding-right: 0.6rem;
    color: #ef7f1a;
    font-weight: bold;
    margin-left: -1rem;
}

/* BUTTON FIX */
#why .back-color {
    padding: 12px 26px !important;
    border-radius: 8px !important;
    font-size: 15px;
}

/* SPACING FIX */
#why .col-lg-6 {
    padding-left: 40px;
}

/* MOBILE PERFECT */
@media (max-width: 991px) {
    #why .col-lg-6 {
        padding-left: 15px;
        text-align: center;
    }

    .why-card {
        margin-bottom: 30px;
    }

    #why h2 {
        font-size: 26px !important;
        text-align: left;
    }
    #why li {
        text-align: left;
    }
}
/* ================================= */
/* FOOTER STYLES */
/* ================================= */
.footer-main {
    background: #1a1a1a;
    color: white;
}

/* Support Banner */
.bgcontact-pannel {
    background: linear-gradient(135deg, #ef7f1a 0%, #f57c00 100%);
    border: none;
}

.mobile-circlef {
    background: transparent !important;
}

.text-headma {
    color: var(--primary-orange) !important;
    background: white;
    padding: 1rem;
    border-radius: 50px;
}

.bgcontact-pannel h5 {
    color: white !important;
}

.bgcontact-pannel p {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* Main Footer */
.mainfteer {
    padding: 40px 0;
}

.mainfteer h5 {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.mainfteer p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

.mainfteer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.mainfteer a:hover {
    color: var(--primary-orange) !important;
}

.mainfteer ul li {
    margin-bottom: 0.5rem;
}

.mainfteer .fa-solid.fa-angles-right {
    color: var(--primary-orange);
    margin-right: 8px;
    font-size: 0.8rem;
}

/* Subscribe Form */
.mainfteer .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.mainfteer .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.mainfteer .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 0.2rem rgba(239, 127, 26, 0.25);
    color: white;
}

.back-btnsubc {
    background: var(--primary-orange) !important;
    border: none;
    transition: all 0.3s ease;
}

.back-btnsubc:hover {
    background: var(--dark-orange) !important;
    transform: translateY(-1px);
}

/* Social Icons */
.social-iconsf a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-iconsf a:hover {
    transform: translateY(-2px);
}

/* Copyright */
.copuright {
    background: #0d0d0d;
    color: rgba(255, 255, 255, 0.7);
}

.copuright a {
    color: var(--primary-orange) !important;
    text-decoration: none;
}

.copuright a:hover {
    text-decoration: underline;
}

/* Footer Responsive */
@media (max-width: 768px) {
    .footer-main {
        padding: 1rem;
    }
    .mainfteer {
        padding: 30px 0;
    }

    .footer-brand {
        font-size: 1.125rem;
    }

    .social-links a {
        width: 2rem;
        height: 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    footer {
        padding: 1.5rem 0;
    }

    .footer-bottom {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
        font-size: 0.8rem;
    }
}

/* ================================= */
/* UTILITY CLASSES */
/* ================================= */
.text-orange {
    color: var(--primary-orange) !important;
}

.bg-orange {
    background-color: var(--primary-orange) !important;
}

.flex-grow-1 {
    flex-grow: 1;
}

.overflow-auto {
    overflow: auto;
}

.position-relative {
    position: relative;
}

.d-flex {
    display: flex;
}

.justify-content-between {
    justify-content: space-between;
}

.align-items-center {
    align-items: center;
}

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

.mb-3 {
    margin-bottom: 1rem;
}

.mt-2 {
    margin-top: 0.5rem;
}

.gap-3 {
    gap: 1rem;
}

.p-3 {
    padding: 1rem;
}

.border-bottom {
    border-bottom: 1px solid var(--gray-200);
}

.border-top {
    border-top: 1px solid var(--gray-200);
}

.w-100 {
    width: 100%;
}

/* Mobile menu button uses unified arya-btn system */
.mobile-menu-button {
    background: none;
    border: none;
    font-size: 1.2rem;
}

/* ================================= */
/* CART COUNT BADGE STYLES */
/* ================================= */
.cart-count-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--primary-orange);
    color: white;
    font-size: 10px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
    line-height: 1;
    z-index: 10;
}

.cart .cart-count-badge {
    top: -5px;
    right: -5px;
}

/* Cart hover effects */
.cart:hover {
    color: var(--primary-orange) !important;
    transition: color 0.3s ease;
}

.cart:hover .cart-count-badge {
    background: var(--dark-orange);
    transition: background 0.3s ease;
}

/* User Profile Info Styles */
.user-profile-info {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 0;
}

.user-profile-info img {
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: border-color 0.3s ease;
}

.user-profile-info:hover img {
    border-color: #ff8c2b;
}

.user-profile-info span {
    font-size: 15px;
    font-weight: 500;
    color: white;
    transition: color 0.3s ease;
}

.user-profile-info:hover span {
    color: #ff8c2b;
}

/* User Dropdown Styles */
.user-dropdown-btn {
    color: white !important;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: 0.3s;
    padding: 5px 0;
    background: none !important;
    border: none !important;
}

.user-dropdown-btn:hover {
    color: #ff8c2b !important;
}

.user-dropdown-btn img {
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: border-color 0.3s ease;
}

.user-dropdown-btn:hover img {
    border-color: #ff8c2b;
}

.user-dropdown-btn .dropdown-toggle::after {
    color: white;
    margin-left: 8px;
}

.user-dropdown-btn:hover .dropdown-toggle::after {
    color: #ff8c2b;
}

/* Mobile User Profile Styles */
.mobile-user-profile img {
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: border-color 0.3s ease;
}

.mobile-user-profile:hover img {
    border-color: #ff8c2b;
}

/* Bounce animation for cart count */
@keyframes bounce {
    0%,
    20%,
    53%,
    80%,
    100% {
        transform: translate3d(0, 0, 0);
    }
    40%,
    43% {
        transform: translate3d(0, -5px, 0);
    }
    70% {
        transform: translate3d(0, -3px, 0);
    }
    90% {
        transform: translate3d(0, -1px, 0);
    }
}

.animate-bounce {
    animation: bounce 0.6s;
}

/* ================================= */
/* CUSTOM TOOLTIP NOTIFICATIONS */
/* ================================= */
.custom-tooltip {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  opacity: 0;
  transform: translateX(-50%) translateY(-10px);
  transition: all 0.3s ease;
  pointer-events: none;
}

.custom-tooltip.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.custom-tooltip-hiding {
  opacity: 0;
  transform: translateX(-50%) translateY(-10px);
}

.tooltip-content {
  background: white;
  border-radius: 8px;
  padding: 12px 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 250px;
  max-width: 400px;
  border-left: 4px solid var(--primary-orange);
}

.custom-tooltip-success .tooltip-content {
  border-left-color: #22c55e;
}

.custom-tooltip-error .tooltip-content {
  border-left-color: #ef4444;
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.tooltip-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.custom-tooltip-success .tooltip-icon {
  background: #dcfce7;
  color: #22c55e;
}

.custom-tooltip-error .tooltip-icon {
  background: #dc2626;
  color: white;
}

.tooltip-text {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-800);
  line-height: 1.4;
}

.custom-tooltip-error .tooltip-text {
  color: #991b1b;
}

/* Checkout page notification styling */
.checkout-notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background: white;
  border-radius: 8px;
  padding: 16px 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 9999;
  min-width: 300px;
  max-width: 400px;
  transform: translateX(100%);
  transition: all 0.3s ease;
}

.checkout-notification.show {
  transform: translateX(0);
}

.checkout-notification.error {
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
  border-left: 4px solid #dc2626 !important;
}

.checkout-notification.success {
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  border-left: 4px solid #22c55e !important;
}

.checkout-notification i {
  font-size: 20px;
  flex-shrink: 0;
}

.checkout-notification.error i {
  color: #dc2626 !important;
}

.checkout-notification.success i {
  color: #22c55e !important;
}

.checkout-notification span {
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  line-height: 1.4;
}

.checkout-notification.error span {
  color: #991b1b;
}

.tooltip-arrow {
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid white;
}

.custom-tooltip-success .tooltip-arrow {
  border-top-color: white;
}

.custom-tooltip-error .tooltip-arrow {
  border-top-color: white;
}

/* Animation for tooltip appearance */
@keyframes tooltipSlideIn {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

@keyframes tooltipSlideOut {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(-10px);
  }
}

.custom-tooltip.show {
  animation: tooltipSlideIn 0.3s ease forwards;
}

.custom-tooltip-hiding {
  animation: tooltipSlideOut 0.3s ease forwards;
}

/* ================================= */
/* SLIDE-OUT CART SIDEBAR */
/* ================================= */
.cart-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9998;
  display: none !important;
}

.cart-sidebar.active {
  display: block !important;
}

.cart-sidebar-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.cart-sidebar-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 100%;
  background: white;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.cart-sidebar.active .cart-sidebar-content {
  transform: translateX(0);
}

.cart-sidebar-header {
  padding: 20px;
  border-bottom: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: between;
  background: var(--gray-50);
}

.cart-sidebar-header h5 {
  display: flex;
  align-items: center;
  flex-grow: 1;
  font-weight: 600;
  color: var(--gray-800);
}

.cart-sidebar-body {
  flex-grow: 1;
  overflow-y: auto;
  padding: 20px;
}

.cart-sidebar-footer {
  padding: 20px;
  border-top: 1px solid var(--gray-200);
  background: var(--gray-50);
}

/* Cart Items in Sidebar */
.cart-item-sidebar {
  display: flex;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid var(--gray-100);
}

.cart-item-sidebar:last-child {
  border-bottom: none;
}

.cart-item-image {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  object-fit: cover;
  margin-right: 15px;
  flex-shrink: 0;
}

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

.cart-item-name {
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--gray-800);
}

.cart-item-restaurant {
  font-size: 12px;
  color: var(--gray-500);
  margin-bottom: 5px;
}

.cart-item-price {
  font-size: 14px;
  color: var(--primary-orange);
  font-weight: 600;
}

.cart-item-quantity {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 5px;
}

.cart-quantity-btn {
  width: 24px;
  height: 24px;
  border: 1px solid var(--gray-300);
  background: white;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

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

.cart-quantity-display {
  min-width: 30px;
  text-align: center;
  font-weight: 600;
}

.cart-item-remove {
  padding: 5px 10px;
  background: var(--gray-100);
  border: none;
  border-radius: 4px;
  color: var(--gray-600);
  cursor: pointer;
  transition: all 0.2s ease;
}

.cart-item-remove:hover {
  background: #ef4444;
  color: white;
}

/* Empty Cart State */
.empty-cart-sidebar {
  text-align: center;
  padding: 40px 20px;
  background: linear-gradient(135deg, #fff8f0 0%, #fef6f0 100%);
  border-radius: 12px;
  border: 2px dashed #ffa726;
  margin: 20px 0;
}

.empty-cart-sidebar i {
  font-size: 48px;
  color: #ff9800;
  margin-bottom: 15px;
}

.empty-cart-sidebar h6 {
  color: #e65100;
  margin-bottom: 10px;
  font-weight: 600;
}

.empty-cart-sidebar p {
  color: #f57c00;
  font-size: 14px;
  margin-bottom: 20px;
}

/* Empty cart page styling */
.empty-cart-icon {
  background: linear-gradient(135deg, #fff8f0 0%, #fef6f0 100%);
  border-radius: 50%;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border: 3px dashed #ffa726;
}

.empty-cart-icon i {
  color: #ff9800 !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .cart-sidebar-content {
    width: 100%;
  }
}

/* ================================= */
/* ORANGE BUTTON STYLES */
/* ================================= */
.btn-orange {
  background: var(--primary-orange);
  color: white;
  border: 1px solid var(--primary-orange);
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
}

.btn-orange:hover {
  background: var(--dark-orange);
  border-color: var(--dark-orange);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(234, 88, 12, 0.3);
}

.btn-orange:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(234, 88, 12, 0.3);
}

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

.hero-banner {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.banner-bg {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.top-tag {
    color: #f59e0b;
    font-family: "Merienda", sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.banner-title {
    font-family: "Merienda", sans-serif;
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 10px;
}

.banner-title span {
    color: #f59e0b;
}

.banner-subtitle {
    font-size: 16px;
    margin-bottom: 25px;
}

.features {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 14px;
}

.feature-item i {
    color: #f59e0b;
    font-size: 22px;
}