.veg-grid {
    display: grid;
    gap: 16px;
    background: #f0f6ff;
    padding: 10px;
}
.veg-cols-1 { grid-template-columns: 1fr; }
.veg-cols-2 { grid-template-columns: repeat(2, 1fr); }
.veg-cols-3 { grid-template-columns: repeat(3, 1fr); }
.veg-cols-4 { grid-template-columns: repeat(4, 1fr); }
.veg-thumb {
    position: relative;
    cursor: pointer;
}
.veg-thumb img {
    width: 100%;
    display: block;
    border-radius: 10px;
}
.veg-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0,0,0,0.5);
    border-radius: 50%;
    padding: 10px;
}
.veg-overlay svg path { fill:#fff;
}
.veg-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.veg-lightbox-show {
    display: block;
}
.veg-lightbox-visible {
    opacity: 1;
}
.veg-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.85);
}
.veg-lightbox-inner {
    position: relative;
    margin: 5% auto;
    max-width: 900px;
    background: #000;
    padding: 20px;
    z-index: 10001;
    box-shadow: 0 0 20px rgba(0,0,0,0.7);
}
.veg-lightbox-close {
    position: absolute;
    top: 10px;
    right: 20px;
    color: #fff;
    background: none;
    border: none;
    font-size: 32px;
    cursor: pointer;
    z-index: 10002;
}
.veg-title {
    text-align: center;
    margin-top: 8px;
    font-weight: bold;
    color: #333;
}
@media only screen and (min-width: 1024px) {
 .veg-thumb img {
	min-height: 100%;
    height: 300px;
}
}
.veg-item{background: #fff;
    padding: 5px;
border-radius: 20px;}
.veg-more {
    margin-top: 8px;
}
a.veg-more-btn {
    float: right;
    padding: 5px 10px;
    border: 1px solid;
    color: #3d853e;
    border-radius: 50px;
}

   .veg-more-btn:hover {
    background: #42a8df;
    color: #fff;
}
@media only screen and (max-width: 768px) {
	.veg-description{display:none;}
	.veg-title,a.veg-more-btn {font-size:12px;}
}