@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

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

body{
    font-family: "Poppins", "Cormorant Garamond", serif;
    background-color: pink;
}

#navigation-bar{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    /* background-color: aqua; */
}

.logo{
    width:30px;
    height:30px;
}


.navbar ul{
    list-style: none;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: auto;
    margin-right: 10px;
}

.navbar a{
    text-decoration: none;
    color: black;
    font-weight: 500;
    font-size: 12px;
}

.navbar input{
    width: 80px;
    border: 2px solid;
    background-color: pink;
    padding: 3px;
    border-radius: 7px;
    outline: none;
}

.navbar input:focus{
    border-color: #d9bb26;
    outline: none;
}


form{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
}

form button{
    background: none;
    border: none;
    cursor: pointer;
}

form button img{
    width: 28px;
    height: 28px;
    display: block;
}

.navbar a:hover{
    color: rgb(191, 148, 40);
    transition: 0.2s;
}

.main-svgs{
    width: 30px;
    height: 30px;
    color: rgb(1, 1, 1);
}

.main-svgs:hover{
    color: rgb(191, 148, 40);
}

#hero-section{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    line-height: 2em;
    flex-wrap: wrap;
    margin: 10px;
}

.shop-button{
    margin-top: 10px;
    padding: 10px;
    border: none;
    border-radius: 15px;
    background-color: #333333;
    color: white;
    font-size: 14px;
}

.deals{
    margin: 10px;
    font-size: 22px;
}

.deals-info{
    margin: 10px;
    font-weight: bold;
    font-size: 20px;
    font-style: italic;
    color: rgba(234, 25, 14, 0.708);
}

.products{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.product{
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    background: #F5EBDD;
    border-radius: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08)
}

.product img{
    width: 200px;
    height: auto;
}


.prices{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 11px 0;
}

.product-title{
    margin-top: 12px;
    font-weight: 600;
}

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

.new-price{
    color: red;
    font-weight: bold;
}

.shop-button{
    text-decoration: none;
}

.shop-button:hover{
    background-color: #d9bb26;
    transition: .4s ease;
    cursor: pointer;
}

.explore-more{
    display: block;
    margin: 25px auto;
    padding: 10px;
    border: none;
    text-align: center;
    border-radius: 15px;
    font-size: 16px;
    font-weight: bold;
    color: white;
    background-color: #333333;
    cursor: pointer;
}

.explore-more:hover{
    background-color: #d9bb26;
}

@media(min-width: 1024px){
    .logo{
        width: 33px;
        height: 33px;
    }

    .navbar ul{
        gap: 25px;
    }

    .navbar a {
        font-size: 14px;
        font-weight: bold;
    }

    .navbar input{
    width: 200px;
    height: 25px;
    border: 2px solid;
    }

    .navbar input:focus{
        border-color: #edc812;
        outline: none;
    }

    .main-svgs{
        width: 33px;
        height: 33px;
    }

    #hero-section{
        font-size: 18px;
        font-weight: 400;
    }

    .shop-button{
        margin: 15px 0;
        font-size: 14px;
        font-weight: 500;
    }

    .deals{
        font-size: 20px;
        font-weight: 600;
    }

    .deals-info{
        font-size: 24px;
        font-weight: 500;
    }

    .products{
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        /* align-items: center; */
        margin: 50px;
        gap: 20px;
    }

    .product img{
        width: 200px;
        height: 220px;
        object-fit: contain;    
    }
}

@media(min-width: 768px){
    .logo{
        width: 33px;
        height: 33px;
    }

    .navbar ul{
        gap: 25px;
    }

    .navbar a {
        font-size: 14px;
        font-weight: bold;
    }

    .navbar input{
    width: 200px;
    height: 25px;
    border: 2px solid;
    }

    .navbar input:focus{
        border-color: #edc812;
        outline: none;
    }

    .main-svgs{
        width: 33px;
        height: 33px;
    }

    #hero-section{
        font-size: 18px;
        font-weight: 400;
    }

    .shop-button{
        margin: 15px 0;
        font-size: 14px;
        font-weight: 500;
    }

    .deals{
        font-size: 20px;
        font-weight: 600;
    }

    .deals-info{
        font-size: 24px;
        font-weight: 500;
    }

    .products{
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        margin: 60px;
        gap: 20px;
    }

    .product img{
        width: 230px;
        height: 250px;
        object-fit: contain;    
    }
}
