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

body {
    background-color: rgb(223, 209, 192);
}

.header {
    position: sticky;
    top: 0;
    left: 0;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    justify-items: center;
    text-align: center;
    color: rgb(46, 46, 203);
    font-size: 24px;
    font-weight: bold;
    width: 100%;
    /* height: 100px; */
    background: linear-gradient(135deg, #71b7e6, #9b59b6);

    padding: 20px 0;
}

a {
    text-decoration: none;
}

.logo a {
    text-decoration: none;
    font-size: 36px;
    /* margin-top: 30px; */
    margin-left: 20px;

}

.login {
    margin-right: 20px;
}

.main {
    width: 500px;
    border: 1px solid rgb(0, 0, 0);
    padding: 10px;
    border-radius: 30px;
    display: flex;
}

input {
    background: transparent;
    border: 0;
    outline: 0;
    width: 480px;
    font-size: 24px;
    color: #fff;
}

.content {
    display: flex;
    justify-content: space-between;
    /* height: 100vh; */
    /* align-items: center; */
    margin-top: 150px;
    margin-right: 200px;
}

.img-content {
    /* background: linear-gradient(120deg, #7f4d37, #6a24d5); */
    border-radius: 20px;
    z-index: -1;
}

main .hero {
    background-image: url(./Image/img.png);
    min-height: calc(100vh - 80px);
    width: 100%;
    background-size: contain;
    background-position: right;
    background-repeat: no-repeat;
    padding: 10px 80px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
}

.hero h4 {
    font-size: 1.8rem;
}

.hero h1 {
    color: rgb(207, 43, 43);
    font-size: 2.5rem;
    /* padding: 10px 0; */
}

.hero p {
    font-size: 1.2rem;
}

.hero .shop-btn {
    display: flex;
    padding: 3rem;
    position: relative;
    z-index: 1;
    cursor: pointer;
    background: transparent;
    border: none;
}

.hero .shop-btn:hover img {
    transform: rotate(6deg) scale(1.1);
}

.hero .shop-btn:hover .text {
    color: #e3e6f3;
    font-weight: bold;
}

.shop-btn img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    transform: rotate(6deg);
    transition: .3s ease;

}

.shop-btn .text {
    background: transparent;
    border: none;
    font-size: 1.5rem;
    transition: .3s ease;
}
.products-container{
    min-height: 100vh;
    display: grid;
    place-content: center;
}
.container-index{
    width: 80vw;
    height:80vh;
    display: flex;
    flex-direction: column;
    
    justify-content: space-around;
}
.heading{
    width: 100%;
    text-align: center;
}
.heading h1{
    font-size: 4em;
    text-transform: uppercase;
   
}
.products{
    width: 100%;
    align-self: center;
    height: 70%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}
.products>a{
    color: #111;
}

.product{
    position: relative;
    /* background-color: var(--sectionBack); */
    width: 350px;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .3);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px 20px 40px;
    border-radius: 10px;
    transition: .3s;
}
.product:hover{
    transform: translateY(-15px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
}
.image{
    width:100%;
    height: 60%;
    display: grid;
    place-content: center;
}
.image img{
    width: 240px;
}
.namePrice{
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.namePrice h3{
    font-size: 2em;
    text-transform: capitalize;
    
}
.namePrice span{
    font-size: 1.5em;
    color: var(--starColor);
}
.product p{
    font-size: 18px;
    line-height: 25px;
}
.stars svg{
    font-size: 1.3em;
    color: var(--starColor);
}
.shop{
    position: absolute;
    bottom: 20px;
    right: 20px;
}
.shop button{
    padding: 10px 20px;
    border-radius: 7px;
    border: none;
    background-color: var(--textColor);
    color: var(--sectionBack);
    font-size: 18px;
    text-transform: capitalize;
    cursor: pointer;
    transition: .5s;
}
.shop button:hover{
    transform: scale(1.1);
}
/* seller-products */

 
