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

body {
    font-family: 'Poppins', sans-serif;
    color: #ffff;
}

/* navbar/header */

.navbar-container {
    background-color: #0F0F0F;
    padding: 20px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
}

.sticky {
    border-bottom: 1px solid rgb(59, 59, 59);
}

.navbar-container + div {
    padding-top: 150px;
}

.navbar {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo,
.footer-logo {
    letter-spacing: 8px;
    font-size: 20px;
    font-weight: 600;
}

.nav-links a,
.logo a{
    text-decoration: none;
    color: #ffff; 
}

.nav-links a:hover {
    color: #FFB800;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-left: auto;
    margin-right: 30px;
}

.nav-icons {
    fill: #ffff;
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-icons a {
    fill: #ffff;
}

.profile-icon:hover,
.cart-icon:hover {
    fill: #FFB800;
}

.cart-icon {
    width: 30px;
    height: 30px;
}

.profile-icon {
    width: 35px;
    height: 35px;
}

/* footer */

.sixth-section {
    background-color: #0F0F0F;
    border-top: 1px solid rgb(59, 59, 59);
    padding: 50px 20px;
}

.footer {
    max-width: 1180px;
    margin: auto;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
}

.footer-g1 {
    text-align: right;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer-logo {
    font-size: 30px;
}

.contact-icons a~a {
    margin-left: 15px;
}

.footer-g2 {
    width: 200px;
}

.footer-about,
.footer-qlinks {
    font-size: 20px;
    font-weight: 500;
    color: #FFB800;
    margin-bottom: 10px;
}

.footer-g3 {
    display: flex;
    flex-direction: column;
}

.footer-g3 a {
    text-decoration: none;
    color: #ffff;
}

.footer-g3 ul a:hover {
    color: #FFB800;
}

ul {
    flex: 1;
    list-style-type: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer a {
    align-self: center;
}

.footer-button {
    background-color: #D1AB47;
    font: inherit;
    font-weight: 500;
    border: none;
    border-radius: 10px;
    padding: 8px 60px;
    cursor: pointer;
}

.footer-button:hover {
    background-color: #9b7a28;
    font-weight: 600;
}

::-webkit-scrollbar {
    height: 12px;
    background:#0F0F0F;
}

::-webkit-scrollbar-track {
    border-radius: 10px;
}
   
::-webkit-scrollbar-thumb {
    background: #1f1d1d; 
    border-radius: 10px;
}

@media screen and (max-width: 970px) {
    .footer {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .footer-g1 {
        text-align: center;
        gap: 15px;
    } 

    .footer-g2,
    .footer-g3 {
        text-align: center;
    }
}