.custom-nav ul li a {
    color: var(--secondary-color);
}
section.product-section {
    padding-top: 120px;
}
section.product-section .product-images {
    width: 100%;
    height: 500px;
    border-radius: 10px;
    overflow: hidden;
}
section.product-section .product-images img{
  width: 100%;
    height: 500px;
  object-fit:cover;
}
section.product-section .product-img-sec {
    padding-right: 5%;
}
section.product-section h1{
     font-size: 40px;
    margin-bottom: 10px; 
}
section.product-section h3{
  font-family: var(--para-font);
}
section.product-section form label{
 display: block;
    margin-bottom: 10px; 
}
section.product-section form select{
  width: 100%;
    padding: 8px 10px;
    font-size: 15px;
    border-radius: 5px;
    border: 1px solid var(--secondary-color);
}
section.product-section .product-btns .main-btn{
 display:inline-flex;
  align-items:center;
  justify-content:center;
}
section.product-section .product-btns {
    margin-top: 25px;
    margin-bottom: 25px;
    display: flex;
    gap: 15px;
}
section.product-section p.desc-head {
    margin-bottom: 0px;
}
section.product-slider {
    padding-top: 40px;
}
section.product-slider .asset-info {
    text-align: center;
    margin-bottom: 30px;
}
.food-card{
    background: transparent;
    border: none;
    position: relative;
}

.food-card a.text-link{
    position: relative;
    display: block;
    border-radius: 20px;
    overflow: hidden;
}

.food-card img{
    width: 100%;
    height: 340px;
    object-fit: cover;
    border-radius: 20px;
    transition: 0.4s ease;
}

.food-card .food-title{
    font-size: var(--f16);
    margin-top: 18px;
    margin-bottom: 4px;
    font-weight: 500;
}

.food-card .food-price{
    font-size: var(--f15);
    font-family: var(--para-font);
    color: var(--para-color);
}

/* Overlay hidden by default */
.food-card a.text-link::after{
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(79, 173, 193, 0.4);
    opacity: 0;
    transition: 0.4s ease;
}

/* Show overlay on hover */
.food-card a.text-link:hover::after{
    opacity: 1;
}
.food-card .main-btn{
 display:inline-block; 
}