:root {
    --wolt-primary: #16a34a;
    --wolt-primary-dark: #15803d;
    --wolt-primary-light: #4ade80;
    --wolt-dark: #0f0f0f;
    --wolt-dark-secondary: #1a1a1a;
    --wolt-dark-tertiary: #262626;
    --wolt-gray: #2a2a2a;
    --wolt-gray-light: #3a3a3a;
    --wolt-text: #e5e5e5;
    --wolt-text-secondary: #a3a3a3;
    --wolt-border: #333333;
    --wolt-border-light: #404040;
    --wolt-success: #22c55e;
    --wolt-card-bg: #ffffff;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: #1a1a1a;
    background-color: #ffffff;
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    width: 100%;
    padding-top: 80px;
}

html {
    overflow-x: hidden;
    width: 100%;
}

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

/* Header */
.restaurant-header {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid #e5e5e5;
    backdrop-filter: blur(10px);
}

.restaurant-header .container > div {
    flex-wrap: nowrap;
    min-width: 0;
}

.restaurant-header .container > div > div:first-child {
    flex-shrink: 0;
}

.restaurant-header .container > div > div:last-child {
    flex-shrink: 0;
}

.restaurant-header .badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    background: var(--wolt-primary);
    color: #ffffff;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.3);
}

.order-summary {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #f5f5f5;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    border: 1px solid #e5e5e5;
    transition: all 0.2s ease;
}

.order-summary:hover {
    background: #e5e5e5;
    border-color: var(--wolt-primary);
}

.order-label {
    color: #1a1a1a;
    font-weight: 500;
    font-size: 0.95rem;
}

.order-price {
    background: #ffffff;
    color: #1a1a1a;
    font-weight: 700;
    font-size: 1rem;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    border: 1px solid #e5e5e5;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.restaurant-brand {
    gap: 0.75rem;
}

.brand-logo {
    width: 75px;
    height: 75px;
    border-radius: 12px;
    object-fit: contain;
    background: transparent;
    padding: 0;
    display: block;
    filter: brightness(1.1) contrast(1.05);
}

.brand-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.brand-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.2;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    letter-spacing: 0.3px;
}

.brand-tagline {
    font-size: 0.85rem;
    color: #666666;
    margin: 0;
    line-height: 1.3;
}

/* Hero Banner */
.hero-banner {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    /* margin-top: 80px; */
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.hero-banner .container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Discount Products Slider */
.discount-slider-wrapper {
    display: flex;
    align-items: center;
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    padding: 0;
}

.discount-slider-wrapper > .slider-nav-btn {
    flex-shrink: 0;
    flex-grow: 0;
    width: 40px;
    height: 40px;
}

.discount-slider-wrapper .slider-nav-btn.prev-btn {
    margin-right: -20px !important;
    z-index: 10;
    position: relative;
}

.discount-slider-wrapper .slider-nav-btn.next-btn {
    margin-left: -20px !important;
    z-index: 10;
    position: relative;
}

.discount-slider-container {
    flex: 1;
    overflow: hidden;
    position: relative;
    margin: 0;
    padding: 0;
}

.discount-slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 1rem;
}

.discount-slide {
    flex: 0 0 calc(33.333% - 0.667rem);
    min-width: 0;
}

@media (max-width: 768px) {
    .discount-slide {
        flex: 0 0 calc(50% - 0.5rem);
    }

    .discount-slider-wrapper {
        max-width: 100%;
    }

    .discount-slider-track {
        gap: 0.5rem;
    }
}

.discount-product-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--wolt-primary);
    transition: all 0.3s ease;
    max-width: 280px;
    margin: 0 auto;
}

.discount-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(220, 38, 38, 0.3);
}

.discount-product-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f5f5 0%, #e5e5e5 100%);
}

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

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

.discount-product-image .discount-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--wolt-primary) 0%, var(--wolt-primary-dark) 100%);
    color: #ffffff;
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.5);
}

.discount-product-body {
    padding: 1.5rem;
    text-align: center;
}

.discount-product-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 0.75rem 0;
}

.discount-product-price {
    margin-bottom: 1rem;
}

.discount-product-price .price-old {
    font-size: 0.95rem;
    font-weight: 500;
    color: #999;
    text-decoration: line-through;
    margin-right: 0.5rem;
}

