body{
    margin: 0;
    padding: 0;
    font-family: "Outfit", sans-serif
}
.body{
    background-image: url(IMAGES/white1.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}


/* NEW STYLING */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
}
button {
    padding: 0.5rem 1rem;
    background-color: rgb(255, 179, 0);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
button:hover {
    background-color: rgb(255, 219, 102);
    transition: 0.3s ease;
}
.cart-btn {
    border: 1px solid gray;
    background-color: transparent;
    color: black;
    padding: 10px 20px 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 13px;
}
.cart-btn:hover {
    color: #fcfcfc;
    background-color: rgb(255, 179, 0);
    transition: background-color 0.3s ease;
    border: none;
}
.qty {
    width: 50px;
    border: none;
    background-color: transparent;
    border: 1px solid gray;
    padding: 5px;
    font-size: 12px;
    color: gray;
    transition: background-color 0.3s ease;
    border-radius: 5px;
    margin-right: 10px;
}

.close {
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: #888;
}
  
.cart-item {
    margin-bottom: 1rem;
}
  
.total {
    font-size: 1.2rem;
    font-weight: bold;
    margin-top: 1rem;
}
  
.checkout-btn {
    margin-top: 1rem;
    width: 100%;
    background-color: #28a745;
}



/* FIRST PAGE */
.header{
    padding-top: 0.5rem;
}

.image{
    display: flex;
    align-items: center;
}
.image a{
    text-decoration: none;
    font-size: 2em;
    font-weight: bolder;
    color: black;
    margin-left: 10px;
    letter-spacing: 1.5px;
}
.head{
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: white;
    backdrop-filter: blur(10px);
    box-sizing: border-box;
    width: 100%;
    height: 70px;
    z-index: 1;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
}
.lily{
    width: 95%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.one{
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 3rem;
}
.two{
    display: flex;
    gap: 5rem;
    align-items: center;
}
.sidebar li{
    display: inline;
    margin-right: 25px;
}
.sidebar a{
    text-decoration: none;
    color: gray;
    font-weight: 200;
    letter-spacing: 1.5px;
}
.sidebar a:hover{
    color: black;
    font-size: 18px;
    font-weight: bold;
    border-bottom: 2px solid orangered;
    transition: 0.3s ease; 
    border-radius: 10px;
    padding-left: 5px;
    padding-right: 5px;
}
.two input{
    padding: 12px 16px;
    font-size: 16px;
    color: #070707;
    background: transparent;
    border: 1px solid gray;
    border-radius: 10px;
    background-origin: border-box;

}

.two input::placeholder{
    color: rgb(56, 56, 56);
}
.svg{
    color: rgb(89, 89, 89);
}
.header hr{
    border: 0.3px solid gray;
}

/* SECOND PAGE */
.second{
    width: 70%;
    margin: auto;
    margin-top: 3rem;
}
.second a{
    text-decoration: none;
    color: rgb(89, 89, 89);
    font-weight: 200;
    letter-spacing: 1.5px;
}
.second h1{
    font-size: 60px;
    color: rgb(80, 79, 79);
}

.shop{
    display: grid;
    grid-template-columns: auto auto auto;
    gap: 15px;
    align-items: center;
}
.shop #img{
    width: 100%;
}
.shop h5{
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1.5px;
}
.shop p{
    font-size: 13px;
    color: gray;
    font-weight: 400;
}

.box{
    width: 70%;
    margin: auto;
    margin-top: 3rem;
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 3rem;
}
.box a{
    text-decoration: none;
}

.you{
    width: 40px;
    height: 40px;
    border: 1px solid gray;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: gray;
    font-weight: 500;
    border-radius: 5px;
}
.you:hover{
    background-color: rgb(144, 143, 143);
    color: black;
    transition: 0.3s ease;
    border: none;
}
.dont{
    width: 40px;
    height: 40px;
    border: 1px solid gray;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: gray;
    font-weight: 500;
    border-radius: 5px;
}
.dont:hover{
    color: black;
    background-color: rgb(144, 143, 143);
    transition: 0.3s ease;
    border: none;
}
.know{
    width: 40px;
    height: 40px;
    border: 1px solid gray;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: gray;
    font-weight: 500;
    border-radius: 5px;
}
.know:hover{
    background-color: rgb(144, 143, 143);
    color: black;
    transition: 0.3s ease;
    border: none;
}

/* THIRD PAGE */

.third{
    padding-top: 8rem;
    padding-bottom: 8rem;
    background-image: url(IMAGES/background4.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
}
.third h1{
    font-size: 70px;
    font-weight: 700;
    color: white;
    letter-spacing: 1.5px;
}
.third a{
    text-decoration: none;
    padding: 10px 50px 10px 50px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    background-color: rgb(255, 179, 0);
    border-radius: 5px;
    color: black;
    transition: 0.3s ease;
}
.third a:hover{
    background-color: rgb(255, 219, 102);
    transition: 0.3s ease;
}

/* LAST PAGE */


.foot{
    display: flex;
    align-items: center;
}
.foot #img{
    width: 25px;
}
.foot h2{
    margin-left: 10px;
    letter-spacing: 1.5px;
}
.eight .don{
    letter-spacing: 1rem;
}
.eight{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.last{
    width: 70%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    padding-top: 3rem;
    padding-bottom: 3rem;
}
.last h3{
    font-weight: 600;
    letter-spacing: 1.5px;
}
.last p{
    color: gray;
    letter-spacing: 1.5px;
}
.footer hr{
    border: 0.3px thin black;
}
.copy{
    text-align: center;
    color: gray;
    font-size: 15px;
    font-weight: 500;
    padding-top: 2rem;
    padding-bottom: 2rem;
    letter-spacing: 1px;
}



/* RESPONSIVENESS */
@media (max-width: 992px){
    .sidebar{
        display: none;
    }
    .two{
        display: none;
    }
    .three{
        display: none;
    }
    .svg{
        display: none;
    }
    .head{
        position: relative;
        padding: 0.5rem;
        background-color: white;
        box-shadow: none;
        backdrop-filter: none;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .header hr{
        border: 0.2px solid gray;
    }
    .second{
        width: 90%;
        margin: auto;
        padding-top: 4rem;
    }
    .box{
        width: 90%;
        margin: auto;
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
    .sidebar a{
        font-size: 2em;
        font-weight: 600;
    }
    .image a{
        font-size: 2.5em;
        font-weight: 900;
    }
    
    .shop{
        display: grid;
        grid-template-columns: auto;
    }
    .third{
        padding-top: 5rem;
    }
    

    /* LAST PAGE */

    .last{
        width: 90%;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }



    /* HAMBURGER MENU */
    .hamburger{
        display: block;

    }

    .header .sidebar{
        display: none;
        flex-direction: column;
        position: absolute;
        top: 85px;
        right: 0;
        left: 0;
        height: auto;
        width: 100%;
        background-color: rgb(255, 255, 255);
        text-align: justify;
        overflow: hidden;
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    }
    .sidebar li{
        display: flex;
        line-height: 6rem;
    }
    
    .header.active .hamburger:nth-child(1) {
        transform: rotate(360deg) translateY(5px);
    }
    
    .header.active .hamburger:nth-child(3) {
        transform: rotate(-360deg) translateY(-5px);
    }

}


@media(min-width: 993px) and (max-width: 4000px) {
    .hamburger{
        display: none;
    }
    
}
