﻿/* ============================================
   GLOBAL STYLES & RESET
   ============================================ */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --purple-light: #8176AF;
    --purple-dark: #5D4C86;
    --orange-light: #ED751B;
    --orange-dark: #C44B16;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f5f5f5;
}

body, html {
    overflow-x: hidden;
    max-width: 100%;
}
    body.sidebar-open {
        overflow: hidden;
    }


/* ============================================
   UTILITY CLASSES - GRADIENT SECTIONS
   ============================================ */

.section-purple {
    background: linear-gradient(135deg, var(--purple-light), var(--purple-dark));
    color: white;
    padding: 4rem 0;
}

.section-orange {
    background: linear-gradient(135deg, var(--orange-light), var(--orange-dark));
    color: white;
    padding: 4rem 0;
}

.section-purple-orange-light {
    background: linear-gradient(135deg, var(--purple-light), var(--orange-light));
    color: white;
    padding: 4rem 0;
}

.section-orange-purple-light {
    background: linear-gradient(135deg, var(--orange-light), var(--purple-light));
    color: white;
    padding: 4rem 0;
}

.section-orange-purple-dark {
    background: linear-gradient(135deg, var(--orange-dark), var(--purple-dark));
    color: white;
    padding: 4rem 0;
}

.section-purple-orange-dark {
    background: linear-gradient(135deg, var(--purple-dark), var(--orange-dark));
    color: white;
    padding: 4rem 0;
}

.section-orange-purple-dark-blended {
    background: linear-gradient(135deg, var(--orange-dark), transparent), linear-gradient(225deg, var(--purple-dark), transparent);
    background-blend-mode: screen;
    color: white;
    padding: 4rem 0;
}

.section-orange-purple-light-blended {
    background: linear-gradient(135deg, var(--orange-light), transparent), linear-gradient(225deg, var(--purple-light), transparent);
    background-blend-mode: screen;
    color: white;
}

.section-purple-orange-light-blended {
    background: linear-gradient(135deg, var(--purple-light), transparent), linear-gradient(225deg, var(--orange-light), transparent);
    background-blend-mode: screen;
    color: white;
}


/* ============================================
   TOP BAR NAVIGATION
   ============================================ */
.navbar-wrapper {
    position: sticky;
    top: 0;
    z-index: 1030;
    width: 100%;
}

.navbar-top {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 40px;
    display: flex;
    justify-content: flex-end;
    gap: 30px;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-right-group {
    display: flex;
    gap: 30px;
    align-items: center;
}

.cart-section,
.culture-section {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    cursor: pointer;
}

    .cart-section a,
    .culture-section a {
        color: white;
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 8px;
        transition: all 0.3s ease;
    }

        .cart-section a:hover,
        .culture-section a:hover {
            opacity: 0.8;
        }

.cart-badge {
    background: #ff4757;
    color: white;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

.culture-dropdown select {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 6px 10px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

    .culture-dropdown select:hover {
        background: rgba(255, 255, 255, 0.3);
    }

    .culture-dropdown select option {
        background: #333;
        color: white;
    }


/* ============================================
   CUSTOM NAVBAR (ISOLATED FROM BOOTSTRAP)
   ============================================ */

.custom-navbar * {
    box-sizing: border-box;
}

.custom-navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /*position: sticky;
    top: 0;*/
    position: static;
    z-index: 1000;
}

/* Navbar Left Section */
.custom-nav-left {
    display: flex;
    align-items: center;
    gap: 50px;
}

.navbar-sidebar-toggle {
    display: none;
}

.sidebar-nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #667eea;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 6px;
    border: none;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-right: 15px;
}

    .sidebar-nav-toggle:hover {
        background: #764ba2;
        transform: scale(1.05);
    }

.custom-logo-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-size: 24px;
    font-weight: bold;
    color: #667eea;
}

    .custom-logo-brand i {
        font-size: 28px;
    }

    .custom-logo-brand img {
        height: 40px;
        width: auto;
        border-radius: 8px;
    }

    .custom-logo-brand .brand-event,
    .brand-event {
        color: #ED751B;
        font-weight: 600;
    }

    .custom-logo-brand .brand-allsky,
    .brand-allsky {
        color: #8176AF;
        font-weight: 600;
    }