.discount-product-price .price-new {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--wolt-primary);
}

.discount-add-btn {
    width: 50px;
    height: 50px;
    background: var(--wolt-primary);
    color: #ffffff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(220, 38, 38, 0.4);
    transition: all 0.2s ease;
    margin: 0 auto;
}

.discount-add-btn:hover {
    background: var(--wolt-primary-dark);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.6);
}

.discount-add-btn:active {
    transform: scale(0.95);
}

.discount-quantity-selector {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin: 0 auto 0.5rem;
    padding: 0.4rem 0.8rem;
    background: #f5f5f5;
    border-radius: 25px;
    border: 2px solid var(--wolt-primary);
    max-width: 140px;
}

.discount-qty-btn {
    width: 28px;
    height: 28px;
    min-width: 28px;
    background: #ffffff;
    color: var(--wolt-primary);
    border: none;
    padding: 0;
    border-radius: 50%;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.discount-qty-btn:hover {
    background: #f5f5f5;
    transform: scale(1.1);
}

.discount-qty-value {
    color: #1a1a1a;
    font-weight: 600;
    font-size: 0.95rem;
    min-width: 20px;
    text-align: center;
    user-select: none;
}

.slider-nav-btn {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.9);
    color: var(--wolt-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 1.2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    z-index: 3;
}

.slider-nav-btn:hover {
    background: var(--wolt-primary);
    color: #ffffff;
    border-color: var(--wolt-primary);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.5);
}

.slider-nav-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    position: relative;
    z-index: 3;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.slider-dots .dot.active {
    background: #ffffff;
    width: 24px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.slider-dots .dot:hover {
    background: rgba(255, 255, 255, 0.8);
}


/* Navigation Tabs */
.nav-tabs-section {
    background-color: #f8f9fa;
    border-bottom: 1px solid #e5e5e5;
    position: relative;
    z-index: 999;
    padding: 1.25rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.nav-tabs-section.fixed {
    position: fixed;
    top: 99px;
    left: 0;
    right: 0;
    width: 100%;
}

.nav-tabs-scroller {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-tabs-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    flex: 1;
    position: relative;
}

.nav-tabs-wrapper::-webkit-scrollbar {
    display: none;
}

/* Remove white gradient overlay - handled by removing the ::after rule below */

.nav-tabs-wrapper .nav-pills {
    flex-wrap: nowrap;
    white-space: nowrap;
    padding-bottom: 0.5rem;
}

.nav-tabs-wrapper .nav-link {
    color: #666666;
    background-color: transparent;
    border: none;
    padding: 0.75rem 1.5rem;
    margin-right: 0.5rem;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
    border: 1px solid transparent;
}

.nav-tabs-wrapper .nav-link:hover {
    background-color: #e5e5e5;
    color: #1a1a1a;
    border-color: #d0d0d0;
}

.nav-tabs-wrapper .nav-link.active {
    background: linear-gradient(135deg, var(--wolt-primary) 0%, var(--wolt-primary-dark) 100%);
    color: #ffffff;
    border-color: var(--wolt-primary);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.scroll-btn {
    border: 1px solid #d0d0d0;
    background-color: #ffffff;
    color: #1a1a1a;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.scroll-btn:hover {
    border-color: var(--wolt-primary);
    color: var(--wolt-primary);
    background-color: #f5f5f5;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.2);
}

.scroll-btn.disabled {
    opacity: 0.4;
    pointer-events: none;
}

/* Main Content */
.main-content {
    padding: 3rem 0;
    min-height: 60vh;
    background-color: #ffffff;
}

/* Menu Category Sections */
.menu-category-section {
    margin-bottom: 4rem;
    scroll-margin-top: 180px;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--wolt-primary) 0%, var(--wolt-primary-dark) 100%);
    border-radius: 2px;
}

/* Menu Item Cards */
.menu-item-card {
    background: var(--wolt-card-bg);
    border: 1px solid #e5e5e5;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .menu-item-card {
        flex-direction: row;
        height: auto;
        min-height: 120px;
        background: var(--wolt-card-bg);
        border: 1px solid #e5e5e5;
    }

    .menu-item-body {
        background: transparent;
    }

    .menu-item-name {
        color: #1a1a1a;
    }
}

