/* Global Styles - Black, White & Red Theme */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Professional Modern Blue Theme - Light Mode */
    --primary-color: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #3b82f6;
    --secondary-color: #64748b;
    --accent-color: #06b6d4;
    --accent-light: #22d3ee;
    --success-color: #059669;
    --dark-bg: #ffffff;
    --dark-card: #f8fafc;
    --dark-card-hover: #f1f5f9;
    --dark-border: #e2e8f0;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #64748b;
    --text-accent: #2563eb;
    --glow-primary: 0 0 20px rgba(37, 99, 235, 0.3);
    --glow-accent: 0 0 30px rgba(6, 182, 212, 0.2);
    --gradient-main: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    --gradient-accent: linear-gradient(135deg, #06b6d4 0%, #2563eb 100%);
}

[data-theme="dark"] {
    /* Premium Dark Theme - Deep Navy & Rich Blues */
    --primary-color: #1e40af;
    --primary-dark: #1e3a8a;
    --primary-light: #3b82f6;   
    --secondary-color: #9ca3af;
    --accent-color: #0891b2;
    --accent-light: #22d3ee;
    --success-color: #059669;
    --dark-bg: #0c0a09;
    --dark-card: #1c1917;
    --dark-card-hover: #292524;
    --dark-border: #374151;
    --text-primary: #fafaf9;
    --text-secondary: #d1d5db;
    --text-muted: #6b7280;
    --text-accent: #1e40af;
    --glow-primary: 0 0 25px rgba(30, 64, 175, 0.5), 0 0 50px rgba(30, 64, 175, 0.2);
    --glow-accent: 0 0 35px rgba(8, 145, 178, 0.4), 0 0 70px rgba(8, 145, 178, 0.1);
    --gradient-main: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
    --gradient-accent: linear-gradient(135deg, #0891b2 0%, #1e40af 100%);
}

body {
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    color: var(--text-primary);
    background-color: var(--dark-bg);
    line-height: 1.6;
    min-height: 100vh;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.01em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: background-color 0.3s ease, color 0.3s ease;
    display: flex;
    flex-direction: column;
}


/* Admin Page - Minimalist */
body.admin-page {
    background: var(--dark-bg);
    color: var(--text-primary);
    min-height: 100vh;
}

body.admin-page .admin-layout {
    max-width: 1100px;
    margin: 0 auto;
    padding: 32px 18px 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

body.admin-page .admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

body.admin-page .admin-head-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

body.admin-page .admin-title h1 {
    margin: 0;
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: 0.2px;
}

body.admin-page .admin-title p {
    margin: 2px 0 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

body.admin-page .back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    border-radius: 0;
    color: var(--text-secondary);
    text-decoration: none;
    border: 1px solid var(--dark-border);
    background: transparent;
    transition: all 0.3s ease;
}

body.admin-page .back-link:hover {
    color: #ffffff;
    border-color: var(--primary-color);
    background: var(--primary-color);
}

body.admin-page .admin-head-right {
    display: flex;
    gap: 8px;
}

body.admin-page .pill {
    padding: 7px 12px;
    border-radius: 999px;
    border: 1px solid var(--dark-border);
    background: var(--dark-card);
    color: var(--text-secondary);
    font-weight: 600;
}

body.admin-page .admin-tabs {
    display: flex;
    gap: 0;
    flex-wrap: wrap;
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: 1px solid var(--dark-border);
}

body.admin-page .admin-tab {
    background: transparent;
    color: var(--text-secondary);
    border: none;
    border-right: 1px solid var(--dark-border);
    border-radius: 0;
    padding: 12px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

body.admin-page .admin-tab:last-child {
    border-right: none;
}

body.admin-page .admin-tab:hover {
    color: #ffffff;
    background: var(--primary-color);
}

body.admin-page .admin-tab.active {
    background: var(--primary-color);
    color: #ffffff;
    border-color: transparent;
}

body.admin-page .admin-grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 14px;
}

body.admin-page .admin-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 0;
    padding: 20px;
}

body.admin-page .admin-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 12px;
}

body.admin-page .admin-card-head h3 {
    margin: 0;
    font-size: 1.08rem;
}

body.admin-page .muted {
    color: var(--text-secondary);
}

body.admin-page .admin-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

body.admin-page .form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
}

body.admin-page .checkbox-inline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

body.admin-page .btn-admin-submit.full {
    width: 100%;
    border-radius: 0;
    background: var(--primary-color);
    color: #ffffff;
    border: 1px solid var(--primary-color);
}

body.admin-page .btn-ghost-danger {
    background: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 0;
    padding: 10px 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

body.admin-page .btn-ghost-danger:hover {
    background: var(--primary-color);
    color: #ffffff;
}

body.admin-page .admin-products-list {
    max-height: 540px;
    overflow-y: auto;
}

@media (max-width: 960px) {
    body.admin-page .admin-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    body.admin-page .admin-head-left {
        width: 100%;
    }

    body.admin-page .admin-head-right {
        width: 100%;
        justify-content: flex-start;
    }

    body.admin-page .admin-tabs {
        width: 100%;
    }

    body.admin-page .admin-tab {
        flex: 1;
        font-size: 0.8rem;
        padding: 10px 14px;
    }

    body.admin-page .admin-grid {
        grid-template-columns: 1fr;
    }

    body.admin-page .admin-layout {
        padding: 20px 15px 30px;
    }
}

@media (max-width: 576px) {
    body.admin-page .admin-title h1 {
        font-size: 1.15rem;
    }

    body.admin-page .admin-title p {
        font-size: 0.85rem;
    }

    body.admin-page .admin-tab {
        font-size: 0.75rem;
        padding: 10px 12px;
    }

    body.admin-page .admin-card {
        padding: 16px;
    }

    body.admin-page .admin-card-head h3 {
        font-size: 0.95rem;
    }

    body.admin-page .form-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    body.admin-page .admin-products-list {
        max-height: 420px;
    }

    body.admin-page .back-link {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
}

/* Header Styles */
.header-section {
    background: var(--dark-bg);
    border-bottom: 1px solid var(--dark-border);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    transform: translateY(0);
}

.header-section.hidden {
    transform: translateY(-100%);
}

.header-section.scrolled {
    background: var(--dark-bg);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
    border-bottom: 1px solid var(--dark-border);
}

[data-theme="dark"] .header-section {
    background: rgba(12, 10, 9, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--dark-border);
}

[data-theme="dark"] .header-section.scrolled {
    background: rgba(12, 10, 9, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    min-height: 60px;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 40px;
    flex: 1;
}


.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.btn-join {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    white-space: nowrap;
    letter-spacing: 0.2px;
}

.btn-join:hover {
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.35);
    transform: translateY(-2px);
}

.btn-login-nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border: 1px solid var(--dark-border);
    color: var(--text-primary);
    background: transparent;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    white-space: nowrap;
    letter-spacing: 0.2px;
}

.btn-login-nav:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.25);
    transform: translateY(-2px);
}

.main-nav {
    display: flex;
    gap: 4px;
    align-items: center;
    flex: 1;
    justify-content: center;
    padding: 0 20px;
}

.desktop-nav {
    display: flex;
    gap: 8px;
}

.desktop-only {
    display: inline-flex;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 1px solid var(--dark-border);
    border-radius: 8px;
    cursor: pointer;
    padding: 0;
    gap: 5px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1002;
    flex-shrink: 0;
}

.mobile-menu-toggle:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.mobile-menu-toggle:active {
    transform: scale(0.95);
}

.hamburger-line {
    width: 22px;
    height: 2.5px;
    background: var(--text-primary);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 3px;
}

.mobile-menu-toggle:hover .hamburger-line {
    background: #ffffff;
}

.mobile-menu-toggle.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.mobile-menu-toggle.active .hamburger-line {
    background: #ffffff;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav {
    position: fixed;
    top: 70px;
    right: 0;
    width: 320px;
    max-width: 90vw;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 12px;
    margin: 8px;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    max-height: calc(100vh - 90px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

[data-theme="dark"] .mobile-nav {
    background: rgba(28, 25, 23, 0.98);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.mobile-nav.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* Custom Scrollbar for Mobile Nav */
.mobile-nav::-webkit-scrollbar {
    width: 6px;
}

.mobile-nav::-webkit-scrollbar-track {
    background: transparent;
}

.mobile-nav::-webkit-scrollbar-thumb {
    background: var(--dark-border);
    border-radius: 3px;
}

.mobile-nav::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

.mobile-nav-content {
    padding: 12px 0;
}

.mobile-nav-item {
    width: 100%;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
    border: none;
    background: transparent;
    width: 100%;
    text-align: left;
    cursor: pointer;
    position: relative;
    border-radius: 8px;
    margin: 0 8px;
    width: calc(100% - 16px);
}

.mobile-nav-link:hover {
    background: var(--dark-bg);
    color: var(--primary-color);
}

.mobile-nav-link:active {
    transform: scale(0.98);
}

.mobile-nav-link i {
    font-size: 1.1rem;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--primary-color);
}

.mobile-nav-item.active .mobile-nav-link i {
    transform: rotate(180deg);
}

.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: var(--dark-bg);
    margin: 0 8px;
    border-radius: 8px;
}

.mobile-submenu.active {
    max-height: 300px;
}

.mobile-submenu-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px 10px 36px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.2s ease;
    position: relative;
    border-radius: 6px;
    margin: 2px 8px;
}

