* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Times New Roman';
}

body {
    height: 100%;
    width: 100%;
}

/* -------------------------------------------------------------------------------------------------- */

.navbar {
    height: 5rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    height: auto;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding-left: 1.5rem;
}

#logo {
    height: 3rem;
    width: auto;
}

.nav-logo p {
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-menu {
    height: auto;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    list-style: none;
}

.nav-menu a {
    color: black;
    text-decoration: none;
}

.nav-menu li {
    border-radius: 25px;
    font-size: 1.5rem;
    font-weight: bold;
    padding: 0.5rem 0.7rem;
    cursor: pointer;
}

.nav-menu li:hover {
    background-color: rgba(130, 130, 130, 0.230);
}

#toggle-btn {
    border: 2px solid black;
    border-radius: 75px;
    height: 2rem;
    width: 4rem;
    background-color: white;
    padding: 0.3rem;
    display: flex;
    align-items: center;
    cursor: pointer;
}

#toggle {
    border: 2px solid black;
    border-radius: 75px;
    height: 1.3rem;
    width: 1.3rem;
    background-color: black;
}

.nav-login-cart {
    height: auto;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.nav-login-cart button {
    border: 1px solid black;
    border-radius: 25px;
    height: auto;
    width: auto;
    padding: 0.5rem 2rem;
    font-size: 1rem;
    font-weight: bold;
    background-color: white;
    color: black;
    cursor: pointer;
}

.nav-login-cart button:hover {
    border: none;
    background-color: red;
    color: white;
}

.nav-login-cart {
    height: auto;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

#cart-icon {
    height: 3rem;
    width: auto;
    cursor: pointer;
}

#cart-count {
    border-radius: 50%;
    height: 1rem;
    width: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    bottom: 0.7rem;
    right: 2.2rem;
    padding: 0.6rem;
    font-size: 1rem;
    background-color: red;
    color: white;
}

/* -------------------------------------------------------------------------------------------------- */

.cart {
    height: auto;
    width: 100%;
    text-align: center;
    background-color: rgba(250, 200, 200, 0.400);
}

.cart h1 {
    padding: 2rem;
    font-size: 2rem;
}

.cart hr {
    margin: 0;
}

.main-box {
    height: auto;
    width: 100%;
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem;
}

#products-list {
    border: 1px solid blue;
    border-radius: 25px;
    height: auto;
    width: 70%;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
}

.cart-product {
    border: 1px solid black;
    border-radius: 25px;
    height: 13rem;
    width: 100%;
    display: flex;
    align-items: start;
    justify-content: start;
    gap: 1rem;
}

.cart-product-image {
    border-radius: 25px;
    height: 100%;
    width: 20%;
    cursor: pointer;
}

.cart-product-image img {
    border-radius: 25px;
    height: 100%;
    max-width: 100%;
}

.cart-product-data {
    border-radius: 25px;
    height: 100%;
    width: 80%;
    padding: 1rem;
    text-align: start;
}

.cart-product-data p {
    margin: 0.5rem;
}

.cart-product-data button {
    border: none;
    border-radius: 25px;
    height: auto;
    width: auto;
    margin: 0.5rem;
    padding: 0.5rem;
    background-color: red;
    color: white;
    font-weight: bold;
    cursor: pointer;
}

#payment-box {
    border: 1px solid blue;
    border-radius: 25px;
    height: 100%;
    width: 30%;
    padding: 1rem;
}

#payment-box hr {
    margin: 1rem 0;
}

#payment-box #net-price {
    font-weight: bold;
}

#payment-box h5 {
    text-align: start;
}

#payment-box button {
    border: none;
    border-radius: 25px;
    height: auto;
    width: auto;
    font-size: 1.5rem;
    padding: 0.5rem 1rem;
    letter-spacing: 1px;
    background-color: rgba(128, 0, 128, 0.638);
    color: yellow;
    cursor: pointer;
}

#payment-box button:hover {
    background-color: purple;
}

/* -------------------------------------------------------------------------------------------------- */

.footer {
    height: auto;
    width: auto;
    padding: 5rem;
}

.footer-logo {
    height: auto;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

#logo {
    height: 3rem;
    width: auto;
}

.footer-logo p {
    font-size: 1.5rem;
    margin: 0;
}

.socials {
    height: auto;
    width: auto;
    margin: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    list-style: none;
}

.socials img {
    height: 1.5rem;
    width: auto;
    cursor: pointer;
}

#copyright {
    font-size: 1rem;
    text-align: center;
    margin: 2rem 0;
}