main {
     width: 90%;
     margin: auto;
     margin-top: 30px;
     height: 100%;
     display: flex;
}

#Product-sideBar {
     width: 20%;
}

#category {
     width: 100%;
}

#input-container div {
     width: 100%;
     padding: 14px 0;
     padding-left: 10px;
     display: flex;
     align-items: center;
}

label {
     margin-left: 10px;
}

#input-container input {
     width: fit-content;
}


#input-container div:last-child {
     border-top: 1px solid #c5c5c5;
     border-bottom: 1px solid #c5c5c5;
}

#Product-sideBar h1 {
     font-size: 1.2rem;
}

#filterBy {
     width: 100%;
     margin-top: 40px;
}

#filterBy>div:last-child {
     width: 100%;
     display: flex;
     flex-direction: column;
     padding-left: 10px;
}

#filterBy div>button {
     display: block;
     width: 75%;
     margin-top: 10px;
     padding: 7px 15px;
     display: flex;
     background-color: white;
     border: 2px solid black;
     align-items: center;
     cursor: pointer;
     justify-content: space-between;
}

#filterBy button span {
     font-size: 1.2rem;
}


#product-container {
     padding-left: 40px;
     width: 80%;
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     grid-gap: 30px;
     grid-template-rows: repeat(3, 480px);
}


.product-item {
     display: flex;
     cursor: pointer;
     flex-direction: column;
     align-items: center;
     justify-content: center;
}

.product-image {
     position: relative;
     width: 100%;
     display: flex;
     justify-content: center;
     align-items: center;
     flex-direction: column;
     height: 320px;
}

.product-image>div:first-child {
     width: 100%;
     height: 100%;
     display: flex;
     justify-content: center;
     align-items: center;
}

.product-image>div>img {
     width: 75%;
     height: 100%;
}

.product-cart {
     width: 100%;
     height: 0px;
     display: flex;
     align-items: center;
     justify-content: space-around;
     position: absolute;
     bottom: 0;
     left: 0;
     visibility: hidden;
     opacity: 0;
     transition: 300ms;
     background-color: #21dfcf;
     color: white;
}

.product-cart div {
     width: 100%;
     display: flex;
     justify-content: center;
     flex-direction: column;
     align-items: center;
}

.product-cart span {
     font-size: 2rem;
}

.product-cart p {
     margin-top: 5px;
     font-size: 1rem;
     letter-spacing: 1px;
     font-weight: 600;
}

.product-item:hover .product-cart {
     height: 80px;
     opacity: 1;
     visibility: visible;
}




.product-details {
     width: 100%;
     margin-top: 10px;
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
}

.offer {
     width: 100%;
     font-size: 1.2rem;
     font-weight: 600;
     color: #d50032;
     display: flex;
     margin: 5px 0;
     justify-content: center;
     align-items: center;
     letter-spacing: 1px;
}

.offer p {
     margin-left: 5px;
}

.product-brand {
     margin-top: 5px;
     font-size: 1rem;
     font-weight: 600;
     letter-spacing: 1px;
     text-align: center;
}

.product-description {
     width: 100%;
     margin-top: 5px;
     text-align: center;
     color: rgb(31, 30, 30);
     word-wrap: break-word;
}

.product-price {
     margin-top: 5px;
     width: 100%;
     font-weight: 600;
     text-align: center;

     font-size: 1rem;
}