:root {
    --veg-green: #1a472a;
    --veg-light-bg: #f8f9f7;
    --veg-white: #ffffff;
    --card-shadow: 0 10px 30px rgba(0,0,0,0.05);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── 1. BASE ── */
.veg-body {
    margin: 0;
    padding: 0;
    background-color: var(--veg-light-bg);
    font-family: 'Outfit', sans-serif;
    cursor: default !important;
}

/* ── 2. NAVBAR SCROLL ── */
.veg-nav-wrapper {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
}
.veg-nav-wrapper.scrolled {
    background: var(--veg-green) !important;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

/* ── 3. HERO SECTION ── */
.veg-hero {
    position: relative;
    height: 100vh;
    min-height: 750px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--veg-green);
}

.veg-hero-bg {
    position: absolute;
    inset: 0;
    background: url('../assets/images/vigtables/background.jpg') center/cover no-repeat;
    z-index: 0;
}

.veg-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(20, 45, 30, 0.75);
    z-index: 1;
}

#veg-3d-container {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.veg-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
}

.veg-title { 
    font-size: clamp(4rem, 12vw, 8rem); 
    font-weight: 800; 
    margin: 0; 
    letter-spacing: -2px; 
}

.veg-subtitle { 
    font-size: 1.3rem; 
    opacity: 0.9; 
    max-width: 600px; 
    margin: 20px auto 0; 
}

/* ── 4. WAVE DIVIDER ── */
.veg-wave-divider {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 5;
}

.veg-wave-divider svg {
    display: block;
    width: 100%;
    height: 140px;
}

.veg-wave-divider .shape-fill { 
    fill: var(--veg-light-bg); 
}

/* ── 5. PRODUCT CARDS ── */
.veg-products { 
    padding: 120px 0; 
}

.veg-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.veg-card {
    background: var(--veg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.veg-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.veg-card-img {
    height: 250px;
    position: relative;
    background: #f1f3f0;
}

.veg-card-img img { 
    width: 100%; 
    height: 100%; 
    object-fit: contain; 
    padding: 20px; 
    transition: var(--transition);
}

.veg-card:hover .veg-card-img img {
    transform: scale(1.05);
}

.in-season-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #2d6a4f;
    color: white;
    font-size: 10px;
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: 700;
    z-index: 2;
}

.veg-card-body { 
    padding: 25px; 
    flex: 1; 
    display: flex; 
    flex-direction: column; 
}

.veg-card-body h3 { 
    font-size: 1.6rem; 
    color: #111; 
    margin: 0 0 10px; 
    font-weight: 700;
}

.veg-card-body p { 
    font-size: 0.95rem; 
    color: #666; 
    line-height: 1.6; 
    margin-bottom: 25px; 
    flex: 1; 
}

.veg-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.availability { 
    font-size: 0.85rem; 
    color: #444; 
    font-weight: 500; 
    display: flex;
    align-items: center;
    gap: 5px;
}

.btn-details-green {
    background: var(--veg-green);
    color: white;
    padding: 8px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition);
}

.btn-details-green:hover { 
    background: #11331d;
    transform: scale(1.05); 
}

/* ── 6. ANIMATIONS ── */
.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── 7. RESPONSIVE ── */
@media (max-width: 992px) { 
    .veg-grid { grid-template-columns: repeat(2, 1fr); } 
}
@media (max-width: 650px) { 
    .veg-grid { grid-template-columns: 1fr; } 
}