.mobile-submenu-item::before {
    content: '•';
    position: absolute;
    left: 20px;
    color: var(--primary-color);
    font-weight: bold;
}

.mobile-submenu-item:hover {
    background: var(--dark-card-hover);
    color: var(--primary-color);
}

.mobile-submenu-item:active {
    transform: scale(0.98);
}

.mobile-nav-divider {
    height: 1px;
    background: var(--dark-border);
    margin: 8px 16px;
}

.mobile-nav-cta {
    background: var(--primary-color);
    color: #ffffff !important;
    font-weight: 600;
    gap: 8px;
    margin: 8px;
    border-radius: 8px;
    padding: 12px 20px !important;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.25);
}

.mobile-nav-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.35);
}

.mobile-nav-cta i {
    font-size: 1.1rem;
    color: #ffffff !important;
}

.main-nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    padding: 8px 14px;
    border-radius: 6px;
    position: relative;
    white-space: nowrap;
    letter-spacing: 0.1px;
}

.main-nav .nav-item {
    position: relative;
}

.main-nav .nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 8px 14px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.main-nav a:hover {
    color: var(--primary-color);
    background: rgba(37, 99, 235, 0.08);
}

.main-nav a:hover::after {
    width: 70%;
}

.main-nav .nav-link:hover {
    color: var(--primary-color);
    background: rgba(37, 99, 235, 0.08);
}

/* Language Dropdown - Simple */
.language-dropdown {
    position: relative;
}

.language-dropdown {
    position: relative;
    z-index: 1002;
}

.language-dropdown .dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 6px;
    border: 1px solid var(--dark-border);
    background: var(--dark-card);
    color: var(--text-primary);
    font-weight: 500;
    min-width: 90px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.language-dropdown .dropdown-toggle:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.language-dropdown .dropdown-toggle:after {
    margin-left: 6px;
}

.lang-flag {
    width: 20px;
    height: 14px;
    object-fit: cover;
    border-radius: 1px;
    border: 1px solid var(--dark-border);
    display: inline-block;
    background: var(--card-bg);
}

.lang-text {
    font-size: 0.85rem;
    letter-spacing: 0.3px;
}

.language-dropdown .dropdown-menu {
    min-width: 170px;
    border-radius: 10px;
    border: 1px solid var(--dark-border);
    padding: 6px 0;
    background: #ffffff;
}

.language-option {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 14px;
    border: none;
    background: transparent;
    color: #1a1a1a;
    text-align: left;
    cursor: pointer;
}

.language-option:hover {
    background: rgb(108, 92, 231);
    background: #6c5ce7;
    color: white;
}

.language-option.active {
    background: rgb(108, 92, 231);
    background: #6c5ce7;
    font-weight: 600;
    color: white;
}

.language-option .lang-name {
    flex: 1;
    font-size: 0.9rem;
}

.language-option .lang-code {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 600;
}

/* Dark mode tweaks */
[data-theme="dark"] .language-dropdown .dropdown-toggle {
    background: rgb(30, 30, 35);
    border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .language-dropdown .dropdown-menu {
    background: #ffffff;
    border-color: #e5e7eb;
}

[data-theme="dark"] .language-option {
    color: #1a1a1a;
}

/* Theme Toggle Button */
.theme-toggle {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 6px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-primary);
    font-size: 1rem;
    padding: 0;
    position: relative;
    z-index: 1002;
}

.theme-toggle:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.theme-toggle i {
    transition: all 0.3s ease;
}

[data-theme="dark"] .modern-footer {
    background: rgba(28, 25, 23, 0.98);
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 50px 0;
    background: var(--dark-card);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.why-choose-card {
    background: var(--dark-bg);
    border: 1px solid var(--dark-border);
    border-radius: 16px;
    padding: 35px 28px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
}

.why-choose-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.03) 0%, rgba(67, 56, 202, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.why-choose-card:hover {
    border-color: rgba(37, 99, 235, 0.4);
    box-shadow: 0 8px 32px rgba(37, 99, 235, 0.08);
}

.why-choose-card:hover::before {
    opacity: 1;
}

.why-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #4338ca 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #ffffff;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.why-choose-card:hover .why-icon {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.25);
    background: linear-gradient(135deg, var(--primary-color) 0%, #4338ca 100%);
}

.why-choose-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 12px 0;
    transition: color 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.why-choose-card:hover h4 {
    color: var(--primary-color);
}

.why-choose-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
    transition: color 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

/* Statistics Section */
.stats-section {
    margin-top: 60px;
    padding-top: 50px;
    border-top: 1px solid var(--dark-border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.stat-card {
    background: var(--dark-bg);
    border: 1px solid var(--dark-border);
    border-radius: 16px;
    padding: 30px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(67, 56, 202, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.stat-card:hover {
    border-color: rgba(37, 99, 235, 0.4);
    box-shadow: 0 8px 32px rgba(37, 99, 235, 0.08);
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #4338ca 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: #ffffff;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.stat-card:hover .stat-icon {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.25);
}

.stat-content {
    position: relative;
    z-index: 1;
}

.stat-number {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 12px;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
    transition: color 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-card:hover .stat-value {
    color: var(--primary-color);
}

.stat-suffix {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1;
}

.stat-card h4 {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin: 0;
    transition: color 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-card:hover h4 {
    color: var(--text-primary);
}

/* CTA Section */
.cta-section {
    padding: 50px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #4338ca 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 16px 0;
    letter-spacing: -0.5px;
}

.cta-text p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 32px 0;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary,
.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

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

.btn-cta-primary:hover {
    background: transparent;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-cta-secondary {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    transform: translateY(-3px);
}

/* WhatsApp Chatbot */
.whatsapp-chatbot {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    font-family: inherit;
}

.chatbot-button {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #4338ca 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    color: #ffffff;
    font-size: 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.chatbot-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 99, 235, 0.5);
    background: linear-gradient(135deg, #2563eb 0%, #4338ca 100%);
}

.chatbot-button::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    animation: pulse 2s infinite;
}

.chatbot-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #ef4444;
    color: #ffffff;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 600;
    border: 2px solid var(--dark-bg);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.4);
}

.chatbot-badge.active {
    opacity: 1;
    visibility: visible;
    animation: badgePulse 1.5s infinite;
}

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

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

.chatbot-message {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 360px;
    height: 500px;
    max-height: 80vh;
    background: var(--dark-bg);
    border: 1px solid var(--dark-border);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(37, 99, 235, 0.05);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.9);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.chatbot-message.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.chatbot-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #4338ca 100%);
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.chatbot-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.chatbot-avatar {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
}

.chatbot-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.chatbot-header-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.chatbot-name {
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.2;
}

.chatbot-status {
    font-size: 0.75rem;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 6px;
}

.chatbot-status::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    display: inline-block;
    animation: blink 2s infinite;
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.6);
}

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

.chatbot-close {
    background: transparent;
    border: none;
    color: #ffffff;
    cursor: pointer;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: background 0.2s ease;
    font-size: 1.2rem;
    width: 32px;
    height: 32px;
}

.chatbot-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.chatbot-body {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: var(--dark-bg);
}

.chatbot-body::-webkit-scrollbar {
    width: 6px;
}

.chatbot-body::-webkit-scrollbar-track {
    background: transparent;
}

.chatbot-body::-webkit-scrollbar-thumb {
    background: var(--dark-border);
    border-radius: 3px;
}

.chatbot-body::-webkit-scrollbar-thumb:hover {
    background: rgba(37, 99, 235, 0.4);
}

.chatbot-messages {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.chatbot-bubble {
    max-width: 75%;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 0.9rem;
    line-height: 1.5;
    word-wrap: break-word;
    animation: messageSlideIn 0.3s ease;
}

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

.chatbot-bubble.bot {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    color: var(--text-primary);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.chatbot-bubble.user {
    background: linear-gradient(135deg, var(--primary-color) 0%, #4338ca 100%);
    color: #ffffff;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.chatbot-bubble p {
    margin: 0;
}

.chatbot-time {
    font-size: 0.7rem;
    opacity: 0.6;
    margin-top: 4px;
    display: block;
}

.chatbot-input-container {
    padding: 12px 16px;
    border-top: 1px solid var(--dark-border);
    background: var(--dark-card);
    display: flex;
    gap: 8px;
    align-items: center;
}

.chatbot-input {
    flex: 1;
    background: var(--dark-bg);
    border: 1px solid var(--dark-border);
    border-radius: 20px;
    padding: 10px 16px;
    color: var(--text-primary);
    font-size: 0.9rem;
    outline: none;
    transition: all 0.2s ease;
}

.chatbot-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.chatbot-input::placeholder {
    color: var(--text-secondary);
}

.chatbot-send {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 1rem;
    background: var(--primary-color);
    color: #ffffff;
}

.chatbot-send:hover {
    background: #2563eb;
    transform: scale(1.05);
}

.chatbot-send:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

[data-theme="dark"] .hero-section {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-card) 50%, #1f2937 100%);
}


.navbar-logo {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    transition: all 0.3s ease;
    padding: 4px 0;
}

.navbar-logo img {
    display: block;
    max-height: 36px;
    width: auto;
    transition: transform 0.3s ease;
}

.navbar-logo:hover {
    opacity: 0.9;
    transform: scale(1.05);
}

.navbar-logo:hover img {
    transform: scale(1.05);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--dark-card-hover) 100%);
    padding: 60px 0 50px;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
    min-height: 50vh;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--dark-border);
}

[data-theme="dark"] .hero-section {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-card) 50%, #1f2937 100%);
}

.hero-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-text-content {
    flex: 1;
    max-width: 500px;
}

.hero-image-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-left: 0;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: transparent;
    box-shadow: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-left: 50px;
}

