body {
    font-family: 'Arial', sans-serif;
    background-color: #ffffff;
    margin: 0;
    position: absolute;
}


/* header */
.header {
    position: fixed;
    right: 0;
    left: 0;
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: #ffffff;
    padding: 5px 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid #e1e1e1;
    z-index: 6;
}

.nav-bar-logo img {

    width: 120px;
    height: auto;
}



.category select {
    padding: 10px;
    border: 1px solid #ced4da;
    border-radius: 5px;
    background-color: #ffffff;
    font-size: 16px;
    transition: border-color 0.3s;
}

.category select:focus {
    border-color: #007bff;
    outline: none;
}

.search-container {
    flex: 1;
}

#search-btn {
    flex: 0.3;
}

.search {
    flex: 1;
    display: flex;
    margin-left: 20px;
    margin-right: 20px;
}

.search input[type="text"] {
    flex: 2;
    padding: 10px;
    border: 1px solid #ced4da;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.search input[type="text"]:focus {
    border-color: #007bff;
    outline: none;
}

.search button {
    flex: 1;
    padding: 10px;
    margin-left: 10px;
    background-color: #007bff;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.search button:hover {
    background-color: #0056b3;
}

#search-results {
    margin-top: 10px;
}






/*product container*/

.product-section-item-wrapper {
    background-color: #ffffff;
    display: flex;
    justify-content: space-between;
    gap: 2px;
    flex-wrap: wrap;
    margin: 20px;
    margin-top: 50px;
    margin-bottom: 0px;
    


}
.product-link{
    text-decoration: none;
}


.product-item {
    width: 250px;
    height: 350px;
    max-width: 280px;
    border-radius: 7px;
    margin: 10px;
    overflow: hidden;
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.1);
}

.product-image {
    background: transparent;
    height: 210px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px
   
}

.product-image img {
    overflow: hidden;
    object-fit: cover;
    height: 100%;
    width: auto;
    
}

.product-text {
    
    text-align: left;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: left;
    

}
.price{
    display: flex;
    flex-direction: column;
    
}
.dis{
    display: flex;
    flex-direction: row;
    text-align: center;
   
    column-gap: 10px;
    align-items: center;
}


.product-title {
    color: rgb(65, 63, 63);
    font-size: 16px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%; /* Adjust the width as needed */
    margin-bottom: 15px;
}

.product-purchace {
    margin-top: 10px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: auto;
}
.discount{
    font-size: 13px;
    font-weight: bold;
    color:#f0f0f0;
    background-color:  rgb(165, 32, 32);
    padding: 1px;
}

.product-price {
    color: rgb(219, 55, 5);
    font-size: 22px;
    font-weight: bold;
}
.old-price{
    color: gray;
    font-size: 15px;
    font-weight: 500;
}
.add-to-cart {
    padding: 7px 21px;
    border-radius: 7px;
    font-size: 16px;
}
.pagination{
    margin-top: 20px;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
   font-size: 20px;
   font-weight: 550;
}
.pagination a{
    text-decoration: none;
}
