﻿.paddy-hero {
    background: url('/Content/Image/paddy-rice-field.jpg') center/cover no-repeat;
    height: 320px;
    position: relative;
}

.hero-overlay {
    background: rgba(0,0,0,.6);
    color: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.paddy-products {
    padding: 60px 5%;
    text-align: center;
}

.section-title {
    font-size: 34px;
    margin-bottom: 40px;
}

.paddy-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

.paddy-card {
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,.1);
}

    .paddy-card img {
        width: 100%;
        height: 350px;
        object-fit: cover;
        border-radius: 12px;
    }

    .paddy-card button {
        background: #2e7d32;
        color: #fff;
        border: none;
        padding: 8px 18px;
        border-radius: 5px;
        margin-top: 10px;
    }

/* DETAILS PANEL */
.details-panel {
    display: none;
    background: #f4f8f4;
    margin-top: 40px;
    padding: 30px;
    border-radius: 12px;
}

.langbox {
    display: none;
}

    .langbox.active {
        display: block;
    }

.lang-switch button {
    margin: 10px;
    padding: 6px 15px;
}
.details-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

    .details-table td {
        border: 1px solid #ccc;
        padding: 10px;
        text-align: left;
    }

    .details-table tr:nth-child(even) {
        background: #f2f2f2;
    }