:root {
    --gold-primary: #d4af37;
    --gold-light: #f4e4c1;
    --gold-dark: #b8941e;
    --dark-bg: #0a0a0a;
    --dark-secondary: #1a1a1a;
    --dark-tertiary: #2a2a2a;
    --text-primary: #f5f5f5;
    --text-secondary: #c0c0c0;
    --text-muted: #808080;
    --border-color: rgba(212, 175, 55, 0.15);
    --topbar-height: 70px;
    --mobile-header-height: 60px;
    --sidebar-width: 300px;
}



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

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    overflow-x: hidden;
}

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    font-size: 22px;
    user-select: none;
}





img.responsive-logo {
    width: 100%;
    height: auto;
    max-width: 160px;
    display: block;
}

@media (max-width: 768px) {
    img.responsive-logo {
        max-width: 120px;
    }
}



/* ===================================== */
/* DESKTOP TOP NAVIGATION                */
/* ===================================== */

.desktop-topbar {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    z-index: 3000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.topbar-container {
    max-width: 1920px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3rem;
    height: var(--topbar-height);
}

/* Logo */
.topbar-logo {
    flex-shrink: 0;
}

.logo-link {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 3px;
    line-height: 1.2;
    transition: letter-spacing 0.3s ease;
}

.logo-link:hover .logo-text {
    letter-spacing: 4px;
}

.logo-subtitle {
    font-size: 0.65rem;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 2px;
}

/* Navigation Menu */
.topbar-nav {
    flex: 1;
    display: flex;
    justify-content: center;
    padding: 0 2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.2rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border-radius: 6px;
    white-space: nowrap;
}

.nav-link .material-symbols-outlined {
    font-size: 20px;
}

.nav-link:hover {
    color: var(--gold-primary);
    background: rgba(212, 175, 55, 0.08);
}

.dropdown-icon {
    font-size: 18px !important;
    margin-left: -4px;
    transition: transform 0.3s ease;
}

.has-dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 0.5rem;
    background: rgba(20, 20, 20, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 0.75rem;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-content {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.7rem 1rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.dropdown-item .material-symbols-outlined {
    font-size: 20px;
    color: var(--gold-primary);
}

.dropdown-item:hover {
    background: rgba(212, 175, 55, 0.12);
    color: var(--text-primary);
    padding-left: 1.2rem;
}

/* Topbar Actions */
.topbar-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(30, 30, 30, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-secondary);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.action-btn:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--gold-primary);
    color: var(--gold-primary);
    transform: translateY(-2px);
}

.cart-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: var(--gold-primary);
    color: var(--dark-bg);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 0.45rem;
    border-radius: 10px;
    min-width: 20px;
    text-align: center;
    line-height: 1;
}

/* Search Bar */
.search-bar {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(15, 15, 15, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    padding: 1.5rem 3rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.search-bar.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.search-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(30, 30, 30, 0.8);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 0 1.5rem;
    height: 55px;
}

.search-container .material-symbols-outlined {
    color: var(--gold-primary);
    font-size: 24px;
}

.search-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: inherit;
}

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

.close-search {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.close-search:hover {
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold-primary);
}

/* ===================================== */
/* MOBILE HEADER                         */
/* ===================================== */

.mobile-header {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--mobile-header-height);
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    z-index: 2500;
    padding: 0 1.25rem;
    align-items: center;
    justify-content: space-between;
}

.hamburger-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 5px;
    transition: transform 0.3s;
}

.hamburger-line {
    width: 24px;
    height: 2.5px;
    background: var(--gold-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

.hamburger-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

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

.mobile-logo-link {
    font-size: 1.3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    text-decoration: none;
}

.mobile-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mobile-search-btn,
.mobile-cart-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--gold-primary);
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform 0.3s;
}

.mobile-search-btn:active,
.mobile-cart-btn:active {
    transform: scale(0.95);
}

.mobile-cart-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    background: var(--gold-primary);
    color: var(--dark-bg);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.15rem 0.35rem;
    border-radius: 8px;
    min-width: 16px;
    text-align: center;
    line-height: 1;
}

/* ===================================== */
/* MOBILE SIDEBAR                        */
/* ===================================== */

.sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(5px);
    z-index: 2900;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sidebar-overlay.active {
    display: block;
    opacity: 1;
}

.mobile-sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: var(--sidebar-width);
    height: 100vh;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.98) 0%, rgba(20, 20, 20, 0.98) 100%);
    backdrop-filter: blur(20px);
    border-right: 1px solid var(--border-color);
    z-index: 3000;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    display: none;
    flex-direction: column;
}

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