@media (max-width: 768px) {
    .hero-image-wrapper {
        margin-left: 0;
    }
}

.hero-image-wrapper:hover {
    transform: translateY(-10px);
    box-shadow: none;
}

.hero-image {
    width: 100%;
    max-width: 350px;
    height: auto;
    display: block;
    border-radius: 20px;
    background: transparent;
    transition: opacity 0.5s ease-in-out;
}




.hero-label {
    display: inline-block;
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 6px;
    color: var(--primary-color);
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--primary-color);
}

.hero-title {
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 3.5rem;
    font-weight: 500;
    color: var(--text-primary);
    margin: 0 0 20px;
    letter-spacing: -2px;
    line-height: 1.1;
    font-style: normal;
}

.hero-description {
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 400;
    max-width: 500px;
    margin: 0 auto 30px;
    line-height: 1.6;
    font-style: normal;
}

.btn-hero {
    background: var(--primary-color);
    color: #ffffff;
    border: 2px solid var(--primary-color);
    padding: 14px 32px;
    border-radius: 0;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

.btn-hero:hover {
    background: transparent;
    color: var(--primary-color);
}

.btn-hero i {
    transition: transform 0.3s ease;
}

.btn-hero:hover i {
    transform: translateX(5px);
}

/* Section Styles */
.section-badge {
    display: inline-block;
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    color: var(--primary-color);
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 12px;
}

.section-heading {
    text-align: center;
    margin-bottom: 20px;
}

.section-heading h3 {
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 3rem;
    font-weight: 500;
    color: var(--text-primary);
    margin: 20px 0 25px;
    letter-spacing: -1.5px;
    font-style: normal;
}

.section-heading p {
    color: var(--text-secondary);
    font-size: 1rem;
    max-width: 550px;
    margin: 0 auto;
    font-weight: 400;
    line-height: 1.8;
}

/* Services Section */
.services-section {
    padding: 50px 0;
    background: var(--dark-bg);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

.service-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 12px;
    padding: 20px 18px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #4338ca 100%);
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(108, 92, 231, 0.1) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover::after {
    transform: scale(1);
}

.service-card:hover {
    border-color: transparent;
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(108, 92, 231, 0.3);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.1) 0%, rgba(67, 56, 202, 0.1) 100%);
    border: 2px solid var(--dark-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-primary);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.service-card:hover .service-icon {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
    transform: scale(1.15) rotateY(360deg);
    box-shadow: 0 10px 30px rgba(108, 92, 231, 0.4);
}

.service-card h4 {
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 8px;
    letter-spacing: 0.2px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

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

.service-card p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.5;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.service-card:hover p {
    color: rgba(255, 255, 255, 0.9);
}

/* Contact Section - Removed */

/* About Section */
.about-section {
    padding: 100px 0;
    background: var(--dark-bg);
}

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

.about-text {
    color: var(--text-primary);
}

.about-text h3 {
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 2.7rem;
    font-weight: 500;
    color: var(--text-primary);
    margin: 15px 0 25px;
    letter-spacing: -1px;
}

.about-text p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.about-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.about-features li {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding-left: 5px;
}

.about-features li i {
    color: var(--primary-color);
    font-size: 1rem;
}

.about-visual {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.visual-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 0;
    padding: 35px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.visual-card:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.25);
}

.visual-card:hover i,
.visual-card:hover h4 {
    color: #ffffff;
}

.visual-card i {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.visual-card h4 {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
    margin: 0;
    transition: all 0.3s ease;
}

/* Menu Section */
.menu-section {
    padding: 40px 0;
    background: var(--dark-bg);
    overflow: hidden;
}

/* Restaurant Logo Slider */
.restaurant-slider-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.restaurant-slider-wrapper::before,
.restaurant-slider-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.restaurant-slider-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--dark-bg), transparent);
}

.restaurant-slider-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--dark-bg), transparent);
}

.restaurant-slider {
    display: flex;
    gap: 30px;
    animation: slideLeft 25s linear infinite;
    width: fit-content;
}

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

.restaurant-logo-card {
    flex-shrink: 0;
    width: 140px;
    text-align: center;
    transition: transform 0.3s ease;
    cursor: default;
    pointer-events: none;
}


.restaurant-logo-image {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--dark-card);
    border: 3px solid var(--dark-border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}


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

.restaurant-logo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-main);
    color: white;
    font-size: 4rem;
}


.section-title {
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 2.2rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 400;
}

/* Menu Card Styles */
.menu-item {
    background: var(--dark-card);
    border-radius: 0;
    overflow: hidden;
    border: 1px solid var(--dark-border);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.menu-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(30, 64, 175, 0.15);
}

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

.menu-item-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: var(--dark-card-hover);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-size: 3rem;
    overflow: hidden;
}

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

.menu-item-body {
    padding: 18px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.menu-item-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.menu-item-description {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-bottom: 12px;
    flex-grow: 1;
    line-height: 1.5;
}

.menu-item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid var(--dark-border);
}

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

.menu-item-badge {
    background: transparent;
    border: 1px solid var(--dark-border);
    color: var(--text-secondary);
    padding: 5px 12px;
    border-radius: 0;
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.menu-item-badge i {
    margin-right: 5px;
    color: var(--primary-color);
}

/* Add to Cart Button */
.btn-add-to-cart {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--primary-color);
    color: #ffffff;
    border: none;
    border-radius: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.btn-add-to-cart .add-icon {
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1;
}

.btn-add-to-cart:hover {
    background: #000000;
    transform: scale(1.1);
}

.menu-item {
    position: relative;
}

@media (max-width: 992px) {
    .hero-content-wrapper {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

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

    .hero-image-content {
        width: 100%;
        max-width: 250px;
        align-items: center;
        margin-left: 0;
    }

    .hero-image {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-image-content {
        max-width: 220px;
    }
}

@media (max-width: 576px) {
    .hero-image-content {
        max-width: 200px;
    }
}

/* Modern Footer Styles */
.modern-footer {
    background: var(--dark-card);
    border-top: 1px solid var(--dark-border);
    padding: 60px 0 0;
    position: relative;
    margin-top: auto;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-about {
    padding-right: 20px;
}

.footer-logo img {
    max-height: 40px;
    width: auto;
    margin-bottom: 16px;
}

.footer-description {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 8px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--dark-border);
    border-radius: 8px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-link:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #ffffff;
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 4px 0;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    padding: 4px 0;
}

.footer-links li a i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

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

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-contact li i {
    color: var(--primary-color);
    font-size: 1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-contact li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact li a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid var(--dark-border);
    padding: 24px 0;
}

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

.footer-copyright {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0;
}

.footer-copyright strong {
    color: var(--text-primary);
    font-weight: 700;
}

.footer-bottom-links {
    display: flex;
    gap: 12px;
    align-items: center;
    font-size: 0.85rem;
}

.footer-bottom-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom-links .separator {
    color: var(--dark-border);
}

/* Legal Pages Styles */
.legal-page-section {
    padding: 80px 0 60px;
    background: var(--dark-bg);
    min-height: calc(100vh - 200px);
}

.legal-page-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    padding: 50px;
    line-height: 1.8;
}

.legal-page-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 20px;
}

.last-updated {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 40px;
    font-style: italic;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 30px;
    margin-bottom: 15px;
    padding-top: 20px;
    border-top: 1px solid var(--dark-border);
}

.legal-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 20px;
    margin-bottom: 12px;
}

.legal-section p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 15px;
}

.legal-section ul {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-left: 20px;
    margin-bottom: 15px;
    padding-left: 20px;
}

