* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Kumbh Sans', sans-serif;
}

body {
    margin: 0;
    font-family: 'Kumbh Sans';
    background-color: #141414;
    color: #fff;
}

/*Navigation Bar*/
.navbar {
    background-color: #131313;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    position: sticky;
    top: 0;
    z-index: 999;
}

.navbar__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    z-index: 1;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 50px;
}

#navbar__logo {
    background-color: #ffff00;
    background-image: linear-gradient(to top, #ffff00 0%, #ffa500 100%);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: #ffa500;
    -moz-text-fill-color: transparent;
    display: flex;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    font-size: 2rem;
    font-family: 'Poppins', sans-serif;
    
}


.fa-gem {
    margin-right: 0.5rem;
}

.navbar__menu {
    display: flex;
    align-items: center;
    list-style: none;
    text-align: center;
    gap: 1rem;
}

.navbar__item {
    padding: 0 20px;
}

.navbar__links {
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 10px 15px;
    height: 100%;
}

.navbar__toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    background-color: #fff;
    height: 3px;
    width: 25px;
    margin: 5px;
    transition: all 0.3s ease-in-out;
}


.navbar__links:hover {
    color: #ffa500;
    transition: all 0.3s ease;
}

@media screen and (max-width: 960px) {
    .navbar__container {
        display: flex;
        justify-content: space-between;
        height: 80px;
        z-index: 1;
        width: 100%;
        max-width: 1300px;
        padding: 0;
    }

    .navbar__menu {
        display: flex;
        flex-direction: column;
        margin: 0;
        width: 100%;
        position: absolute;
        top: -300px;
        left: 0;
        opacity: 0;
        height: 50vh;
        z-index: -1;
        background: #131313;
        transition: top 0.3s ease;
    }

    .navbar__menu.is-active {
        top: 80px; 
        opacity: 1;
        z-index: 99;
    }
    .navbar__toggle {
        display: flex;
        flex-direction: column;
        cursor: pointer;
    }

    .navbar__logo {
        padding-left: 25px;
    }

    .navbar__toggle .bar {
        width: 25px;
        height: 3px;
        margin: 5px auto;
        transition: all 0.3s ease-in-out;
        display: block;
        cursor: pointer;
    }

    .navbar__item {
        width: 100%;
    }

    .navbar__links {
        text-align: center;
        padding: 2rem;
        width: 100%;
        display: table;
        color: #fff;
    }

    #mobile__menu {
        position: absolute;
        top: 20%;
        right: 5%;
        transform: translate(5%, 20%);
    }

    #mobile__menu.is-active + .navbar__menu {
        top: 80px;
        opacity: 1;
        z-index: 99;
    }

    .navbar__btn {
        padding-bottom: 2rem;
    }

    .button {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 80%;
        height: 80px;
        margin: 0;
    }


    #mobile__menu.is-active .bar:nth-child(2) {
        opacity: 0;
    }

    #mobile__menu.is-active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    #mobile__menu.is-active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

/*Main*/
.dashboard section {
    margin: 2rem;
    max-width: 800px;
    padding: 1.5rem;
    background-color: #1f1f1f;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(255, 165, 0, 0.2);
}

h2 {
    margin-bottom: 1rem;
    color: #ffa500;
}

.highlight__card {
    background: #2a2a2a;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    color: #fff;
}

.product__list ul,
.notifications ul {
    list-style: none;
    padding: 0;
}

.product__list li,
.notifications li {
    background-color: #2b2b2b;
    margin-bottom: 0.5rem;
    padding: 0.75rem;
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product__list button {
    background-color: #ffa500;
    border: none;
    padding: 0.3rem 0.6rem;
    color: #141414;
    font-weight: bold;
    cursor: pointer;
}

.product__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: flex-start;
}

.product-card {
    background-color: #2b2b2b;
    padding: 1rem;
    border-radius: 8px;
    width: 180px;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(255, 165, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 0.5rem;
}

.product-card button {
    margin-top: 0.5rem;
    background-color: #ffa500;
    border: none;
    padding: 0.3rem 0.6rem;
    color: #141414;
    font-weight: bold;
    cursor: pointer;
    border-radius: 4px;
}

.upload__section form {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.upload__section input, .upload__section button {
    padding: 0.75rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
}

.upload__section button {
    background-color: linear-gradient(to top, #ff0844 0%, #ffa500 100%);
    color: #141414;
    font-weight: bold;
    cursor: pointer;
}