.menu-item-card:hover {
    box-shadow: 0 12px 40px rgba(220, 38, 38, 0.25), 0 4px 20px rgba(0, 0, 0, 0.4);
    transform: translateY(-6px) scale(1.02);
    border-color: rgba(220, 38, 38, 0.3);
}

/* Product Image */
.menu-item-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f5f5 0%, #e5e5e5 100%);
}

@media (max-width: 768px) {
    .menu-item-image {
        width: 140px;
        min-width: 140px;
        height: 120px;
        flex-shrink: 0;
    }
}

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

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

.menu-item-image .badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: var(--wolt-success);
    color: #ffffff;
    font-weight: 600;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Add to Cart Button - Rounded Plus Button */
.add-to-cart-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    width: 50px;
    height: 50px;
    background: var(--wolt-primary);
    color: #ffffff;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(22, 163, 74, 0.4);
    transition: all 0.2s ease;
    margin-left: auto;
    margin-right: auto;
}

.add-to-cart-btn:hover {
    background: var(--wolt-primary-dark);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(22, 163, 74, 0.6);
}

.add-to-cart-btn:active {
    transform: scale(0.95);
}

.add-to-cart-btn i {
    font-size: 1.5rem;
    line-height: 1;
    color: #ffffff;
}

/* Discount Badge */
.discount-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, var(--wolt-primary) 0%, var(--wolt-primary-dark) 100%);
    color: #ffffff;
    font-weight: 700;
    padding: 0.45rem 0.9rem;
    border-radius: 20px;
    font-size: 0.85rem;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.4);
    animation: pulse 2s infinite;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

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

/* Menu Item Body */
.menu-item-body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

@media (max-width: 768px) {
    .menu-item-body {
        padding: 1rem;
        flex-grow: 1;
        min-width: 0;
    }
}

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

.menu-item-name {
    font-size: 1.15rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    flex: 1;
    line-height: 1.4;
}

.menu-item-pricing {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.25rem;
}

.menu-item-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--wolt-primary);
    white-space: nowrap;
}

.menu-item-price-old {
    font-size: 0.9rem;
    font-weight: 500;
    color: #999;
    text-decoration: line-through;
    white-space: nowrap;
}

.menu-item-details {
    font-size: 0.9rem;
    color: #666;
    margin: 0 0 1.25rem 0;
    line-height: 1.6;
    flex-grow: 1;
}

/* Quantity Selector - Wolt Style */
.quantity-selector {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: auto;
    padding: 0.5rem 1rem;
    background: #f5f5f5;
    border-radius: 20px;
    border: 1px solid #e5e5e5;
}

.qty-btn {
    width: 36px;
    height: 36px;
    min-width: 36px;
    background: #ffffff;
    color: var(--wolt-primary);
    border: none;
    padding: 0;
    border-radius: 50%;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.qty-btn:hover {
    background: #f5f5f5;
    transform: scale(1.05);
}

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

.qty-btn i {
    font-size: 1rem;
    line-height: 1;
    color: var(--wolt-primary);
}

.qty-value {
    color: #1a1a1a;
    font-weight: 600;
    font-size: 1.1rem;
    min-width: 25px;
    text-align: center;
    user-select: none;
}

/* Restaurant Info Section */
/* Restaurant Info Section - Modern Dark Theme */
.restaurant-info-section {
    background: linear-gradient(180deg, #1a1a1a 0%, #0f0f0f 100%);
    padding: 4rem 0;
    margin-top: 4rem;
    position: relative;
}

.restaurant-info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--wolt-primary) 0%, var(--wolt-primary-light) 50%, var(--wolt-primary) 100%);
}

.info-card {
    background: var(--wolt-dark-tertiary);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--wolt-border);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    height: 100%;
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(22, 163, 74, 0.2);
    border-color: var(--wolt-primary);
}

.info-card-header {
    background: linear-gradient(135deg, var(--wolt-primary) 0%, var(--wolt-primary-dark) 100%);
    padding: 1.25rem 1.5rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.info-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    letter-spacing: -0.3px;
}

.info-card-title i {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
}

.info-card-body {
    padding: 1.5rem;
}

.info-text {
    color: var(--wolt-text);
    line-height: 1.8;
    font-size: 1rem;
    margin: 0;
}