/* Navbar Menu */
.custom-nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.custom-nav-link,
.custom-dropdown-toggle {
    color: #333;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    background: none !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

    .custom-nav-link:hover,
    .custom-dropdown-toggle:hover {
        color: #667eea;
        background: none !important;
    }

    .custom-nav-link::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background: #667eea;
        transition: width 0.3s ease;
    }

    .custom-nav-link:hover::after {
        width: 100%;
    }

/* Navbar Items and Dropdown */
.custom-nav-item {
    position: relative;
    list-style: none;
}

.custom-dropdown-toggle,
.custom-dropdown-link,
.custom-nav-link {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    gap: 0.5rem;
}

    .custom-dropdown-toggle::after {
        content: '\f078';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        font-size: 11px;
        margin-left: 6px;
        border: none !important;
        vertical-align: baseline !important;
        position: static;
        width: auto;
        height: auto;
        background: none;
    }

    .custom-dropdown-toggle:hover::after {
        transform: rotate(180deg);
    }

.custom-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    border-radius: 6px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    margin-top: 10px;
    z-index: 1001;
    border: none !important;
    padding: 0 !important;
    display: block !important;
}

.custom-nav-item:hover .custom-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.custom-dropdown-link {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
    background: none !important;
    margin: 0 !important;
}

    .custom-dropdown-link:last-child {
        border-bottom: none;
    }

    .custom-dropdown-link:hover {
        background: #f9f9f9 !important;
        color: #667eea !important;
        padding-left: 25px;
    }

    .custom-dropdown-link::after {
        display: none;
    }

.custom-dropdown-divider {
    height: 1px;
    background: #f0f0f0;
    margin: 8px 0;
}

/* Navbar Right Section */
.custom-nav-right {
    display: flex;
    gap: 15px;
    align-items: center;
}

    .custom-nav-right a {
        text-decoration: none;
        padding: 8px 16px;
        border-radius: 4px;
        font-size: 14px;
        font-weight: 500;
        transition: all 0.3s ease;
    }

    /* User Dropdown in Nav Right */
    .custom-nav-right .custom-nav-item {
        position: relative;
    }

        .custom-nav-right .custom-nav-item .custom-dropdown-menu {
            right: -5px;
            left: auto;
        }

    .custom-nav-right .custom-dropdown-toggle {
        display: flex;
        align-items: center;
        padding: 8px 12px !important;
        border: 2px solid #667eea;
        border-radius: 4px;
        color: #667eea;
        text-decoration: none;
        transition: all 0.3s ease;
        margin-right: -5px;
    }

        .custom-nav-right .custom-dropdown-toggle:hover {
            background: #667eea;
            color: white;
        }

/* Login/Register Buttons */
.custom-login {
    color: #667eea;
    border: 2px solid #667eea;
    background: none !important;
}

    .custom-login:hover {
        background: #667eea !important;
        color: white !important;
    }

.custom-register {
    background: #667eea;
    color: white;
    border: 2px solid #667eea;
}

    .custom-register:hover {
        background: #764ba2 !important;
        border-color: #764ba2 !important;
        color: white !important;
    }

/* Avatar */
.avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #667eea;
    color: white;
    border-radius: 50%;
    font-weight: 600;
    font-size: 14px;
}

    .avatar.small {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }

/* Special Dropdown Link Colors */
.custom-dropdown-link.text-warning {
    color: #ffc107 !important;
}

.custom-dropdown-link.text-danger {
    color: #dc3545 !important;
}

    .custom-dropdown-link.text-warning:hover,
    .custom-dropdown-link.text-danger:hover {
        background: #f9f9f9 !important;
    }

/* Hamburger Menu */
.custom-hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

    .custom-hamburger span {
        width: 25px;
        height: 3px;
        background: #333;
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    .custom-hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(10px, 10px);
    }

    .custom-hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .custom-hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }


/* ============================================
   MOBILE MENU
   ============================================ */

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    gap: 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-top: 2px solid #667eea;
    z-index: 999;
}

    .mobile-menu.active {
        display: flex;
    }

    .mobile-menu a {
        padding: 15px 40px;
        color: #333;
        text-decoration: none;
        font-size: 15px;
        border-bottom: 1px solid #f0f0f0;
        transition: all 0.3s ease;
    }

        .mobile-menu a:hover {
            background: #f9f9f9;
            color: #667eea;
            padding-left: 50px;
        }