.mobile-sidebar::-webkit-scrollbar {
    width: 5px;
}

.mobile-sidebar::-webkit-scrollbar-track {
    background: rgba(20, 20, 20, 0.5);
}

.mobile-sidebar::-webkit-scrollbar-thumb {
    background: var(--gold-primary);
    border-radius: 10px;
}

/* Sidebar Header */
.sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 1.25rem;
    border-bottom: 1px solid var(--border-color);
    background: rgba(212, 175, 55, 0.05);
}

.sidebar-logo {
    display: flex;
    flex-direction: column;
}

.sidebar-logo .logo-text {
    font-size: 1.4rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

.sidebar-logo .logo-subtitle {
    font-size: 0.65rem;
    color: var(--text-muted);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 2px;
}

.sidebar-close {
    background: rgba(30, 30, 30, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-secondary);
    transition: all 0.2s ease;
}

.sidebar-close:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--gold-primary);
    color: var(--gold-primary);
}

/* Sidebar Navigation */
.sidebar-nav {
    flex: 1;
    padding: 1rem 0;
    overflow-y: auto;
}

.sidebar-menu {
    list-style: none;
}

.sidebar-item {
    margin-bottom: 0.25rem;
}

.sidebar-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.9rem 1.25rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    background: transparent;
    border: none;
    width: 100%;
    cursor: pointer;
    text-align: left;
}

.link-content {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.sidebar-link .material-symbols-outlined {
    font-size: 22px;
    color: var(--gold-primary);
}

.sidebar-link:hover {
    background: rgba(212, 175, 55, 0.08);
    color: var(--text-primary);
    padding-left: 1.5rem;
}

.submenu-icon {
    color: var(--text-muted) !important;
    font-size: 20px !important;
    transition: transform 0.3s ease;
}

.has-submenu.open .submenu-icon {
    transform: rotate(180deg);
}

/* Sidebar Submenu */
.sidebar-submenu {
    list-style: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(15, 15, 15, 0.5);
}

.has-submenu.open .sidebar-submenu {
    max-height: 600px;
}

.sidebar-submenu li {
    margin: 0;
}

.sidebar-submenu a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem 0.75rem 3.5rem;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.875rem;
    transition: all 0.2s ease;
}

.sidebar-submenu a .material-symbols-outlined {
    font-size: 18px;
    color: var(--gold-primary);
}

.sidebar-submenu a:hover {
    background: rgba(212, 175, 55, 0.08);
    color: var(--text-primary);
    padding-left: 3.75rem;
}

/* Sidebar Footer */
.sidebar-footer {
    padding: 1.25rem;
    border-top: 1px solid var(--border-color);
    background: rgba(10, 10, 10, 0.5);
}

.sidebar-login-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.9rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.1));
    border: 1px solid var(--gold-primary);
    border-radius: 8px;
    color: var(--gold-primary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.sidebar-login-btn:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.3), rgba(212, 175, 55, 0.2));
    transform: translateY(-2px);
}

.sidebar-social {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.sidebar-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(30, 30, 30, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    text-decoration: none;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.sidebar-social a:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--gold-primary);
    color: var(--gold-primary);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 1px;
}

/* ===================================== */
/* MAIN CONTENT WRAPPER                  */
/* ===================================== */

.main-content-wrapper {
    padding-top: var(--topbar-height);
    min-height: 100vh;
    transition: padding-top 0.3s ease;
}

/* ===================================== */
/* RESPONSIVE DESIGN                     */
/* ===================================== */

@media (max-width: 1440px) {
    .topbar-container {
        padding: 0 2rem;
    }

    .nav-link {
        padding: 0.7rem 1rem;
        font-size: 0.875rem;
    }
}

@media (max-width: 1200px) {
    .nav-link {
        padding: 0.65rem 0.85rem;
        font-size: 0.85rem;
    }

    .nav-link span:not(.material-symbols-outlined):not(.dropdown-icon) {
        display: none;
    }

    .nav-link .material-symbols-outlined {
        margin: 0;
    }

    .dropdown-icon {
        display: none;
    }
}