.info-text i {
    color: var(--wolt-primary);
    margin-right: 0.5rem;
    font-size: 1.1rem;
}

.info-link {
    color: var(--wolt-text);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.info-link:hover {
    color: var(--wolt-primary);
    text-decoration: underline;
}

/* Delivery Times Table */
.delivery-times-table {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.delivery-time-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.delivery-time-row:hover {
    background: rgba(22, 163, 74, 0.1);
    border-color: var(--wolt-primary);
    transform: translateX(4px);
}

.delivery-time-row .day {
    color: var(--wolt-text);
    font-weight: 600;
    font-size: 0.95rem;
}

.delivery-time-row .time {
    color: var(--wolt-text);
    font-weight: 500;
    font-size: 0.95rem;
    font-family: 'Courier New', monospace;
    letter-spacing: 0.5px;
}

/* Restaurant Description */
.restaurant-description {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--wolt-border);
    margin-top: 2rem;
}

.description-text {
    color: var(--wolt-text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
    .restaurant-info-section {
        padding: 2.5rem 0;
    }

    .info-card-header {
        padding: 1rem 1.25rem;
    }

    .info-card-title {
        font-size: 1.1rem;
    }

    .info-card-body {
        padding: 1.25rem;
    }

    .delivery-time-row {
        padding: 0.75rem;
    }
}

/* Footer */
/* Modern Footer */
.modern-footer {
    background: black   ;
    border-top: 3px solid var(--wolt-primary);
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
    position: relative;
}

.modern-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--wolt-primary) 0%, var(--wolt-primary-light) 50%, var(--wolt-primary) 100%);
}

.footer-content {
    position: relative;
}

.footer-section {
    /* margin-bottom: 2rem; */
    text-align: center;
}

.footer-title {
    color: var(--wolt-primary);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    letter-spacing: -0.3px;
}

