/* Side Menu */
.side-menu {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    padding: 1.5rem;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    border-left: none;
    scrollbar-width: none;
}

.side-menu {
    background-color: rgba(30, 30, 30, 0.95);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
}


.side-menu.active {
    right: 0;
}

.side-menu::-webkit-scrollbar {
    display: none;
}

.menu-categories {
    margin-top: 2rem;
}

.menu-category {
    margin-bottom: 1.5rem;
}

.menu-category h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light);
    padding-bottom: 0.5rem;
    margin-bottom: 0.8rem;
    position: relative;
    border-bottom: none;
}


.menu-category h3 {
    color: var(--text-dark);
}


.menu-category h3::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: #994f06;
    /* Changed from currentColor to #994f06 */
    transition: width 0.3s ease;
}

.menu-category:hover h3::after {
    width: 80px;
}

.menu-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-category li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-right: 1rem;
    transition: all 0.3s ease;
}

.menu-category li::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: currentColor;
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
}

.menu-category li:hover {
    padding-right: 1.5rem;
}

.menu-category li:hover::before {
    opacity: 1;
}

.menu-category a {
    color: inherit;
    text-decoration: none;
    font-size: 0.95rem;
    display: block;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    position: relative;
}

.menu-category a:hover {
    color: var(--text-orange);
    opacity: 1;
    transform: translateX(-5px);
}


/* Auth Buttons */
.auth-buttons-mobile {
    display: none;
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.auth-buttons-mobile .btn {
    width: 100%;
    padding: 0.75rem;
    text-align: center;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
    border: none;
    background-color: #994f06;
    /* Added this line for the button color */
    color: white;
    /* Added for better text contrast */
}

.auth-buttons-desktop {
    display: none;
}

/* Mobile Auth Buttons */
@media (max-width: 767px) {
    .auth-buttons-mobile {
        display: block;
    }

    .auth-buttons-desktop {
        display: none !important;
    }
}

/* Desktop Auth Buttons */
@media (min-width: 768px) {
    .auth-buttons-mobile {
        display: none;
    }

    .auth-buttons-desktop {
        display: block;
    }
}

/* Auth Buttons */
.auth-buttons-mobile {
    display: none;
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.auth-buttons-mobile .btn {
    width: 100%;
    padding: 0.75rem;
    text-align: center;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
    border: none;
}

.auth-buttons-desktop {
    display: none;
}

/* Mobile Auth Buttons */
@media (max-width: 767px) {
    .auth-buttons-mobile {
        display: block;
    }

    .auth-buttons-desktop {
        display: none !important;
    }
}

/* Desktop Auth Buttons */
@media (min-width: 768px) {
    .auth-buttons-mobile {
        display: none;
    }

    .auth-buttons-desktop {
        display: block;
    }
}



.auth-buttons-mobile .btn {
    background: #994f06;
    color: var(--text-dark);
}



.auth-buttons-mobile .btn:hover {
    background: #864605;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.auth-buttons-mobile .btn:hover {
    background:#864605;
}


/* Close button */
.menu-close-btn {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: inherit;
    cursor: pointer;
    z-index: 1001;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.menu-close-btn:hover {
    opacity: 1;
    transform: rotate(90deg);
}


.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none;
}

.overlay.active {
    display: block;
}
