:root{
    --background-color: rgba(0, 128, 255, 0.7);
    --text-color: #fff9f9;
    --button-color: rgb(16, 146, 16);
    --button-color-dark: rgb(42, 154, 42);
    --bg-footer: linear-gradient(to bottom, #53a8fd, #0066cc);
    --heading-font-style : 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  
  }
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.category_image {
    position: relative;
    width: 100%;
    /* height: 250px; */
    /* background-color: #C551CEF2; */
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.category_image .text {
    font-weight: 600;
    font-family: 'Roboto', sans-serif;
    font-size: 40px;
    font-weight: 500;
    line-height: 46.88px;
    text-align: center;
}

.sub_product_list {
    margin: 0 50px;
    height: auto;
    overflow: hidden;
    height: 356px;
}

.sub_product {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-gap: 10px;
    max-height: 296px;
    overflow: hidden;
}

.product_container{
    
    /* margin: 40px 50px; */
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 10px;
    align-items: center;
    }
.contents_container{
    margin: 20px 20px;  
    /* color: var(--background-color);  */
}

.vl{
    /* position: absolute; */
    margin-left: 95%;
    color: #77297D;
    font-size: 16px;
}
.product {
    /* padding: 12px;     */
    /* position: relative; */
    height: 220px;
    /* margin-bottom: 20px; */
    border-radius: 3px;
    box-shadow: 3px 6px 10px rgba(72, 84, 96, 0.3), 0px 2px 6px rgba(0, 123, 255, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    padding: 0px;
    transition: all 0.3s ease;
}
.product:hover {
    border-color: #f5f5f6; /* Change border color on hover */
    box-shadow: 0px 4px 10px rgba(90, 91, 91, 0.3); /* Add a blue shadow */
    transform: scale(1.02); /* Slightly increase the size */
    background-color: #f8f9fa; /* Optional: subtle background color change */
}

.product_quantity{
    font-size: 10px;
    color: rgb(57, 51, 51);
}

.product > img {
    width: 100%;
    height: 100.28px;
    object-fit:cover;
    text-align: center;
    margin-top: -8px;
    border-radius: 2px;
}

.fvt {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    color: #9E9E9E;
    border: 1.6px solid #E8E8E8; 

}

/* .time_info {
    margin-top: 10px;
    display: flex;
    align-items: center;
} */

.material-symbols-outlined {
    margin-right: 5px;
}

.exp {
    padding: 20px;
}

.contain {
    display: flex;
    align-items: center;
}

.img-box {
    margin: 0 10px;
    text-decoration: none;
    color: inherit;
}

.img-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.img-container img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.img-text {
    margin-top: 10px;
    font-size: 12.60px;
}

.explore {
    font-family: 'Roboto', sans-serif;
}

.dv{
width: 69%;
/* width: 51px; */
/* border: 4px solid red; */
/* height: 12px; */
top: 137px;
left: 13px;
gap: 0px;
border-radius: 4px 4px 4px 4px;
opacity: 0px;
background-color: #F0F0F0;
display: flex;
text-align: left;
font-size: 10px;
/* justify-content: left;
margin:10px ; */
}
.dvl{
    font-size:  12px;
}
.prodetails{
    width: 100%;
    /* border: 2px solid red; */
    justify-content: left;
    color: rgb(46, 42, 42); 
    padding-left: 10px;
    
    }
.product_title{
    font-size: 13px;
    font-weight: 500;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.product_price{
    display: flex;
    justify-content: space-between;
}

.add_cart{
    margin-right: 5px;
    align-items: center;
    background-color: var(--background-color);
    color: var(--text-color);
    border: none;
    width: 100px;
    height: 35px;
    font-size: 10px;
    border-radius: 2PX;
}
.add_cart:hover{
  background-color:white;
  color: var(--background-color);
}

