
/* ===== Vegetables Section ===== */

.vegetables-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
    width: 100%;
}

@media (max-width: 1280px) {
    .vegetables-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 1024px) {
    .vegetables-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 640px) {
    .vegetables-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
}

@media (max-width: 400px) {
    .vegetables-grid { grid-template-columns: repeat(2, 1fr); }
}

@keyframes cardEntrance {
    from { opacity: 0; transform: translateY(24px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0)    scale(1);    }
}

.veg-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 1.25rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease, border-color 0.3s ease;
    animation: cardEntrance 0.55s cubic-bezier(0.25, 1, 0.5, 1) both;
}

/* Card entrance stagger */
.veg-card:nth-child(1)  { animation-delay: 0.05s; }
.veg-card:nth-child(2)  { animation-delay: 0.10s; }
.veg-card:nth-child(3)  { animation-delay: 0.15s; }
.veg-card:nth-child(4)  { animation-delay: 0.20s; }
.veg-card:nth-child(5)  { animation-delay: 0.25s; }
.veg-card:nth-child(6)  { animation-delay: 0.30s; }
.veg-card:nth-child(7)  { animation-delay: 0.35s; }
.veg-card:nth-child(8)  { animation-delay: 0.40s; }
.veg-card:nth-child(9)  { animation-delay: 0.45s; }
.veg-card:nth-child(10) { animation-delay: 0.50s; }

.veg-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 16px 40px rgba(22, 163, 74, 0.14);
    border-color: #86efac;
}

/* Hide card when filtered out */
.veg-card.hidden {
    display: none;
}

/* Image Wrapper */
.card-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    background-color: #f0fdf4;
}

.veg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}

.veg-card:hover .veg-image {
    transform: scale(1.07);
}

/* Card body */
.card-details {
    padding: 1rem 1.1rem 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    flex: 1;
}

.veg-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.veg-name {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
    margin: 0;
}

.veg-stock {
    font-size: 0.65rem;
    font-weight: 600;
    color: #16a34a;
    background: #dcfce7;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    white-space: nowrap;
    flex-shrink: 0;
    display: none;
}

.veg-desc {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.5;
    text-align: center;
    margin: 0;
}

@media (max-width: 1024px) {
    .veg-desc { font-size: 0.75rem; }
    .veg-name { font-size: 0.9rem; }
    .card-details { padding: 0.75rem 0.85rem 1rem; }
}

@media (max-width: 640px) {
    .veg-desc { display: none; }
    .veg-name { font-size: 0.85rem; }
    .card-details { padding: 0.6rem 0.75rem 0.75rem; gap: 0.25rem; }
}




/* ===== Social Icon Tooltips ===== */

.social-tooltip-wrap {
    position: relative;
    display: inline-flex;
}

.social-tooltip {
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    background: #111827;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    white-space: nowrap;
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 10;
}

.social-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: #111827;
}

.social-tooltip-wrap:hover .social-tooltip {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* ===== About Section ===== */

.about-section {
    position: relative;
    background: #FAFAF9;
    overflow: hidden;
}

/* Subtle warm diagonal background split */
.about-bg-split {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #FFF7ED 0%, #FAFAF9 45%, #F0FDF4 100%);
    opacity: 0.55;
    pointer-events: none;
}

/* Layout */
.about-header {
    text-align: center;
    margin-bottom: 3rem;
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
}

/* ---- Visual / Image Stack ---- */
.about-visual {
    position: relative;
}

.about-stack {
    position: relative;
    height: 500px;
}

/* Full-height hero image with rounded corners */
.about-hero-img {
    position: absolute;
    inset: 0;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0,0,0,0.18);
}
.about-hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25,1,0.5,1);
}
.about-hero-img:hover img { transform: scale(1.04); }

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.38) 0%, rgba(0,0,0,0.05) 50%, transparent 100%);
    pointer-events: none;
}

/* Inset thumbnail pinned bottom-left */
.about-thumb {
    position: absolute;
    bottom: 1.25rem;
    left: 1.25rem;
    width: 38%;
    aspect-ratio: 4/3;
    border-radius: 1.25rem;
    overflow: hidden;
    border: 3px solid #fff;
    box-shadow: 0 12px 36px rgba(0,0,0,0.22);
    z-index: 4;
    transition: transform 0.4s ease;
}
.about-thumb:hover { transform: scale(1.03); }
.about-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* Stat chips */
.about-chip {
    position: absolute;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    background: #fff;
    border-radius: 1rem;
    padding: 0.6rem 1rem 0.6rem 0.6rem;
    box-shadow: 0 8px 28px rgba(0,0,0,0.13);
    border: 1px solid rgba(255,255,255,0.9);
}
.about-chip-top { top: 1.25rem; right: 1.25rem; }
.about-chip-bot { bottom: 1.25rem; right: 1.25rem; }

.about-chip-icon {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.625rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.about-chip-num {
    font-family: 'Poppins', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    color: #111827;
    line-height: 1.1;
    white-space: nowrap;
}
.about-chip-lbl {
    font-size: 0.68rem;
    color: #9CA3AF;
    white-space: nowrap;
    margin-top: 1px;
}

/* ---- Content Card ---- */
.about-content-card {
    padding: 0.5rem 0;
}

.about-body-lg {
    font-size: 1.05rem;
    color: #1F2937;
    line-height: 1.8;
    margin-bottom: 0.875rem;
}
.about-body {
    font-size: 0.9375rem;
    color: #6B7280;
    line-height: 1.8;
    margin-bottom: 0;
}

.about-divider {
    height: 2px;
    background: linear-gradient(90deg, #EA580C, #F97316, #22C55E, transparent);
    border-radius: 2px;
    margin: 1.75rem 0;
    opacity: 0.35;
}

/* Checklist */
.about-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.about-check-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.875rem 1rem;
    border-radius: 0.875rem;
    border-left: 3px solid transparent;
    box-shadow: 0 0 1px rgba(0, 0, 0, 0.1);
    background: #FAFAFA;
    transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.about-check-item:hover {
    border-left-color: var(--accent, #EA580C);
    background: var(--accent-bg, #FFF7ED);
    transform: translateX(4px);
}

.about-check-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-check-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #111827;
    line-height: 1.3;
}
.about-check-sub {
    font-size: 0.78rem;
    color: #9CA3AF;
    margin-top: 0.2rem;
    line-height: 1.4;
}

/* Responsive */
@media (max-width: 1024px) {
    .about-layout { grid-template-columns: 1fr; gap: 3rem; }
    .about-stack { height: 420px; }
    .about-content-card { padding: 0; }
}

@media (max-width: 640px) {
    .about-stack { height: 320px; }
    .about-thumb { width: 42%; }
    .about-header { margin-bottom: 2rem; }
}