.footer-title i {
    font-size: 1.2rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-link {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    padding: 0.25rem 0;
}

.footer-link:hover {
    color: var(--wolt-primary);
    transform: translateX(5px);
}

.footer-link i {
    font-size: 0.9rem;
    width: 18px;
    text-align: center;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: center;
}

.contact-item i {
    color: var(--wolt-primary);
    font-size: 1.1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
    width: 20px;
    text-align: center;
}

.contact-item a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-item a:hover {
    color: var(--wolt-primary);
}

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

.footer-logo {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    object-fit: contain;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.footer-brand-name {
    color: #0f172a;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    color: #64748b;
    font-size: 0.9rem;
    margin: 0;
}

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

.halal-badge {
    height: 100px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.footer-bottom {
    border-top: 1px solid #e2e8f0;
    padding-top: 1.5rem;
    margin-top: 2rem;
    text-align: center;
}

.footer-copyright {
    color: #ffffff;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.footer-copyright strong {
    color: #16a34a;
}

.footer-credits {
    color: #ffffff;
    font-size: 0.9rem;
}

.footer-credits a {
    color: var(--wolt-primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-credits a:hover {
    color: var(--wolt-primary-dark);
    text-decoration: underline;
}

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

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

    .footer-bottom .row > div {
        margin-bottom: 0.5rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-banner {
        height: 350px;
    }

    .discount-product-card {
        max-width: 240px;
    }

    .discount-product-image {
        height: 160px;
    }

    .slider-nav-btn {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .brand-logo {
        width: 40px;
        height: 40px;
        padding: 0;
    }

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

    .brand-tagline {
        font-size: 0.75rem;
    }

    .nav-tabs-section {
        top: 80px;
        padding: 1rem 0;
    }

    body {
        padding-top: 80px;
    }

    .menu-category-section {
        scroll-margin-top: 200px;
    }

    .main-content {
        padding: 2rem 0;
    }

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

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

    .menu-item-body {
        padding: 1.125rem;
    }

    .menu-item-name {
        font-size: 1.05rem;
    }

    .menu-item-price {
        font-size: 1.2rem;
    }

    .quantity-selector {
        gap: 0.75rem;
        padding: 0.4rem 0.75rem;
    }

    .qty-btn {
        width: 32px;
        height: 32px;
        min-width: 32px;
        font-size: 0.95rem;
    }

    .qty-value {
        font-size: 1rem;
        min-width: 22px;
    }
}

@media (max-width: 576px) {
    .restaurant-header h1 {
        font-size: 1.25rem;
    }

    .brand-name {
        font-size: 0.95rem;
    }

    .hero-banner {
        height: 430px;
        /* margin-top: 80px; */
    }

    .discount-product-card {
        max-width: 200px;
    }

    .discount-product-image {
        height: 140px;
    }

    .discount-product-name {
        font-size: 1rem;
    }

    .discount-product-price .price-new {
        font-size: 1.3rem;
    }

    .slider-nav-btn {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }

    .nav-tabs-wrapper .nav-link {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .menu-item-card {
        padding: 0;
    }

    .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .row {
        margin-left: -6px;
        margin-right: -6px;
    }

    .row > * {
        padding-left: 6px;
        padding-right: 6px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Cart Notification */
.cart-notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--wolt-primary) 0%, var(--wolt-primary-dark) 100%);
    color: #ffffff;
    padding: 1.125rem 1.75rem;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(220, 38, 38, 0.4);
    z-index: 10000;
    opacity: 0;
    transform: translateY(20px) scale(0.9);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    max-width: 320px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-notification.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Loading Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tab-pane {
    animation: fadeIn 0.3s ease-in;
}

/* Custom Scrollbar for Tabs - Removed white gradient overlay */

/* Modern Header Navigation Styles */
.mobile-menu-toggle {
    background: transparent;
    border: none;
    color: #1a1a1a;
    font-size: 1.5rem;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.mobile-menu-toggle:hover {
    background: #f5f5f5;
    color: var(--wolt-primary);
}

/* Header Navigation Links */
.header-nav {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0.25rem;
    max-width: 100%;
    overflow: hidden;
}

.header-nav .nav-item {
    flex-shrink: 0;
}

.header-nav .nav-link {
    color: #666666;
    background-color: transparent;
    border: none;
    padding: 0.5rem 1rem;
    margin-right: 0;
    border-radius: 25px;
    font-weight: 500;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    white-space: nowrap;
    border: 1px solid transparent;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    text-decoration: none;
    flex-shrink: 0;
}

.header-nav .nav-link .nav-text {
    max-width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.header-nav .nav-link i {
    font-size: 1rem;
}

.header-nav .nav-link:hover {
    background-color: #f5f5f5;
    color: #1a1a1a;
    border-color: #e5e5e5;
    transform: translateY(-1px);
}

.header-nav .nav-link.active {
    background: linear-gradient(135deg, var(--wolt-primary) 0%, var(--wolt-primary-dark) 100%);
    color: #ffffff;
    border-color: var(--wolt-primary);
    box-shadow: 0 4px 12px rgba(22, 163, 74, 0.3);
    font-weight: 600;
}

.header-nav .nav-link.active:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(22, 163, 74, 0.4);
}

/* Language Switcher */
.language-switcher .language-btn {
    background: #f5f5f5;
    border: 1px solid #e5e5e5;
    color: #1a1a1a;
    padding: 0.6rem 1rem;
    border-radius: 25px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    min-width: auto;
}

.language-switcher .language-btn:hover {
    background: #e5e5e5;
    border-color: var(--wolt-primary);
    color: var(--wolt-primary);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.language-switcher .language-btn:focus {
    box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.1);
}

.language-switcher .language-btn i {
    font-size: 1.1rem;
}

/* Modern Dropdown Menu */
.modern-dropdown {
    border: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    padding: 0.5rem;
    margin-top: 0.5rem;
    min-width: 180px;
    background: #ffffff;
}

.modern-dropdown .dropdown-item {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #1a1a1a;
    font-weight: 500;
    font-size: 0.9rem;
}

.modern-dropdown .dropdown-item i {
    font-size: 1rem;
    width: 18px;
    text-align: center;
}

.modern-dropdown .dropdown-item:hover {
    background: #f5f5f5;
    color: var(--wolt-primary);
    transform: translateX(4px);
}

.modern-dropdown .dropdown-item.active {
    background: linear-gradient(135deg, var(--wolt-primary) 0%, var(--wolt-primary-dark) 100%);
    color: #ffffff;
}

.modern-dropdown .dropdown-item.active i {
    color: #ffffff;
}

.modern-dropdown .dropdown-item:not(.active) i {
    display: none;
}

.modern-dropdown .dropdown-divider {
    margin: 0.5rem 0;
    border-color: #e5e5e5;
}

/* Login Button */
.login-btn {
    background: linear-gradient(135deg, var(--wolt-primary) 0%, var(--wolt-primary-dark) 100%);
    color: #ffffff;
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 12px rgba(22, 163, 74, 0.3);
    text-decoration: none;
}

.login-btn:hover {
    background: linear-gradient(135deg, var(--wolt-primary-dark) 0%, var(--wolt-primary) 100%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(22, 163, 74, 0.4);
}

.login-btn:active {
    transform: translateY(0);
}

.login-btn i {
    font-size: 1rem;
}

/* User Menu Button */
.user-menu .user-btn {
    background: #f5f5f5;
    border: 1px solid #e5e5e5;
    color: #1a1a1a;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    min-width: auto;
}

.user-menu .user-btn:hover {
    background: #e5e5e5;
    border-color: var(--wolt-primary);
    color: var(--wolt-primary);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.user-menu .user-btn:focus {
    box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.1);
}

.user-menu .user-btn i {
    font-size: 1.2rem;
}

/* Enhanced Order Summary */
.order-summary {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    border: 1px solid #e5e5e5;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.order-summary:hover {
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
    border-color: var(--wolt-primary);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(22, 163, 74, 0.15);
}

.order-summary i {
    font-size: 1.2rem;
    color: var(--wolt-primary);
}

.order-label {
    color: #1a1a1a;
    font-weight: 500;
    font-size: 0.9rem;
}

.order-price {
    background: linear-gradient(135deg, var(--wolt-primary) 0%, var(--wolt-primary-dark) 100%);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(22, 163, 74, 0.3);
}

/* Responsive adjustments for header */
@media (max-width: 991px) {
    .header-nav .nav-link {
        padding: 0.45rem 0.85rem;
        font-size: 0.8rem;
    }

    .header-nav .nav-link i {
        display: none;
    }
}

/* Medium screens - reduce navigation text size further */
@media (min-width: 768px) and (max-width: 1199px) {
    .header-nav .nav-link {
        padding: 0.5rem 0.85rem;
        font-size: 0.8rem;
    }

    .header-nav .nav-link .nav-text {
        max-width: 85px;
    }

    .header-nav .nav-link i {
        font-size: 0.9rem;
    }
}

/* Large screens - allow more space */
@media (min-width: 1200px) {
    .header-nav .nav-link .nav-text {
        max-width: 120px;
    }
}

/* Mobile Navigation Backdrop */
.mobile-nav-backdrop {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    backdrop-filter: blur(4px);
}

.mobile-nav-backdrop.show {
    opacity: 1;
    visibility: visible;
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    max-width: 320px;
}

.mobile-nav.show {
    transform: translateX(0);
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #e5e5e5;
    background: linear-gradient(135deg, var(--wolt-primary) 0%, var(--wolt-primary-dark) 100%);
    color: #ffffff;
}

.mobile-nav-header h5 {
    margin: 0;
    font-weight: 600;
    font-size: 1.25rem;
}

.mobile-nav-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #ffffff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    cursor: pointer;
}

.mobile-nav-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-list li {
    border-bottom: 1px solid #f5f5f5;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.2s ease;
    background: #ffffff;
}

.mobile-nav-link i {
    font-size: 1.3rem;
    color: #666666;
    width: 24px;
    text-align: center;
}

.mobile-nav-link:hover {
    background: #f5f5f5;
    color: var(--wolt-primary);
    padding-left: 2rem;
}

.mobile-nav-link:hover i {
    color: var(--wolt-primary);
}

.mobile-nav-link.active {
    background: linear-gradient(135deg, rgba(22, 163, 74, 0.1) 0%, rgba(22, 163, 74, 0.05) 100%);
    color: var(--wolt-primary);
    border-left: 4px solid var(--wolt-primary);
    font-weight: 600;
}

.mobile-nav-link.active i {
    color: var(--wolt-primary);
}

@media (max-width: 768px) {
    .order-summary {
        padding: 0.5rem 1rem;
    }

    .order-label {
        display: none;
    }

    .language-switcher .language-btn span {
        display: none;
    }

    .user-menu .user-btn span {
        display: none;
    }

    .login-btn span {
        display: none;
    }
}

