/* @import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap'); */



body {
   font-family: Arial, Helvetica, sans-serif;
    background-color: #FAFAFA;
}

.women-header {
    width: 90%;
    margin: auto;
    text-align: center;
    margin: 1rem;
}

.filter-section {
    width: 90%;
    margin: auto;

}

select {
    width: 10%;
    height: 40px;
    margin: 1rem;
    background-color: white;
    outline: none;
    border: none;
}

#all-product-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 90%;
    margin: auto;
    gap: 10px;
    cursor: pointer;
}

#all-product-section>div {
    /* border: 1px solid red; */
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    padding: 20px;
    border-radius: 10px;
}

#all-product-section>div>img {
    width: 100%;
}

#all-product-section p {
    margin: 3px;
}

.price-style {
    font-weight: 700;
    display: flex;
    justify-content: space-between;
}

.price-style>:nth-child(2) {
    text-decoration: line-through;
    /* border: 1px solid red; */
    color: gray;
}

.price-style>:nth-child(3) {
    color: grey;
}

/* medium screen */
@media all and (min-width: 768px) and (max-width: 1024px) {
    #all-product-section {
        grid-template-columns: repeat(3, 1fr);
    }

}

/* small screens */
@media all and (min-width: 200px) and (max-width: 767px) {
    #all-product-section {
        grid-template-columns: repeat(2, 1fr);
    }

}
#cart-count{
    /* background-color: white; */
    color: white;
    font-weight: 600;
  }
.alreadyloginuser{
    display: block;   
}
.signinSignuptextnone{
    display:none;
}