.main{
    color: var(--black);
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--white);
    padding: 50px;
}

.shop-info{
    text-align: left;
    margin: 0 10px 30px 10px;
}

.shop-info h1{
    font-size: 4em;
    margin: 0;
    margin-bottom: 40px;
}

.shop-info p{
    font-size: 1.1em;
    margin: 20px 0;
}

.products{
    width: 80%;
}

.product{
    display: flex;
    margin: 40px 0;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
    text-decoration: none;
    color: var(--black);
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
}

.product-img img{
    width: 350px;
}

.product-title h4,
.product-price,
.product-btn{
    font-size: 1.1em;
}

.product-title h4{
    margin: 0;
    font-weight: 600;
    font-size: 1.5em;
}

.product-price{
    width: fit-content;
    display: flex;
    gap: 10px;
    margin: 5px 0;
    font-weight: 600;
    margin: 10px 0;
}

.special-offer{
    background-color: red;
    padding: 5px 10px;
    border-radius: 50px;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9em;
    padding: 5px 10px;
    border-radius: 50px;
    width: fit-content;
    margin: 10px 0 15px -5px;
}

.product-description{
    margin-top: 20px;
}

dialog{
    width: 75%;
    height: fit-content;
    background: rgb(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    border: none;
    border-radius: 15px;
    padding: 65px 30px;
    overflow: hidden;
}

dialog .close{
    position: absolute;
    top: 25px;
    right: 25px;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 100;
}

.modal-img{
    position: relative;
}

.circle1,
.circle2{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: -1;
}

*{
    --circle1: 750px;
    --circle2: 500px
}

.circle1{
    /* border: solid 100px rgba(240, 240, 240, 0.8); */
    border: solid 100px var(--yellow);
    opacity: 0.6;
    height: var(--circle1);
    width: var(--circle1);
    border-radius: 50%;
    right: -400px;
}

.circle2{
    background: rgba(240, 240, 240, 0.8);
    height: var(--circle2);
    width: var(--circle2);
    border-radius: 50%;
    right: -300px;
}


.modal-img img{
    width: 500px;
    transform: scaleX(-1);
}

.modal-content{
    display: flex;
}

dialog button img{
    width: 100%;
}

.modal-title{
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 5px;
    position: relative;
    margin-bottom: 40px;
}

.modal-title::before{
    content: '';
    height: 10px;
    width: 100px;
    background: var(--yellow);
    margin: 15px 0 20px 0;
    position: absolute;
    bottom: -45px;
    left: 0;
}

.modal-text{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}


.primary-button{
    position: relative;
    border: none;
}

/* Media Queries */

@media (max-width: 910px){
    .product{
        flex-direction: column;
    }
}

@media (max-width: 460px){
    .product-img img{
        width: 300px;
    }

    .main{
        padding: 50px 5px;
    }
}

@media (max-width: 626px){
    .banner h1{
        font-size: 3em;
    }

    .main{
        padding: 50px 0;
    }

}

@media (max-width: 1059px){
    dialog{
        max-width: 100vw;
        min-width: 100vw;
        max-height: 100vh;
        min-height: 100vh;
        border-radius: 0;
        padding: 65px 30px 10px 30px;
        margin: 0 auto;
    }

    .modal-content{
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .circle1,
    .circle2{
        display: none;
    }

    .modal-img img{
        width: 100%;
    }

    .modal-img{
        width: 100vw;
        padding-top: 20px;
    }
}