.legal-section ul li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.legal-section ul li strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Legal Pages Responsive */
@media (max-width: 768px) {
    .legal-page-section {
        padding: 60px 0 40px;
    }
    
    .legal-page-content {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .legal-page-content h1 {
        font-size: 2rem;
    }
    
    .legal-section h2 {
        font-size: 1.5rem;
    }
    
    .legal-section h3 {
        font-size: 1.2rem;
    }
    
    .legal-section p,
    .legal-section ul {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .legal-page-content {
        padding: 25px 15px;
        margin: 0 10px;
    }
    
    .legal-page-content h1 {
        font-size: 1.75rem;
    }
    
    .legal-section h2 {
        font-size: 1.3rem;
    }
    
    .legal-section h3 {
        font-size: 1.1rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    /* Restaurant Slider Mobile */
    .restaurant-slider {
        gap: 16px;
        animation: slideLeft 18s linear infinite;
    }

    .restaurant-logo-card {
        width: 100px;
    }

    .restaurant-logo-image {
        width: 100px;
        height: 100px;
        border-width: 2px;
    }

    .restaurant-logo-placeholder {
        font-size: 2.5rem;
    }

    .restaurant-slider-wrapper::before,
    .restaurant-slider-wrapper::after {
        width: 60px;
    }

    .header-inner {
        flex-wrap: nowrap;
        gap: 12px;
        padding: 14px 0;
        justify-content: space-between;
        min-height: 65px;
    }
    
    .header-left {
        width: auto;
        flex: 0 0 auto;
    }

    .navbar-logo img {
        max-height: 36px;
    }
    
    .desktop-nav {
        display: none !important;
    }

    .desktop-only {
        display: none !important;
    }

    .mobile-menu-toggle {
        display: flex;
    }
    
    .header-right {
        gap: 10px;
        flex-wrap: nowrap;
        flex: 0 0 auto;
    }

    .header-section.scrolled {
        box-shadow: 0 4px 25px rgba(0, 0, 0, 0.12);
    }

    [data-theme="dark"] .header-section.scrolled {
        box-shadow: 0 4px 25px rgba(0, 0, 0, 0.6);
    }
    
    .language-dropdown .dropdown-toggle {
        padding: 8px 12px;
        min-width: 85px;
        border-radius: 10px;
        font-size: 0.8rem;
        border-width: 2px;
    }
    
    .btn-join {
        padding: 8px 14px;
        font-size: 0.8rem;
        border-radius: 10px;
        white-space: nowrap;
        border-width: 2px;
    }

    .btn-login-nav {
        padding: 6px 10px;
        font-size: 0.75rem;
        white-space: nowrap;
    }
    
    .services-dropdown .dropdown-menu {
        position: static;
        opacity: 1;
        transform: none;
        display: block;
        box-shadow: none;
        padding: 4px 0;
        margin-top: 8px;
    }
    
    .services-dropdown .dropdown-item {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
    
    .lang-text {
        font-size: 0.7rem;
    }
    
    .lang-flag {
        width: 16px;
        height: 11px;
        border-radius: 1px;
    }
    
    .language-dropdown .dropdown-menu {
        min-width: 150px;
        right: 0;
    }
    
    .language-option {
        padding: 8px 10px;
    }
    
    .theme-toggle {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        border-width: 2px;
    }
    
    .hero-section {
        padding: 50px 0 40px;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 2.5rem;
        letter-spacing: -1.5px;
    }

    .hero-label {
        font-size: 0.75rem;
        letter-spacing: 4px;
    }
    
    .hero-description {
        font-size: 1rem;
    }

    .hero-image-wrapper {
        margin-left: 0;
    }
    
    .section-heading h3 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2.2rem;
    }
    
    .services-section,
    .about-section,
    .menu-section {
        padding: 40px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    /* Mobile Footer Redesign */
    .modern-footer {
        padding: 25px 0 0;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 0;
        margin-bottom: 0;
    }

    /* Footer About Section - Top Section */
    .footer-about {
        padding-right: 0;
        text-align: center;
        padding-bottom: 20px;
        border-bottom: 1px solid var(--dark-border);
        margin-bottom: 20px;
    }

    .footer-logo {
        display: flex;
        justify-content: center;
        margin-bottom: 10px;
    }

    .footer-logo img {
        max-height: 28px;
        margin-bottom: 0;
    }

    .footer-description {
        font-size: 0.8rem;
        line-height: 1.5;
        margin-bottom: 15px;
        color: var(--text-secondary);
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-social {
        justify-content: center;
        gap: 10px;
        margin-top: 0;
    }

    /* Footer Columns - Accordion Style */
    .footer-column {
        text-align: left;
        gap: 0;
        padding: 15px 0;
        border-bottom: 1px solid var(--dark-border);
    }

    .footer-column:last-of-type {
        border-bottom: none;
        padding-bottom: 20px;
    }

    /* About column always visible */
    .footer-about .footer-description {
        display: block;
    }
    
    /* Social links should be flex (horizontal) */
    .footer-about .footer-social {
        display: flex !important;
        justify-content: center;
        flex-wrap: wrap;
    }

    /* Other columns with accordion */
    .footer-column:not(.footer-about) .footer-title {
        font-size: 0.9rem;
        margin-bottom: 0;
        font-weight: 600;
        color: var(--text-primary);
        display: flex;
        align-items: center;
        justify-content: space-between;
        cursor: pointer;
        padding: 0;
        user-select: none;
    }

    .footer-column:not(.footer-about) .footer-title::after {
        content: '+';
        font-size: 1.2rem;
        font-weight: 300;
        color: var(--text-secondary);
        transition: transform 0.3s ease;
    }

    .footer-column:not(.footer-about).active .footer-title::after {
        transform: rotate(45deg);
    }

    /* Links Container - Initially Hidden */
    .footer-column:not(.footer-about) .footer-links,
    .footer-column:not(.footer-about) .footer-contact {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        margin-top: 0;
    }

    .footer-column:not(.footer-about).active .footer-links,
    .footer-column:not(.footer-about).active .footer-contact {
        max-height: 500px;
        margin-top: 12px;
    }

    .footer-links {
        gap: 10px;
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-links li a {
        justify-content: flex-start;
        font-size: 0.85rem;
        padding: 8px 0;
        color: var(--text-secondary);
    }

    .footer-links li a i {
        margin-right: 8px;
    }

    .footer-contact {
        gap: 12px;
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-contact li {
        justify-content: flex-start;
        font-size: 0.85rem;
        padding: 0;
        gap: 10px;
    }

    /* Footer Bottom */
    .footer-bottom {
        padding: 20px 0 15px;
        margin-top: 10px;
        border-top: 1px solid var(--dark-border);
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .footer-copyright {
        font-size: 0.75rem;
        line-height: 1.5;
    }

    .footer-bottom-links {
        font-size: 0.75rem;
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-bottom-links .separator {
        display: none;
    }

    .footer-bottom-links a {
        padding: 0 5px;
    }

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

    .why-choose-card {
        padding: 20px 15px;
    }

    .why-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        margin-bottom: 12px;
    }

    .why-choose-card h4 {
        font-size: 1rem;
        margin-bottom: 8px;
    }

    .why-choose-card p {
        font-size: 0.8rem;
        line-height: 1.5;
    }

    .stats-section {
        margin-top: 35px;
        padding-top: 35px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .stat-card {
        padding: 18px 12px;
    }

    .stat-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

    .stat-value {
        font-size: 1.5rem;
    }

    .stat-suffix {
        font-size: 1rem;
    }

    .stat-card h4 {
        font-size: 0.8rem;
        margin-top: 6px;
    }

    .cta-text h2 {
        font-size: 2rem;
    }

    .cta-text p {
        font-size: 1rem;
    }

    .cta-actions {
        flex-direction: column;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        max-width: 300px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-text h3 {
        font-size: 2rem;
    }
    
    .about-visual {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .visual-card {
        padding: 25px 15px;
    }
    
    .menu-item-body {
        padding: 14px;
    }
    
    .menu-item-title {
        font-size: 0.95rem;
    }
    
    .menu-item-description {
        font-size: 0.8rem;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .btn-add-to-cart {
        width: 38px;
        height: 38px;
        top: 10px;
        right: 10px;
    }
    
    .btn-add-to-cart .add-icon {
        font-size: 1.4rem;
    }

    .cart-button-container {
        padding: 10px;
        bottom: 40px;
    }

    .cart-button {
        padding: 14px 28px;
        font-size: 0.85rem;
    }

    .cart-panel {
        height: 85vh;
        max-height: none;
    }
}

/* Minimal Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.5s ease forwards;
    opacity: 0;
}

.fade-in[style*="--delay"] {
    animation-delay: var(--delay);
}

.fade-in.in-view {
    opacity: 1;
}


/* Scroll to Top Button */

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--dark-border);
    border-radius: 0;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

/* Selection */
::selection {
    background: var(--primary-color);
    color: #ffffff;
}

.services-dropdown .dropdown-menu {
    margin-top: 4px;
    background: var(--card-bg);
    border: 1px solid var(--dark-border);
    border-radius: 10px;
    padding: 6px 0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    display: none;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.services-dropdown:hover .dropdown-menu,
.services-dropdown:focus-within .dropdown-menu,
.services-dropdown.show .dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.services-dropdown .dropdown-item {
    font-size: 0.9rem;
    color: var(--text-primary);
    padding: 10px 14px;
}

.services-dropdown .dropdown-item:hover {
    background: #6c5ce7;
    color: white;
}

/* Cart Button (Fixed Bottom) */
.cart-button-container {
    position: fixed;
    bottom: 50px;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px;
    display: none;
    justify-content: center;
}

.cart-button {
    background: var(--primary-color);
    color: #ffffff;
    border: none;
    border-radius: 0;
    padding: 16px 36px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cart-button:hover {
    background: #000000;
    transform: scale(1.02);
}

.cart-button i {
    font-size: 1.3rem;
}

.cart-count {
    background: #ffffff;
    color: var(--primary-color);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
}

/* Cart Panel */
.cart-panel {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    height: 80vh;
    max-height: 600px;
    background: var(--dark-card);
    border-top: 3px solid var(--primary-color);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    transition: bottom 0.4s ease;
}

.cart-panel.show,
.cart-panel.active {
    bottom: 0;
}

.cart-header {
    padding: 20px;
    border-bottom: 1px solid var(--dark-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.cart-close-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.cart-close-btn:hover {
    color: var(--primary-color);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 15px;
}

.cart-empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-secondary);
}

.cart-empty i {
    font-size: 4rem;
    margin-bottom: 15px;
    opacity: 0.3;
    color: var(--primary-color);
}

.cart-item {
    background: var(--dark-bg);
    border-radius: 0;
    padding: 15px;
    margin-bottom: 1px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid var(--dark-border);
    border-bottom: none;
    transition: all 0.3s ease;
}

.cart-item:last-child {
    border-bottom: 1px solid var(--dark-border);
}

.cart-item:hover {
    border-color: var(--primary-color);
}

.cart-item-info {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.cart-item-image {
    font-size: 2rem;
}

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

.cart-item-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 5px 0;
}

.cart-item-price {
    font-size: 0.9rem;
    color: var(--primary-color);
    margin: 0;
    font-weight: 600;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-qty-btn {
    background: transparent;
    border: 1px solid var(--dark-border);
    color: var(--text-primary);
    border-radius: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cart-qty-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #ffffff;
}

.cart-item-qty {
    color: var(--text-primary);
    font-weight: 600;
    min-width: 30px;
    text-align: center;
}

.cart-remove-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s ease;
}

.cart-remove-btn:hover {
    color: var(--primary-color);
}

.cart-footer {
    padding: 20px;
    border-top: 1px solid var(--dark-border);
    background: var(--dark-card);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
}

.cart-total-price {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.btn-checkout {
    width: 100%;
    background: var(--primary-color);
    color: #ffffff;
    border: none;
    border-radius: 0;
    padding: 16px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-checkout:hover:not(:disabled) {
    background: #000000;
}

.btn-checkout:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Cart Notification */
.cart-notification {
    position: fixed;
    top: 100px;
    right: -300px;
    background: #000000;
    border-left: 4px solid var(--primary-color);
    border-radius: 0;
    padding: 15px 25px;
    color: #ffffff;
    font-weight: 600;
    z-index: 2000;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: right 0.4s ease;
}

.cart-notification.show {
    right: 20px;
}

.cart-notification i {
    color: var(--primary-color);
    font-size: 1.3rem;
}

/* Menu Item Image Styles */
.menu-item-img-full {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-thumb {
    width: 40px;
    height: 40px;
    border-radius: 0;
    object-fit: cover;
}

/* Form Styles */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    color: var(--text-primary);
    font-weight: 500;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
    align-items: end;
}

.form-group input,
.form-group textarea,
.form-group select {
    background: var(--dark-bg);
    border: 1px solid var(--dark-border);
    border-radius: 0;
    padding: 12px;
    color: var(--text-primary);
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-admin-submit {
    background: var(--primary-color);
    color: #ffffff;
    border: none;
    border-radius: 0;
    padding: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-admin-submit:hover {
    background: #000000;
}

.admin-products-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 520px;
    overflow-y: auto;
}

.admin-product-item {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 0;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.admin-product-item:hover {
    border-color: var(--primary-color);
}

.admin-product-image {
    width: 60px;
    height: 60px;
    border-radius: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark-bg);
    flex-shrink: 0;
}

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

.product-emoji {
    font-size: 2rem;
}

.admin-product-info {
    flex: 1;
}

.admin-product-info h4 {
    color: var(--text-primary);
    margin: 0 0 5px 0;
    font-size: 1rem;
}

.admin-product-info p {
    color: var(--text-secondary);
    margin: 0 0 5px 0;
    font-size: 0.85rem;
}

.admin-product-price {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
}

.admin-badge {
    background: var(--dark-border);
    color: var(--text-primary);
    padding: 3px 8px;
    border-radius: 0;
    font-size: 0.75rem;
    margin-left: 10px;
}

.btn-delete-product,
.btn-delete-all {
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 0;
    padding: 8px 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.85rem;
}

.btn-delete-product:hover,
.btn-delete-all:hover {
    background: var(--primary-color);
    color: #ffffff;
}

.no-products {
    color: var(--text-secondary);
    text-align: center;
    padding: 40px;
}

/* Toast Notification */
.toast-notification {
    position: fixed;
    top: 30px;
    right: 30px;
    padding: 16px 24px;
    background: #000000;
    color: #ffffff;
    border-left: 4px solid var(--primary-color);
    border-radius: 0;
    z-index: 10000;
    font-weight: 500;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.4s ease;
}

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

.toast-notification i {
    font-size: 1.1rem;
    color: var(--primary-color);
}

/* ================================
   RESTAURANT PAGE STYLES
   ================================ */

.restaurant-header-section {
    padding: 40px 0 30px;
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--dark-border);
}

.restaurant-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
    pointer-events: none;
}

/* Language Selector - Minimalist Round Flag Button */
.language-selector-wrapper {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 100;
}

.language-selector-btn {
    width: 48px;
    height: 48px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: visible;
}

.language-selector-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.08);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.language-selector-btn:active {
    transform: scale(0.98);
}

.language-selector-btn .current-flag {
    font-size: 1.5rem;
    line-height: 1;
    transition: transform 0.25s ease;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: auto;
    height: auto;
    font-family: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji", sans-serif;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-user-select: none;
    user-select: none;
    pointer-events: none;
    position: relative;
    z-index: 1;
}

.language-selector-btn:hover .current-flag {
    transform: scale(1.1);
}

.language-dropdown-menu {
    position: absolute;
    top: 56px;
    right: 0;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 12px;
    padding: 6px;
    min-width: 160px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.25s ease;
    pointer-events: none;
}

.language-dropdown-menu.show {
    display: block !important;
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.language-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    color: var(--text-primary);
    border-radius: 8px;
    transition: all 0.2s ease;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    margin-bottom: 2px;
}

.language-item:last-child {
    margin-bottom: 0;
}

.language-item:hover {
    background: var(--dark-bg);
    color: var(--primary-color);
}

.language-item.active {
    background: var(--primary-color);
    color: white;
}

.language-item .flag-icon {
    font-size: 1.4rem;
    line-height: 1;
}

.restaurant-logo-wrapper {
    margin-bottom: 32px;
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.restaurant-logo-wrapper img {
    width: 100px;
    height: 100px;
    border-radius: 0;
    object-fit: cover;
    transition: all 0.3s ease;
   }

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

.restaurant-name-header {
    margin-top: 20px;
    font-size: 32px;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.5px;
    animation: fadeInUp 0.6s ease 0.3s both;
}

/* Restaurant Social Media Links */
.restaurant-social-links {
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 20px;
    animation: fadeInUp 0.6s ease 0.5s both;
    position: relative;
    z-index: 10 !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100%;
    min-height: 44px;
}

.restaurant-social-links .social-link {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white !important;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
    visibility: visible !important;
    opacity: 1 !important;
    position: relative;
    z-index: 11;
}

.restaurant-social-links .social-link:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.restaurant-social-links .social-link i {
    transition: transform 0.3s ease;
}

.restaurant-social-links .social-link:hover i {
    transform: scale(1.2);
}

/* Instagram specific */
.restaurant-social-links .social-link[title="Instagram"]:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Facebook specific */
.restaurant-social-links .social-link[title="Facebook"]:hover {
    background: #1877f2;
    border-color: rgba(255, 255, 255, 0.3);
}

/* WhatsApp specific */
.restaurant-social-links .social-link[title="WhatsApp"]:hover {
    background: #25d366;
    border-color: rgba(255, 255, 255, 0.3);
}

/* Restaurant Info Cards */
.restaurant-info-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    align-items: center;
    padding: 0 0 15px;
    margin: 0 auto 10px;
    max-width: 520px;
    background: transparent;
    border-bottom: 1px solid var(--dark-border);
}

.restaurant-info-cards > div {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.2px;
    transition: color 0.3s ease;
}

.restaurant-info-cards > div:hover {
    color: var(--primary-color);
}

.restaurant-info-cards i {
    font-size: 0.8rem;
    color: var(--primary-color);
}

.restaurant-info-cards .clickable-info {
    transition: all 0.3s ease;
    -webkit-user-select: none;
    user-select: none;
}

.restaurant-info-cards .clickable-info:hover {
    color: var(--primary-color);
    transform: translateX(3px);
}

.restaurant-info-cards .clickable-info:active {
    transform: translateX(1px);
}

.restaurant-info-cards .info-separator {
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
    padding: 0;
    border: none;
    margin: 0;
}

/* Contact Cards */
.contact-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.clickable-contact-card {
    transition: all 0.3s ease;
}

.clickable-contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.2);
    border-color: var(--primary-color);
}

.clickable-contact-card:active {
    transform: translateY(-2px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 1.8rem;
}

.contact-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 8px 0;
}

.contact-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

/* Site Topbar */
.site-topbar {
    position: sticky;
    top: 0;
    z-index: 1200;
    background: var(--dark-bg);
    padding: 12px 0;
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
}

.site-logo-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--text-primary);
}

.site-logo-link img {
    height: 42px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

.site-logo-link:hover img {
    transform: scale(1.05);
}

/* Search Section */
.search-section {
    padding: 15px 0;
    background: transparent;
}

.search-wrapper {
    max-width: 520px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 0;
    padding: 0;
    transition: all 0.3s ease;
}

.search-wrapper:hover,
.search-wrapper:focus-within {
    border-color: var(--primary-color);
}

.search-wrapper i.bi-search {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 1.1rem;
    pointer-events: none;
    transition: color 0.3s ease;
}

.search-wrapper:focus-within i.bi-search {
    color: var(--primary-color);
}

.search-input {
    width: 100%;
    padding: 12px 40px 12px 44px;
    background: transparent;
    border: none;
    border-radius: 0;
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 400;
}

.search-input::placeholder {
    color: var(--text-muted);
}

.search-input:focus {
    outline: none;
}

/* Category Filters */
.category-filters-section {
    padding: 12px 0;
    background: var(--dark-bg);
    border-bottom: 1px solid var(--dark-border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.category-filters-scroll {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 4px 0;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

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

.category-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--dark-border);
    border-radius: 0;
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.category-filter-btn:hover {
    color: #ffffff;
    border-color: var(--primary-color);
    background: var(--primary-color);
}

.category-filter-btn.active {
    background: var(--primary-color);
    color: #ffffff;
    border-color: var(--primary-color);
}

.category-filter-btn i {
    font-size: 0.9rem;
}

/* Category Filter Buttons (for menu) */
.btn-category {
    background-color: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--dark-border);
    padding: 10px 22px;
    border-radius: 0;
    font-weight: 500;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    margin: 3px;
}

.btn-category:hover {
    background-color: var(--primary-color);
    color: #ffffff;
    border-color: var(--primary-color);
}

.btn-category.active {
    background-color: var(--primary-color);
    color: #ffffff;
    border-color: var(--primary-color);
}

.btn-category i {
    margin-right: 5px;
}

.menu-items-section {
    padding: 40px 0 80px;
}

/* Menu Card Styles for Restaurant Pages */
.menu-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 0;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.menu-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.menu-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 14px;
    border-radius: 0;
    font-size: 0.7rem;
    font-weight: 600;
    color: #ffffff;
    background: var(--primary-color);
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.menu-card-image {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--dark-card-hover);
}

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

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

.menu-card-content {
    padding: 14px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.menu-card-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 6px;
    line-height: 1.3;
}

.menu-card-description {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin: 0 0 10px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.menu-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.menu-card-price {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.menu-card-price .original-price {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

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

.menu-card-add-btn {
    width: 38px;
    height: 38px;
    border-radius: 0;
    border: none;
    background: var(--primary-color);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.menu-card-add-btn:hover {
    background: #000000;
    transform: scale(1.1);
}

.menu-card-add-btn i {
    font-size: 1rem;
}

.menu-card-placeholder {
    width: 100%;
    height: 100%;
    background: var(--dark-card-hover);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 3rem;
}

.discount-badge,
.popular-badge {
    background: var(--primary-color) !important;
}

/* Restaurant Page Mobile Responsive */
@media (max-width: 768px) {
    .site-topbar {
         }

    .site-logo-link img {
        height: 36px;
    }

    .restaurant-header-section {
        padding: 30px 0 25px;
    }

    .language-selector-wrapper {
        top: 15px;
        right: 15px;
    }

    .language-selector-btn {
        width: 44px;
        height: 44px;
    }

    .language-selector-btn .current-flag {
        font-size: 1.35rem;
        display: inline-block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .language-dropdown-menu {
        top: 52px;
        min-width: 150px;
        padding: 5px;
    }

    .language-item {
        padding: 9px 12px;
        font-size: 0.85rem;
        gap: 8px;
    }

    .language-item .flag-icon {
        font-size: 1.3rem;
    }

    .restaurant-logo-wrapper img {
        width: 85px;
        height: 85px;
    }

    .restaurant-name-header {
        font-size: 26px;
        margin-top: 18px;
    }

    .search-section {
        padding: 12px 0;
    }

    .search-wrapper {
        max-width: 100%;
        padding: 0;
    }

    .category-filters-section {
        padding: 10px 0;
    }

    .menu-items-section {
        padding: 30px 0 70px;
    }
}

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

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

    /* Restaurant Slider Small Mobile */
    .restaurant-slider {
        gap: 12px;
        animation: slideLeft 15s linear infinite;
    }

    .restaurant-logo-card {
        width: 80px;
    }

    .restaurant-logo-image {
        width: 80px;
        height: 80px;
        border-width: 2px;
    }

    .restaurant-logo-placeholder {
        font-size: 2rem;
    }

    .restaurant-slider-wrapper::before,
    .restaurant-slider-wrapper::after {
        width: 40px;
    }

    .header-inner {
        padding: 8px 0;
    }

    .navbar-logo img {
        max-height: 28px;
    }

    .header-right {
        gap: 6px;
    }

    .mobile-menu-toggle {
        width: 42px;
        height: 42px;
    }

    .hamburger-line {
        width: 20px;
    }

    .theme-toggle {
        width: 38px;
        height: 38px;
        font-size: 0.9rem;
    }

    .language-dropdown .dropdown-toggle {
        padding: 7px 9px;
        min-width: 70px;
        font-size: 0.72rem;
    }

    .lang-flag {
        width: 16px;
        height: 11px;
    }

    .mobile-nav {
        top: 65px;
        width: 280px;
        margin: 6px;
    }

    .mobile-nav-content {
        padding: 10px 0;
    }

    .mobile-nav-link {
        padding: 11px 16px;
        font-size: 0.88rem;
        margin: 0 6px;
        width: calc(100% - 12px);
    }

    .mobile-submenu {
        margin: 0 6px;
    }

    .mobile-submenu-item {
        padding: 9px 14px 9px 32px;
        font-size: 0.82rem;
        margin: 2px 6px;
    }

    .mobile-submenu-item::before {
        left: 16px;
    }

    .mobile-nav-divider {
        margin: 6px 12px;
    }

    .mobile-nav-cta {
        margin: 6px;
        padding: 11px 16px !important;
    }
    
    .hero-section {
        padding: 70px 0 40px;
    }
    
    .hero-title {
        font-size: 2.5rem;
        letter-spacing: -1.5px;
        margin-bottom: 20px;
    }
    
    .hero-label {
        font-size: 0.65rem;
        letter-spacing: 3px;
        margin-bottom: 20px;
    }

    .hero-description {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 30px;
    }
    
    .btn-hero {
        padding: 12px 22px;
        font-size: 0.75rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    .section-badge {
        font-size: 0.75rem;
        letter-spacing: 3px;
    }

    .services-section,
    .about-section,
    .menu-section {
        padding: 40px 0;
    }

    .service-card {
        padding: 25px 18px;
    }

    .service-card h4 {
        font-size: 1.1rem;
    }

    .service-card p {
        font-size: 0.8rem;
    }

    .modern-footer {
        padding: 50px 0 0;
    }

    .footer-main {
        gap: 35px;
        margin-bottom: 35px;
    }

    .why-choose-section {
        padding: 60px 0;
    }

    .why-choose-card {
        padding: 30px 24px;
    }

    .stats-section {
        margin-top: 50px;
        padding-top: 45px;
    }

    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 22px;
    }

    .stat-card {
        padding: 28px 22px;
    }

    .stat-icon {
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
    }

    .stat-value {
        font-size: 2.25rem;
    }

    .stat-suffix {
        font-size: 1.35rem;
    }

    .cta-section {
        padding: 60px 0;
    }
    
    .restaurant-header-section {
        padding: 20px 0 18px;
    }

    .language-selector-wrapper {
        top: 10px;
        right: 10px;
    }

    .language-selector-btn {
        width: 40px;
        height: 40px;
    }

    .language-selector-btn .current-flag {
        font-size: 1.25rem;
        display: inline-block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .language-dropdown-menu {
        top: 48px;
        min-width: 140px;
        padding: 4px;
    }

    .language-item {
        padding: 8px 10px;
        font-size: 0.8rem;
        gap: 8px;
    }

    .language-item .flag-icon {
        font-size: 1.15rem;
    }
    
    .restaurant-logo-wrapper img {
        width: 80px;
        height: 80px;
    }
    
    .restaurant-name-header {
        font-size: 22px;
        margin-top: 14px;
    }
    
    .restaurant-social-links {
        gap: 12px;
        margin-top: 16px;
    }
    
    .restaurant-social-links .social-link {
        width: 38px;
        height: 38px;
        font-size: 18px;
    }
    
    .restaurant-info-cards {
        gap: 8px;
        padding: 0 0 10px;
        margin-bottom: 10px;
        max-width: 100%;
    }
    
    .restaurant-info-cards > div {
        font-size: 0.65rem;
        gap: 4px;
    }

    .restaurant-info-cards i {
        font-size: 0.7rem;
    }
    
    .search-wrapper {
        margin: 0 10px;
    }

    .search-input {
        padding: 10px 35px 10px 40px;
        font-size: 0.85rem;
    }

    .search-wrapper i.bi-search {
        left: 14px;
        font-size: 1rem;
    }
    
    .category-filters-scroll {
        padding: 6px 10px;
        gap: 6px;
    }
    
    .category-filter-btn {
        padding: 7px 14px;
        font-size: 0.75rem;
    }
    
    .menu-items-section {
        padding: 20px 0 60px;
    }
    
    .menu-card-content {
        padding: 12px;
    }
    
    .menu-card-title {
        font-size: 0.85rem;
        margin-bottom: 5px;
    }
    
    .menu-card-description {
        font-size: 0.7rem;
        margin-bottom: 8px;
    }
    
    .menu-card-price .price {
        font-size: 0.95rem;
    }

    .menu-card-price .original-price {
        font-size: 0.7rem;
    }
    
    .menu-card-add-btn {
        width: 34px;
        height: 34px;
    }

    .menu-card-add-btn i {
        font-size: 0.9rem;
    }
    
    .menu-card-badge {
        padding: 4px 8px;
        font-size: 0.55rem;
        top: 8px;
        left: 8px;
    }
    
    .about-visual {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .visual-card {
        padding: 20px 12px;
    }

    .visual-card i {
        font-size: 2rem;
    }

    .visual-card h4 {
        font-size: 0.85rem;
    }
    
    /* Small Mobile Footer - Even More Compact */
    .modern-footer {
        padding: 20px 0 0;
    }

    .footer-about {
        padding-bottom: 15px;
        margin-bottom: 15px;
    }

    .footer-logo img {
        max-height: 24px;
    }

    .footer-description {
        font-size: 0.75rem;
        max-width: 100%;
        margin-bottom: 12px;
    }

    .footer-social {
        gap: 8px;
    }

    .social-link {
        width: 36px;
        height: 36px;
        font-size: 0.95rem;
    }

    .footer-column {
        padding: 12px 0;
    }

    .footer-column:last-of-type {
        padding-bottom: 15px;
    }

    .footer-title {
        font-size: 0.85rem;
    }

    .footer-column:not(.footer-about).active .footer-links,
    .footer-column:not(.footer-about).active .footer-contact {
        margin-top: 10px;
    }

    .footer-links li a {
        font-size: 0.8rem;
        padding: 7px 0;
    }

    .footer-contact li {
        font-size: 0.8rem;
        gap: 8px;
    }

    .footer-contact li i {
        font-size: 0.85rem;
    }

    .footer-bottom {
        padding: 15px 0 12px;
        margin-top: 8px;
    }

    .footer-copyright {
        font-size: 0.7rem;
    }

    .footer-bottom-links {
        font-size: 0.7rem;
        gap: 8px;
    }

    .why-choose-section {
        padding: 40px 0;
    }

    .why-choose-grid {
        gap: 12px;
        margin-top: 30px;
    }

    .why-choose-card {
        padding: 18px 12px;
    }

    .why-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
        margin-bottom: 10px;
        border-radius: 12px;
    }

    .why-choose-card h4 {
        font-size: 0.9rem;
        margin-bottom: 6px;
    }

    .why-choose-card p {
        font-size: 0.75rem;
        line-height: 1.4;
    }

    .stats-section {
        margin-top: 35px;
        padding-top: 35px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .stat-card {
        padding: 15px 10px;
    }

    .stat-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
        margin-bottom: 8px;
    }

    .stat-value {
        font-size: 1.4rem;
    }

    .stat-suffix {
        font-size: 0.9rem;
    }

    .stat-card h4 {
        font-size: 0.75rem;
        margin-top: 4px;
    }

    .cta-section {
        padding: 50px 0;
    }

    .cta-text h2 {
        font-size: 1.6rem;
    }

    /* WhatsApp Chatbot Mobile */
    .whatsapp-chatbot {
        bottom: 15px;
        right: 15px;
    }

    .chatbot-button {
        width: 56px;
        height: 56px;
        font-size: 1.4rem;
    }

    .chatbot-message {
        width: 280px;
        bottom: 75px;
    }

    .chatbot-body {
        padding: 16px;
    }

    .chatbot-bubble {
        padding: 12px 14px;
        margin-bottom: 12px;
    }

    .chatbot-bubble p {
        font-size: 0.9rem;
    }

    /* WhatsApp Chatbot Mobile */
    .chatbot-message {
        width: calc(100vw - 30px);
        max-width: 320px;
        height: calc(100vh - 100px);
        max-height: 500px;
        bottom: 75px;
        right: 15px;
    }

    .chatbot-header {
        padding: 12px 14px;
    }

    .chatbot-avatar {
        width: 36px;
        height: 36px;
        font-size: 1rem;
        overflow: hidden;
        flex-shrink: 0;
        position: relative;
    }

    .chatbot-name {
        font-size: 0.9rem;
    }

    .chatbot-status {
        font-size: 0.7rem;
    }

    .chatbot-body {
        padding: 12px;
    }

    .chatbot-bubble {
        padding: 10px 14px;
        font-size: 0.85rem;
        max-width: 80%;
    }

    .chatbot-input-container {
        padding: 10px 12px;
    }

    .chatbot-input {
        padding: 8px 14px;
        font-size: 0.85rem;
    }

    .chatbot-send {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }

    .cta-text p {
        font-size: 0.95rem;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        padding: 14px 24px;
        font-size: 0.9rem;
    }
    
    .cart-button-container {
        bottom: 30px;
        padding: 8px;
    }
    
    .cart-button {
        padding: 12px 20px;
        font-size: 0.8rem;
        gap: 8px;
    }

    .cart-button i {
        font-size: 1.1rem;
    }

    .cart-count {
        width: 22px;
        height: 22px;
        font-size: 0.8rem;
    }

    .cart-button-text {
        font-size: 0.8rem;
    }

    .cart-panel {
        height: 88vh;
        max-height: none;
    }

    .cart-header {
        padding: 16px;
    }

    .cart-title {
        font-size: 1.3rem;
    }

    .cart-items {
        padding: 12px;
    }

    .cart-item {
        padding: 12px;
        margin-bottom: 0;
    }

    .cart-item-name {
        font-size: 0.9rem;
    }

    .cart-item-price {
        font-size: 0.85rem;
    }

    .cart-qty-btn {
        width: 28px;
        height: 28px;
        font-size: 0.85rem;
    }

    .cart-item-qty {
        font-size: 0.9rem;
        min-width: 25px;
    }

    .cart-footer {
        padding: 16px;
    }

    .cart-total {
        font-size: 1.1rem;
    }

    .cart-total-price {
        font-size: 1.3rem;
    }

    .btn-checkout {
        padding: 14px;
        font-size: 0.9rem;
    }
    
    .toast-notification {
        right: 10px;
        left: 10px;
        width: auto;
        padding: 12px 16px;
        font-size: 0.85rem;
    }

    .cart-notification {
        right: 10px;
        left: 10px;
        width: auto;
        padding: 12px 18px;
        font-size: 0.85rem;
    }
}

/* Service Detail Pages */
.service-detail-hero {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-card) 100%);
    padding: 140px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-detail-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(108, 92, 231, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

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

.service-icon-large {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.15) 0%, rgba(67, 56, 202, 0.15) 100%);
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: var(--primary-color);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.service-detail-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.service-detail-hero .lead {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.service-details-section {
    padding: 80px 0;
    background: var(--dark-bg);
}

.service-content h2 {
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.service-content h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 40px 0 20px;
}

.service-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.feature-highlight {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 16px;
    padding: 40px;
    margin: 40px 0;
}

.feature-highlight h3 {
    margin-top: 0;
    margin-bottom: 30px;
}

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

.feature-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--dark-border);
}

.feature-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.feature-list i {
    font-size: 1.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 3px;
}

.feature-list strong {
    display: block;
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.feature-list p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

@media (max-width: 992px) {
    .steps-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 24px;
    }
}

@media (max-width: 576px) {
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.step-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(108, 92, 231, 0.2);
}

.step-number {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #4338ca 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
}

.step-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.step-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

.service-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 25px;
}

.sidebar-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.sidebar-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--dark-bg);
    border: 1px solid var(--dark-border);
    border-radius: 12px;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.sidebar-link:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: translateX(5px);
}

.sidebar-link i:first-child {
    font-size: 1.3rem;
}

.sidebar-link span {
    flex: 1;
    font-weight: 500;
}

.sidebar-link i:last-child {
    font-size: 1rem;
    opacity: 0.7;
}

.cta-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, #4338ca 100%);
    border: none;
}

.cta-card h4,
.cta-card p {
    color: white;
}

.cta-card .btn {
    background: white;
    color: var(--primary-color);
    border: none;
    font-weight: 600;
}

.cta-card .btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.alert {
    display: flex;
    gap: 15px;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid;
}

.alert-info {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
    color: var(--text-primary);
}

.alert i {
    font-size: 1.3rem;
    color: #3b82f6;
    flex-shrink: 0;
}

.alert strong {
    color: var(--text-primary);
}

.comparison-section {
    margin-top: 50px;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

@media (max-width: 992px) {
    .comparison-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}

.comparison-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.4s ease;
}

.comparison-card.featured {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.05) 0%, rgba(67, 56, 202, 0.05) 100%);
}

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

.comparison-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--dark-border);
}

.comparison-header i {
    font-size: 2rem;
    color: var(--primary-color);
}

.comparison-header h4 {
    flex: 1;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.comparison-header .badge {
    background: var(--primary-color);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.comparison-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comparison-card li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: var(--text-secondary);
}

.comparison-card li:last-child {
    margin-bottom: 0;
}

.comparison-card li i {
    font-size: 1.1rem;
    color: var(--primary-color);
}

@media (max-width: 991px) {
    .service-sidebar {
        position: static;
        top: 0;
        margin-top: 50px;
    }
}

@media (max-width: 768px) {
    .service-detail-hero {
        padding: 100px 0 50px;
    }

    .service-detail-hero h1 {
        font-size: 2.2rem;
    }

    .service-detail-hero .lead {
        font-size: 1rem;
        padding: 0 15px;
    }

    .service-icon-large {
        width: 90px;
        height: 90px;
        font-size: 2.5rem;
    }

    .service-details-section {
        padding: 60px 0;
    }

    .service-content h2 {
        font-size: 1.8rem;
    }

    .service-content h3 {
        font-size: 1.5rem;
        margin: 30px 0 15px;
    }

    .service-content p {
        font-size: 1rem;
    }

    .feature-highlight {
        padding: 25px;
        margin: 30px 0;
    }

    .feature-list li {
        gap: 15px;
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .feature-list i {
        font-size: 1.3rem;
    }

    .feature-list strong {
        font-size: 1rem;
    }

    .feature-list p {
        font-size: 0.9rem;
    }

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

    .step-card {
        padding: 25px 20px;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .step-card h4 {
        font-size: 1.1rem;
    }

    .step-card p {
        font-size: 0.9rem;
    }

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

    .comparison-card {
        padding: 25px;
    }

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

@media (max-width: 576px) {
    .service-detail-hero {
        padding: 90px 0 40px;
    }

    .service-detail-hero h1 {
        font-size: 1.8rem;
    }

    .service-detail-hero .lead {
        font-size: 0.95rem;
    }

    .service-icon-large {
        width: 80px;
        height: 80px;
        font-size: 2.2rem;
    }

    .service-details-section {
        padding: 40px 0;
    }

    .service-content h2 {
        font-size: 1.5rem;
    }

    .service-content h3 {
        font-size: 1.3rem;
    }

    .service-content p {
        font-size: 0.95rem;
    }

    .feature-highlight {
        padding: 20px;
    }

    .step-card {
        padding: 20px 16px;
    }

    .comparison-card {
        padding: 20px;
    }

    .alert {
        padding: 16px;
        gap: 12px;
    }

    .alert i {
        font-size: 1.1rem;
    }

    .site-topbar {
       }

    .site-logo-link img {
        height: 32px;
    }
}

/* Additional Mobile Adjustments */
@media (max-width: 768px) {
    .cart-panel {
        height: 85vh;
    }
    
    .cart-item {
        flex-direction: row;
        align-items: center;
        gap: 10px;
        padding: 12px;
    }

    .cart-item-info {
        gap: 10px;
    }

    .cart-item-image {
        font-size: 1.5rem;
    }
    
    .cart-item-controls {
        flex-shrink: 0;
    }

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

@media (max-width: 480px) {
    .cart-item {
        flex-wrap: wrap;
        gap: 12px;
    }

    .cart-item-info {
        width: 100%;
    }

    .cart-item-controls {
        width: 100%;
        justify-content: space-between;
    }
}

/* Product Modal Styles - Minimalist & Clean */
.product-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 20px;
}

.product-modal-overlay.active {
    display: flex;
    opacity: 1;
}

.product-modal-content {
    background: var(--dark-card);
    border-radius: 20px;
    max-width: 480px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    position: relative;
    transform: scale(0.95) translateY(10px);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.product-modal-overlay.active .product-modal-content {
    transform: scale(1) translateY(0);
}

.product-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    background: rgba(0, 0, 0, 0.6);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    z-index: 10;
    transition: all 0.2s ease;
}

.product-modal-close:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

.product-modal-body {
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    padding: 40px;
    text-align: center;
}

.product-modal-body::-webkit-scrollbar {
    width: 5px;
}

.product-modal-body::-webkit-scrollbar-track {
    background: transparent;
}

.product-modal-body::-webkit-scrollbar-thumb {
    background: var(--dark-border);
    border-radius: 3px;
}

.product-modal-image {
    width: 100%;
    max-width: 320px;
    height: 320px;
    margin: 0 auto 28px;
    overflow: hidden;
    background: var(--dark-bg);
    border-radius: 16px;
    border: 1px solid var(--dark-border);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

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

.product-modal-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark-bg);
    color: var(--text-muted);
    font-size: 4rem;
    opacity: 0.2;
}

.product-modal-info {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-modal-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 16px 0;
    letter-spacing: -0.5px;
    line-height: 1.3;
}

.product-modal-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0 0 24px 0;
    opacity: 0.8;
    max-width: 90%;
}

.product-modal-price-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.product-modal-price {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: -1px;
}

.product-modal-price-old {
    font-size: 1.25rem;
    color: var(--text-muted);
    text-decoration: line-through;
    opacity: 0.5;
}

.product-modal-price-new {
    font-size: 2.25rem;
    font-weight: 800;
    color: #10b981;
    letter-spacing: -1px;
}

.product-modal-discount-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    background: #ef4444;
    color: white;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-modal-category {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--dark-bg);
    border: 1px solid var(--dark-border);
    border-radius: 10px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

.product-modal-category i {
    color: var(--primary-color);
    font-size: 1rem;
}

@media (max-width: 768px) {
    .product-modal-content {
        max-width: 95%;
        border-radius: 16px;
    }

    .product-modal-body {
        padding: 32px 24px;
    }

    .product-modal-image {
        max-width: 280px;
        height: 280px;
        margin-bottom: 24px;
    }

    .product-modal-title {
        font-size: 1.5rem;
    }

    .product-modal-description {
        font-size: 0.9rem;
    }

    .product-modal-price {
        font-size: 2rem;
    }

    .product-modal-price-new {
        font-size: 2rem;
    }

    .product-modal-price-old {
        font-size: 1.1rem;
    }

    .product-modal-close {
        width: 32px;
        height: 32px;
        top: 12px;
        right: 12px;
        font-size: 18px;
    }

    .product-modal-category {
        font-size: 0.85rem;
        padding: 8px 16px;
    }
}

/* Inactive Restaurant Message */
#inactiveRestaurantMessage {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: #0f172a;
    z-index: 1000;
}

.inactive-message-container {
    text-align: center;
    max-width: 500px;
    width: 100%;
}

.maintenance-animation {
    margin-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    gap: 1.5rem;
}

.exclamation-mark {
    position: relative;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: exclamationFloat 3s ease-in-out infinite;
}

.exclamation-text {
    font-size: 5rem;
    font-weight: 900;
    color: #ff576c;
    line-height: 1;
    position: relative;
    animation: exclamationPulse 1.5s ease-in-out infinite;
    text-shadow: 0 0 20px rgba(255, 87, 108, 0.5),
                 0 0 40px rgba(255, 87, 108, 0.3),
                 0 0 60px rgba(255, 87, 108, 0.2);
}

.exclamation-text::before {
    content: '!';
    position: absolute;
    top: 0;
    left: 0;
    color: rgba(255, 87, 108, 0.3);
    animation: exclamationShadow 1.5s ease-in-out infinite;
    z-index: -1;
}

@keyframes exclamationFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes exclamationPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.15);
        opacity: 0.9;
    }
}

@keyframes exclamationShadow {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(3px, 3px) scale(1.1);
        opacity: 0.5;
    }
}

.restaurant-logo-circle {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 87, 108, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    z-index: 10;
}

.restaurant-logo-circle img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

.inactive-message-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
}

.inactive-message-text {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

@media (max-width: 768px) {
    #inactiveRestaurantMessage {
        top: 70px;
        height: calc(100vh - 70px);
        padding: 1.5rem;
    }
    
    .exclamation-mark {
        width: 80px;
        height: 80px;
    }
    
    .exclamation-text {
        font-size: 4rem;
    }
    
    .restaurant-logo-circle {
        width: 130px;
        height: 130px;
        padding: 12px;
    }
    
    .maintenance-animation {
        gap: 1.25rem;
    }
    
    .inactive-message-title {
        font-size: 1.5rem;
    }
    
    .inactive-message-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    #inactiveRestaurantMessage {
        top: 60px;
        height: calc(100vh - 60px);
    }
    
    .exclamation-mark {
        width: 70px;
        height: 70px;
    }
    
    .exclamation-text {
        font-size: 3.5rem;
    }
    
    .restaurant-logo-circle {
        width: 110px;
        height: 110px;
        padding: 11px;
    }
    
    .maintenance-animation {
        gap: 1rem;
    }
    
    .inactive-message-title {
        font-size: 1.25rem;
    }
    
    .inactive-message-text {
        font-size: 0.95rem;
    }
}