.mobile-submenu {
    padding-left: 60px !important;
    background: #f9f9f9 !important;
    font-size: 13px !important;
}

/* Mobile Auth Buttons */
.mobile-menu .auth-buttons {
    display: flex;
    gap: 5px;
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    justify-content: flex-end;
    align-items: stretch;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    min-height: 60px;
}

    .mobile-menu .auth-buttons a {
        flex: 1;
        border: none;
        padding: 10px;
        text-align: center;
    }

        .mobile-menu .auth-buttons a.custom-login,
        .mobile-menu .auth-buttons a.custom-register {
            flex: 1;
            border: none;
            padding: 12px 10px;
            text-align: center;
            color: white;
            text-decoration: none;
            font-size: 14px;
            font-weight: 600;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
        }

        .mobile-menu .auth-buttons a.custom-login {
            background: rgba(255, 255, 255, 0.1);
            border-right: 1px solid rgba(255, 255, 255, 0.2);
        }

            .mobile-menu .auth-buttons a.custom-login:hover {
                background: rgba(255, 255, 255, 0.2);
            }

        .mobile-menu .auth-buttons a.custom-register {
            background: rgba(255, 255, 255, 0.15);
        }

            .mobile-menu .auth-buttons a.custom-register:hover {
                background: rgba(255, 255, 255, 0.25);
            }

