* {
    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;
}

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

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

#banner {
    margin: 2rem;
}

.women-category hr {
    margin: 0;
}

.items {
    height: auto;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    padding: 2rem;
}

.item {
    height: auto;
    width: auto;
    cursor: pointer;
}

.item img {
    height: 25rem;
    width: auto;
}

.item p {
    font-size: 1rem;
    margin: 1rem 0;
}

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

.item-price-new {
    font-weight: bold;
}

.item-price-old {
    text-decoration: line-through;
}

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

.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;
}