/* ================================
   RESTAURANT FOOTER STYLES
   ================================ */

.restaurant-footer {
    background: var(--dark-card);
    border-top: 1px solid var(--dark-border);
    padding: 30px 0;
    margin-top: 60px;
    position: relative;
}

.restaurant-footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.restaurant-footer-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.restaurant-footer-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.restaurant-footer-logo:hover {
    opacity: 0.8;
}

.restaurant-footer-logo img {
    max-height: 35px;
    width: auto;
    height: auto;
}

.restaurant-footer-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.6;
}

.restaurant-footer-right {
    display: flex;
    align-items: center;
}

.restaurant-footer-social {
    display: flex;
    gap: 12px;
    align-items: center;
}

.restaurant-social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--dark-border);
    border-radius: 8px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    background: transparent;
}

.restaurant-social-link:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* Restaurant Footer Responsive */
@media (max-width: 768px) {
    .restaurant-footer {
        padding: 25px 0;
        margin-top: 40px;
    }
    
    .restaurant-footer-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .restaurant-footer-left {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .restaurant-footer-text {
        font-size: 0.85rem;
    }
    
    .restaurant-social-link {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .restaurant-footer {
        padding: 20px 0;
        margin-top: 30px;
    }
    
    .restaurant-footer-logo img {
        max-height: 30px;
    }
    
    .restaurant-footer-text {
        font-size: 0.8rem;
    }
    
    .restaurant-footer-social {
        gap: 10px;
    }
    
    .restaurant-social-link {
        width: 36px;
        height: 36px;
        font-size: 0.95rem;
    }
}