@media (max-width: 1024px) {
    .desktop-topbar {
        display: none;
    }

    .mobile-header {
        display: flex;
    }

    .mobile-sidebar {
        display: flex;
    }

    .main-content-wrapper {
        padding-top: var(--mobile-header-height);
    }

    .search-bar {
        padding: 1rem 1.25rem;
    }

    .search-container {
        height: 50px;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    :root {
        --sidebar-width: 280px;
        --mobile-header-height: 55px;
    }

    .mobile-header {
        padding: 0 1rem;
    }

    .mobile-logo-link {
        font-size: 1.15rem;
    }

    .sidebar-header {
        padding: 1.25rem 1rem;
    }

    .sidebar-logo .logo-text {
        font-size: 1.25rem;
    }

    .sidebar-link {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }

    .sidebar-submenu a {
        padding: 0.7rem 1rem 0.7rem 3rem;
        font-size: 0.85rem;
    }
}

/* ===================================== */
/* ANIMATIONS                            */
/* ===================================== */



/* Fix: Make desktop header responsive between 1024px–1440px */
@media (max-width: 1366px) and (min-width: 1025px) {
  .topbar-container {
    padding: 0 1.5rem;
    gap: 1rem;
  }

  .topbar-nav {
    flex: 1;
    overflow-x: auto;
    scrollbar-width: none; /* Hide scrollbar in Firefox */
  }

  .topbar-nav::-webkit-scrollbar {
    display: none; /* Hide scrollbar in Chrome/Safari */
  }

  .nav-menu {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.25rem;
  }

  .nav-link {
    padding: 0.5rem 0.75rem;
    font-size: 0.85rem;
  }

  .topbar-actions {
    flex-shrink: 0;
  }
}


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

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

.mobile-sidebar.active {
    animation: slideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.dropdown-menu {
    animation: fadeIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Focus States */
.nav-link:focus,
.action-btn:focus,
.sidebar-link:focus,
.dropdown-item:focus {
    outline: 2px solid var(--gold-primary);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .desktop-topbar,
    .mobile-header,
    .mobile-sidebar,
    .sidebar-overlay {
        display: none;
    }

    .main-content-wrapper {
        padding-top: 0;
    }
}






/* Sidebar User Box */
.sidebar-user-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(30, 30, 30, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.sidebar-user-box:hover {
    background: rgba(212, 175, 55, 0.08);
    border-color: var(--gold-primary);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.15);
}

.sidebar-user-box .user-info {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
}

.sidebar-user-box .user-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--gold-primary);
    object-fit: cover;
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.2);
}

.sidebar-user-box .user-text {
    text-align: left;
}

.sidebar-user-box .welcome-text {
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    margin: 0;
}

.sidebar-user-box .user-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gold-primary);
    margin: 0;
    text-transform: capitalize;
}

/* Logout Button */
.sidebar-user-box .logout-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.1));
    border: 1px solid var(--gold-primary);
    border-radius: 8px;
    color: var(--gold-primary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.6rem 1.2rem;
    transition: all 0.3s ease;
}

.sidebar-user-box .logout-btn:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.35), rgba(212, 175, 55, 0.2));
    color: #fff;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
    transform: translateY(-2px);
}

/* Login Button for Guests */
.sidebar-login-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.9rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
    border: 1px solid var(--gold-primary);
    border-radius: 10px;
    color: var(--gold-primary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.sidebar-login-btn:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.3), rgba(212, 175, 55, 0.15));
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.25);
}



.user-profile {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(30, 30, 30, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 30px;
    padding: 0.3rem 0.8rem 0.3rem 0.4rem;
    transition: all 0.3s ease;
}

.user-profile:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--gold-primary);
}

.user-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--gold-primary);
    object-fit: cover;
}

.user-name {
    font-size: 0.9rem;
    color: var(--text-primary);
    font-weight: 500;
    letter-spacing: 0.5px;
}




/* Desktop Header User Profile */
.user-profile {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(30, 30, 30, 0.4);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 0.4rem 0.8rem;
    transition: all 0.3s ease;
}

.user-profile:hover {
    border-color: var(--gold-primary);
    background: rgba(212, 175, 55, 0.08);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.15);
}

.user-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 1.5px solid var(--gold-primary);
    box-shadow: 0 0 6px rgba(212, 175, 55, 0.3);
}

.user-name {
    font-weight: 600;
    color: var(--gold-primary);
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

.logout-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: var(--text-muted);
    transition: color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
}

.logout-btn:hover {
    color: #ff4d4d;
    transform: translateY(-1px);
}

/* Desktop Login Button */
.desktop-login-btn {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.1));
    border: 1px solid var(--gold-primary);
    color: var(--gold-primary);
    padding: 0.45rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.desktop-login-btn:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.3), rgba(212, 175, 55, 0.15));
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.25);
    color: #fff;
    transform: translateY(-2px);
}

/* Responsive alignment fix for small desktop widths */
@media (max-width: 1366px) {
    .desktop-login-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
    }
}
