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

html {
    font-size: 62.5%;
    font-family: 'Kumbh Sans';
    background-color: var(--Black-background);
}

.container {
    max-width: 1500px;
    width: 80%;
    margin: 0 auto;
}

p {
    font-size: 1.6rem;
    color: rgba(0, 0, 0, 0.7);
}

h2 {
    font-size: 4.5rem;
}


:root {
    --primary-base: hsl(26, 100%, 55%);
    --primary-tint: hsl(25, 100%, 94%);
    --Very-dark-blue: hsl(220, 13%, 13%);
    --Dark-grayish-blue: hsl(219, 9%, 45%);
    --Grayish-blue: hsl(220, 14%, 75%);
    --Light-grayish-blue: hsl(223, 64%, 98%);
    --White: hsl(0, 0%, 100%);
    --Black-background: rgba(255, 255, 255, 0.3);
}

.navigation-container {
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 11rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

header {
    position: sticky;
    z-index: 9999;
    top: 0;
}

.nav-left {

    display: flex;
    align-items: center;
    gap: 3.5rem;
}

.nav-left-text-flex {
    display: flex;
    gap: 3.5rem;
}

.sneakers-logo {
    padding-right: 3rem;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.nav-items {
    cursor: pointer;
    padding: 4rem 0;
    border-bottom: 3px solid transparent;
}


.collections:hover,
.men:hover,
.women:hover,
.about:hover,
.contact:hover {
    border-bottom: 3px solid #E97919;
}

.cart-logo {
    cursor: pointer;
}

.profile-image {
    cursor: pointer;
    width: 5rem;
}



#all-capital {
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 800;
    color: rgb(71, 71, 71);
}

.main-flex {
    width: 80%;
    margin: 6rem auto;
    display: flex;
    gap: 10rem;
    align-items: center;
}

.image-container {
    width: 50%;
    display: flex;
    flex-direction: column;

}


.main-image {
    width: 100%;
    border-radius: 15px;
    cursor: pointer;
}

.small-image {
    display: flex;
    margin-top: 2rem;
    justify-content: space-between;
}

.small-icons {
    width: 7vw;
    border-radius: 10px;
    cursor: pointer;
}


.products-text-flex {
    width: 50%;
    display: flex;
    flex-direction: column;

    gap: 3rem;
}

.product-para {
    margin-top: 2rem;
    line-height: 1.6;
}

.price-flex {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.price-after-disocunt {
    font-size: 2.8rem;
    font-weight: 700;
}

.btn {
    padding: 0.5rem 1rem;

    border-radius: 7px;
}


.discount {
    background-color: black;
    color: var(--White);
    font-size: 1.7rem;

}


.original-price {
    text-decoration: line-through;
    font-weight: 700;
    color: rgb(71, 71, 71);

}

.rigt-bottom-flex {
    display: flex;
    gap: 2rem;
    width: 85%;
}


.select-quantity-flex {
    display: flex;
    gap: 1rem;
    align-items: center;
    background-color: #F7F8FD;
    width: 35%;
    justify-content: space-around;
    border-radius: 12px;
}

.plus,
.minus {
    cursor: pointer;
    width: 1.5rem;
}

.quantity {
    font-size: 1.6rem;
    font-weight: 700;
}

.add-to-cart-flex {
    display: flex;
    gap: 1rem;
    background-color: #E97919;
    width: 65%;
    padding: 2rem 4rem;
    justify-content: center;
    border-radius: 12px;
    cursor: pointer;
}

.add-to-cart-text {
    font-size: 1.6rem;
    font-weight: 700;

}

.add-to-cart-image {
    width: 2rem;
}

.invisible-menu {
    cursor: pointer;
    opacity: 0;
    border: none;
}

.cart-flex {
    display: flex;
    flex-direction: row;
    position: relative;
}

.cart-name {
    font-weight: 600;
    padding: 2rem;
    width: 100%;
    text-align: left;
    height: 7rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.cart-info {
    padding: 0 2rem;
    width: 100%;
    align-self: center;
    display: flex;
    gap: 4rem;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: calc(100% - 5rem);
    justify-self: center;
}

.cart-details {
    border-radius: 10px;

    display: flex;

    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    z-index: 10;
    text-align: center;
    color: black;
    position: absolute;
    top: 200%;
    right: 2rem;
    box-shadow: 0 0 1px 2px rgba(0, 0, 0, 0.1);
    transform: translateX(50%);
    background-color: white;
    width: 40rem;
    height: 25rem;
    display: none;
}

.cart-details-active {
    display: flex;
}







.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;

    background: rgba(0, 0, 0, 0.8);

    display: flex;
    justify-content: center;
    align-items: center;

    opacity: 0;
    pointer-events: none;

    transition: 0.3s;
    z-index: 999999999;
}

.light-box-image-flex {
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
}

.lightbox-img {
    position: relative;
    width: 40%;
    border-radius: 15px;
}

.lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.prev-icon {
    padding: 10px 12px;
    background-color: #F7F8FD;
    border-radius: 100%;
    top: 30px;
    right: 50px;
    align-self: center;
    position: relative;
    left: 2rem;
    top: auto;
    z-index: 1;
}


.prev-main {
    position: absolute;
    display: none;
}

.next-icon {
    padding: 10px 12px;
    background-color: #F7F8FD;
    position: relative;
    right: 2rem;
    border-radius: 100%;
    align-self: center;
    z-index: 1;

}

.next-main {
    position: absolute;
    display: none;
}

.main-image-container {
    display: flex;
}

.close {
    top: -2rem;
    right: 25%;
    position: absolute;
    font-size: 4rem;
    cursor: pointer;
}

.inside-cart-flex {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.inside-cart-image {
    width: 5rem;
    height: 5rem;
    border-radius: 5px;
}

.inside-cart-text {
    font-size: 1.6rem;
    color: rgba(0, 0, 0, 0.5);
    font-weight: 500;
    text-align: left;
}

.checkout {
    color: black;
    font-weight: 500;
    background-color: #E97919;
    width: 65%;
    padding: 1.5rem 3rem;
    border-radius: 12px;
    width: 80%;
}

.delete-icon {
    cursor: pointer;
}
