﻿

nav {
    background: rgba(0, 0, 0, 0.85) !important;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 30px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.nav-container {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
}



.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
    padding: 0;
    margin: 0;
}

    .nav-links li a {
        color: white;
        font-size: 1.2rem;
        text-decoration: none;
        transition: color 0.3s;
    }

        .nav-links li a:hover {
            color: #bbb;
        }


.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cart {
    color: white !important;
    font-size: 1.2rem;
    text-decoration: none;
    margin-right: 20px;
}


/*body {
    padding-top: 100px;
}*/


.logo {
    color: white;
    font-size: 2rem;
    font-family: 'SF Pro Display', sans-serif;
    font-weight: 400;
    text-decoration: none;
    transition: color 0.3s, filter 0.3s;
}
.custom-footer {
    background: rgba(0, 0, 0, 0.85) !important;
    color: white !important;
    text-align: center !important;
    padding: 20px 0 !important;
    margin-top: 20px !important;
    width: 100% !important; 
    box-sizing: border-box !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

.custom-container {
    width: 100% !important;
    max-width: 1200px !important; 
    padding: 0 20px !important; 
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
}

.custom-footer-credit {
    font-size: 1rem !important;
    margin-top: 10px !important;
    color: #bbb !important;
}



.menu-toggle {
    display: none;
}



@media (max-width: 1100px) {
    .nav-container {
        padding: 40px 10px;
    }

    .menu-toggle {
        display: flex;
        align-items: center;
        background: none;
        border: none;
        color: white;
        font-size: 1.8rem;
        cursor: pointer;
        font-weight: 300;
        z-index: 9999;
    }

        .menu-toggle i {
            margin-left: 4px; 
            margin-top: 5px;
        }

    .nav-links, .nav-right {
        display: none;
    }


        .nav-links.active {
            display: flex;
            flex-direction: column;
            width: 100%;
            background: transparent;
            position: relative;
            padding: 10px 0;
            z-index: 1001;
            color: white !important;
            align-items: center;
        }

            .nav-links.active li {
                text-align: center;
                padding: 10px 10px;
                width: 100%;
            }

        .nav-right.active {
            display: flex;
            flex-direction: column;
            width: 100%;
            background: transparent;
            position: relative;
            padding: 10px 0;
            z-index: 1000;
            align-items: center;
        }

            .nav-right.active a {
                margin: 10px 0;
            }


    .nav-container {
        flex-wrap: wrap;
    }

    nav {
        padding: 5px 20px !important;
    }

    .logo {
        font-size: 1.5rem;
    }
}