/* Mobile User Section */
.mobile-user-section {
    display: flex;
    flex-direction: column;
    width: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.mobile-user-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.mobile-user-name {
    color: white;
    font-weight: 600;
    font-size: 15px;
}

.mobile-user-header .avatar {
    width: 36px;
    height: 36px;
    font-size: 14px;
}

    .mobile-user-header .avatar.small {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

/* Mobile User Links */
.mobile-user-links {
    display: flex;
    flex-direction: column;
    background: white;
    border-bottom: 2px solid #f0f0f0;
    width: 100%;
    position: relative;
}

.mobile-user-link {
    display: flex !important;
    align-items: center;
    gap: 12px;
    padding: 14px 20px !important;
    color: #333 !important;
    text-decoration: none !important;
    font-size: 14px;
    font-weight: 500;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    background: white !important;
}

    .mobile-user-link:last-child {
        border-bottom: none;
    }

    .mobile-user-link i {
        width: 20px;
        font-size: 16px;
        text-align: center;
    }

        .mobile-user-link i.bi {
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

    .mobile-user-link span {
        flex: 1;
    }

    .mobile-user-link:hover {
        background: #f9f9f9 !important;
        color: #667eea !important;
        padding-left: 30px !important;
    }

    .mobile-user-link.text-warning {
        color: #ffc107 !important;
    }

        .mobile-user-link.text-warning:hover {
            color: #e0a800 !important;
        }

    .mobile-user-link.text-danger {
        color: #dc3545 !important;
    }

        .mobile-user-link.text-danger:hover {
            color: #c82333 !important;
        }

.mobile-divider {
    height: 1px;
    background: #f0f0f0;
    margin: 4px 0;
}

.mobile-user-section,
.mobile-user-links,
.mobile-user-link {
    transition: all 0.3s ease;
}


/* ============================================
   SIDEBAR NAVIGATION
   ============================================ */

.user-sidebar {
    width: 280px;
    background: white;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    height: calc(100vh - 120px);
    position: fixed;
    left: 0;
    top: 120px;
    z-index: 1001;
    overflow-y: auto;
    transition: transform 0.3s ease;
    transform: translateX(0);
}

/* Sidebar Header */
.sidebar-header {
    padding: 25px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.3);
    object-fit: cover;
}

.user-info {
    flex: 1;
}

.user-name {
    font-size: 18px;
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
}

.user-role {
    font-size: 12px;
    opacity: 0.9;
    display: block;
}

/* Sidebar Menu */
.sidebar-menu {
    padding: 20px 0;
    scrollbar-width: thin;
    scrollbar-color: #c1c1c1 transparent;
}

    .sidebar-menu::-webkit-scrollbar {
        width: 4px;
    }

    .sidebar-menu::-webkit-scrollbar-track {
        background: transparent;
    }

    .sidebar-menu::-webkit-scrollbar-thumb {
        background: #c1c1c1;
        border-radius: 2px;
    }

        .sidebar-menu::-webkit-scrollbar-thumb:hover {
            background: #a8a8a8;
        }

/* Sidebar Items */
.sidebar-item {
    display: flex;
    align-items: center;
    padding: 15px 25px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
    position: relative;
}

    .sidebar-item:hover {
        background: #f8f9fa;
        color: #667eea;
        border-left-color: #667eea;
    }

    .sidebar-item i {
        width: 20px;
        margin-right: 12px;
        font-size: 16px;
    }

    .sidebar-item .badge {
        background: #ff4757;
        color: white;
        border-radius: 12px;
        padding: 2px 8px;
        font-size: 11px;
        font-weight: 600;
        margin-left: auto;
    }

    .sidebar-item.callCenter {
        border-left-color: #ED751B;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
    }

        .sidebar-item.callCenter:hover {
            border-left-color: #8176AF;
            background: #ED751B;
            color: white;
        }

.logout-btn {
    color: #ff4757;
    border-top: 1px solid #f0f0f0;
    margin-top: 10px;
}

    .logout-btn:hover {
        color: #ff3838;
        background: #fff5f5;
    }

/* Sidebar Accordion */
.sidebar-accordion {
    border-bottom: 1px solid #f0f0f0;
}

.sidebar-accordion-header {
    display: flex;
    align-items: center;
    padding: 15px 25px 15px 25px;
    color: #333;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
    user-select: none;
}

    .sidebar-accordion-header:hover {
        background: #f8f9fa;
        color: #667eea;
    }

    .sidebar-accordion-header.active {
        background: #f8f9fa;
        color: #667eea;
        border-left-color: #667eea;
    }

    .sidebar-accordion-header i:first-child {
        width: 20px;
        margin-right: 12px;
        font-size: 16px;
    }

    .sidebar-accordion-header span {
        flex: 1;
        font-weight: 500;
    }

.accordion-arrow {
    transition: transform 0.3s ease;
    font-size: 12px;
    margin-left: auto;
}

.sidebar-accordion-header.active .accordion-arrow {
    transform: rotate(180deg);
}

.sidebar-accordion-header .badge {
    background: #ff4757;
    color: white;
    border-radius: 12px;
    padding: 2px 8px;
    font-size: 11px;
    font-weight: 600;
    margin-left: 8px;
}

/* Sidebar Accordion Content */
.sidebar-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #fafafa;
}

    .sidebar-accordion-content.expanded {
        max-height: 500px;
    }

/* Sidebar Subitems */
.sidebar-subitem {
    display: block;
    padding: 12px 25px 12px 25px;
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    position: relative;
}

    .sidebar-subitem:hover {
        background: #f0f0f0;
        color: #667eea;
        padding-left: 60px;
    }

    .sidebar-subitem::before {
        display: none;
    }

    .sidebar-subitem:hover::before {
        background: #667eea;
        transform: translateY(-50%) scale(1.2);
    }

    .sidebar-subitem.active {
        color: #667eea;
        background: #f0f0f0;
        border-left-color: #667eea;
    }

        .sidebar-subitem.active::before {
            background: #667eea;
            transform: translateY(-50%) scale(1.2);
        }

/* Nested Accordion Support */
.sidebar-accordion .sidebar-accordion {
    border-bottom: none;
}

.sidebar-accordion .sidebar-accordion-header {
    padding-left: 25px;
    font-size: 14px;
}

.sidebar-accordion .sidebar-subitem {
    padding-left: 45px;
}

    .sidebar-accordion .sidebar-subitem:hover {
        padding-left: 50px;
    }

/* Sidebar Overlay */
.sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

    .sidebar-overlay.active {
        display: block;
        opacity: 1;
    }

/* Sidebar Mobile Toggle */
.sidebar-mobile-toggle {
    display: none;
    position: fixed;
    top: 50px;
    right: 80px;
    background: #667eea;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    font-size: 20px;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
}

    .sidebar-mobile-toggle:hover {
        background: #764ba2;
        transform: scale(1.1);
    }

/* Sidebar Mobile Header */
.sidebar-mobile-header {
    display: none;
    padding: 15px 20px;
    background: #667eea;
    color: white;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

    .sidebar-mobile-header span {
        font-weight: 600;
        font-size: 18px;
    }

.sidebar-close {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 5px;
    transition: transform 0.3s ease;
}

    .sidebar-close:hover {
        transform: rotate(90deg);
    }

.sidebar-mobile-toggle-container {
    position: relative;
}


/* ============================================
   LAYOUT CONTAINERS
   ============================================ */

.main-container {
    display: flex;
    min-height: calc(100vh - 120px);
    /* Added on 4/7/2026 by Claude */
    width: 100%;
    overflow: hidden;
}

.sidebar-container {
    width: 280px;
    flex-shrink: 0;
}

.main-content-with-sidebar {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    padding: 20px;
    margin-left: 280px;
    transition: margin-left 0.3s ease;
}

.main-content-full-width {
    flex: 1;
    min-width: 0;
    padding: 30px;
    margin-left: 0;
    transition: margin-left 0.3s ease;
}


/* ============================================
   FOOTER
   ============================================ */

.footer-main-section {
    padding: 20px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.footer-container-with-sidebar,
.footer-container-full-width {
    margin: 0 auto;
    padding: 10px 20px;
    transition: margin-left 0.3s ease;
}

.footer-container-with-sidebar {
    margin-left: 280px;
}

.footer-container-full-width {
    margin-left: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    margin-bottom: 30px;
}

.footer-section h3 {
    color: white;
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
    padding-bottom: 10px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section li {
    margin-bottom: 12px;
}

.footer-section a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

    .footer-section a:hover {
        color: white;
        transform: translateX(5px);
    }

.footer-section i {
    width: 20px;
    font-size: 14px;
}

.footer-title {
    border-bottom: 2px solid white;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-info {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.powered-by small,
.copyright small {
    color: white;
}

.powered-by a {
    color: white;
    transition: color 0.3s ease;
}

    .powered-by a:hover {
        color: white;
    }

.btn-outline-light {
    border-color: #95a5a6;
    color: #95a5a6;
    padding: 4px 12px;
    font-size: 12px;
    transition: all 0.3s ease;
}

    .btn-outline-light:hover {
        background-color: #667eea;
        border-color: #667eea;
        color: white;
    }

.social-links {
    display: flex;
    gap: 15px;
}

    .social-links a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        color: white;
        text-decoration: none;
        transition: all 0.3s ease;
    }

        .social-links a:hover {
            background: #667eea;
            transform: translateY(-2px);
        }

    .social-links i {
        font-size: 16px;
    }


/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }

    to {
        transform: translateY(0);
    }
}


/* ============================================
   RESPONSIVE DESIGN - TABLET (max-width: 1024px)
   ============================================ */

@media (max-width: 1024px) {
    /* Sidebar */
    .user-sidebar {
        transform: translateX(-100%);
        top: 120px;
        height: 100vh;
        z-index: 1001;
    }

        .user-sidebar.mobile-open {
            transform: translateX(0);
        }

    .sidebar-mobile-header {
        display: flex;
        padding-top: 80px;
    }

    .main-content-with-sidebar {
        margin-left: 0 !important;
        padding: 20px;
        width: 100%;
        min-width: 0;
    }

    .sidebar-mobile-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .sidebar-header {
        margin-top: 0;
    }

    .sidebar-overlay.active {
        display: block;
        opacity: 1;
    }

    .main-container {
        display: block;
    }

    .sidebar-container {
        display: none;
    }

    /* Navbar Sidebar Toggle */
    .navbar-sidebar-toggle {
        display: flex;
        align-items: center;
    }

    .custom-nav-left {
        gap: 15px;
    }

    .custom-logo-brand {
        font-size: 18px;
    }

        .custom-logo-brand i {
            font-size: 20px;
        }

    .sidebar-mobile-toggle {
        display: none !important;
    }

    /* Footer */
    .footer-container-with-sidebar,
    .footer-container-full-width {
        margin-left: 0 !important;
        width: 100% !important;
    }
}


/* ============================================
   RESPONSIVE DESIGN - MOBILE (max-width: 768px)
   ============================================ */

@media (max-width: 768px) {
    /* Top Bar */
    .navbar-top {
        padding: 10px 20px;
        gap: 20px;
    }

    /* Custom Navbar */
    .custom-navbar {
        padding: 15px 20px;
        gap: 15px;
    }

    .custom-nav-left {
        gap: 15px;
    }

    .custom-logo-brand {
        font-size: 20px;
    }

        .custom-logo-brand i {
            font-size: 24px;
        }

    .custom-nav-menu {
        display: none;
    }

    .custom-hamburger {
        display: flex;
        order: 3;
    }

    .custom-nav-right {
        display: none;
    }

    /* Mobile Menu */
    .mobile-menu {
        position: fixed;
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
        max-height: 70vh;
        overflow-y: auto;
        border-top: 2px solid #667eea;
        border-radius: 15px 15px 0 0;
        animation: slideUp 0.3s ease;
    }

        .mobile-menu.active {
            display: flex;
        }

    /* Sidebar */
    .user-sidebar {
        width: 300px;
    }

    .main-content-with-sidebar {
        padding: 15px;
    }

    .sidebar-mobile-toggle {
        width: 50px;
        height: 50px;
        font-size: 18px;
        top: 50px;
        right: 80px;
    }

    .sidebar-nav-toggle {
        width: 36px;
        height: 36px;
        font-size: 14px;
        margin-right: 12px;
    }

    .custom-logo-brand {
        font-size: 16px;
    }

    /* Footer */
    .footer-container-with-sidebar,
    .footer-container-full-width {
        padding: 12px 15px !important;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        width: 100%;
    }

    .footer-info {
        justify-content: center;
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .social-links {
        justify-content: center;
        width: 100%;
    }
}


/* ============================================
   RESPONSIVE DESIGN - SMALL MOBILE (max-width: 480px)
   ============================================ */

@media (max-width: 480px) {
    /* Top Bar */
    .navbar-top {
        padding: 8px 15px;
        gap: 15px;
        font-size: 12px;
    }

    .top-right-group {
        gap: 15px;
    }

    .cart-section,
    .culture-section {
        font-size: 12px;
    }

    /* Custom Navbar */
    .custom-navbar {
        padding: 12px 15px;
    }

    .custom-logo-brand {
        font-size: 18px;
    }

        .custom-logo-brand i {
            font-size: 20px;
        }

    /* Mobile Menu */
    .mobile-menu a {
        padding: 12px 20px;
        font-size: 14px;
    }

        .mobile-menu a:hover {
            padding-left: 30px;
        }

    .mobile-menu .auth-buttons {
        padding: 12px 20px;
    }

    /* Sidebar */
    .user-sidebar {
        width: 100%;
    }

    .sidebar-mobile-toggle {
        width: 45px;
        height: 45px;
        font-size: 16px;
        top: 50px;
        right: 80px;
    }

    .sidebar-nav-toggle {
        width: 32px;
        height: 32px;
        margin-right: 10px;
    }

    .custom-logo-brand {
        font-size: 15px;
    }

        .custom-logo-brand i {
            font-size: 18px;
        }

    /* Mobile User Menu */
    .mobile-user-header {
        padding: 10px 15px;
    }

    .mobile-user-name {
        font-size: 14px;
    }

    .mobile-user-link {
        padding: 12px 15px !important;
        font-size: 13px;
    }

        .mobile-user-link:hover {
            padding-left: 25px !important;
        }

        .mobile-user-link i {
            font-size: 14px;
            width: 18px;
        }

    .mobile-menu .auth-buttons a.custom-login,
    .mobile-menu .auth-buttons a.custom-register {
        font-size: 13px;
        padding: 10px 8px;
    }

    /* Footer */
    .footer-container-with-sidebar,
    .footer-container-full-width {
        padding: 10px !important;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .footer-section h3 {
        font-size: 16px;
    }

    .social-links a {
        width: 35px;
        height: 35px;
    }

    .social-links i {
        font-size: 14px;
    }

    .footer-main-section {
        padding: 15px 10px;
    }
}

.banner-container {
    width: 100%;
    overflow: hidden;
    color: white;
    position: relative;
}

.banner-content {
    display: flex;
    animation: scroll 50s linear infinite;
    white-space: nowrap;
}

    .banner-content div {
        font-size: 20px;
        font-weight: 500;
        padding: 0 60px;
        display: inline-block;
    }

    .banner-content:hover {
        animation-play-state: paused;
    }


@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .banner-content div {
        font-size: 16px;
        padding: 0 40px;
    }
}