/* ================= FILTER BAR ================= */
.filter-bar {
    background: #fff;
    padding: 15px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0,0,0,.1);
}

.filter-bar select,
.filter-bar button {
    padding: 8px 14px;
    margin: 5px;
    border-radius: 0px !important;
}

/* ================= MAIN WRAPPER ================= */
.veg-restaurant-container {
    max-width: 1100px;
    margin: 30px auto;
    padding: 0 15px;
}

/* ================= RESTAURANT CARD ROW ================= */
.veg-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 35px;
    background: transparent;
}

/* Left & Right 3D Rounded Image Cards */
.veg-card .image-card-3d {
    flex: 1;
    max-width: 320px;
    height: 220px;
    border-radius: 20px; /* Rounded corners matching your reference image */
    overflow: hidden;
    /* 3D Soft Shadow & Depth effect */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18), 
                0 2px 6px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.veg-card .image-card-3d:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

.veg-card .image-card-3d img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
/* ================= CENTER DETAILS BOX (3D ROUNDED RECTANGLE) ================= */
.veg-card .center-details-3d {
    flex: 1.2;
    padding: 25px 20px;
    text-align: center;
    border-radius: 20px; /* Matching 3D rounded rectangle corners */
    
    /* Soft Light-Green Gradient Background */
    background: linear-gradient(180deg, #f2f8e8 0%, #dbe8be 100%);
    
    /* 3D Border & Outer Shadow for Raised Depth */
    border: 1px solid #c3d69b;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9),
                0 10px 25px rgba(0, 0, 0, 0.12),
                0 2px 6px rgba(0, 0, 0, 0.08);
    
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Optional Hover Elevation Effect */
.veg-card .center-details-3d:hover {
    transform: translateY(-3px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9),
                0 14px 28px rgba(0, 0, 0, 0.18);
}

/* Restaurant Name */
.veg-card .center-details-3d h2 {
    font-size: 26px;
    font-weight: bold;
    color: #111111;
    margin: 0 0 10px 0;
    font-family: 'Times New Roman', Times, serif, Georgia;
}

/* Address & Tel text */
.veg-card .center-details-3d p {
    font-size: 17px;
    color: #222222;
    margin: 6px 0;
    line-height: 1.3;
    font-family: 'Times New Roman', Times, serif, Georgia;
}

.veg-card .center-details-3d p strong {
    font-weight: bold;
    color: #000000;
} 
/* Responsive View for Mobile Devices */
@media (max-width: 768px) {
    .veg-card {
        flex-direction: column;
    }
    
    .veg-card .image-card-3d {
        max-width: 100%;
        width: 100%;
        height: 220px;
    }
}