/* ============================================ */
/* PRODUCTS PAGE - RESPONSIVE STYLES            */
/* ============================================ */

/* Base mobile styles */
.container {
    max-width: 100%;
    padding: 0 16px;
    margin: 0 auto;
}

.products-banner {
    position: relative;
    height: 35vh;
    min-height: 240px;
    background: url('https://knnindia.co.in/uploads/newsfiles/EXPORTS-15-1-2024.jpg') center/cover no-repeat;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.45), rgba(26,60,52,0.75));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.banner-title {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.banner-subtitle {
    font-size: 1.2rem;
    max-width: 90%;
}

.section__title-center {
    font-size: 2rem;
    text-align: center;
    margin: 2.5rem 0 1.5rem;
    color: #1a3c34;
}

.block-title {
    font-size: 1.9rem;
    font-weight: 700;
    color: #1a3c34;
    margin: 2rem 0 1.2rem;
}

.partner-title {
    color: #2e7d32;
}

.section__list.check-list {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0;
}

.section__list.check-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
}

.section__list.check-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
}

.product-section {
    margin-bottom: 4rem;
}

.product-images {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
}

.product-images img,
.single-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    object-fit: cover;
}

.single-image {
    max-width: 800px;
    margin: 2rem auto 0;
}

.cta-button {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.9rem 2.2rem;
    background: #4CAF50;
    color: white;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s;
}

.cta-button:hover {
    background: #388e3c;
    transform: translateY(-2px);
}

.text-center {
    text-align: center;
}

/* Tablet and larger */
@media (min-width: 768px) {
    .container {
        padding: 0 30px;
    }

    .banner-title {
        font-size: 3rem;
    }

    .banner-subtitle {
        font-size: 1.4rem;
    }

    .section__title-center {
        font-size: 2.4rem;
    }

    .block-title {
        font-size: 2.3rem;
    }

    .product-images {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-banner {
        height: 40vh;
        min-height: 300px;
    }
}

/* Desktop and larger */
@media (min-width: 992px) {
    .container {
        max-width: 1200px;
        padding: 0 40px;
    }

    .section__title-center {
        font-size: 2.8rem;
    }

    .block-title {
        font-size: 2.6rem;
    }

    .product-images {
        grid-template-columns: repeat(3, 1fr);
    }

    .product-section {
        max-width: 1100px;
        margin-left: auto;
        margin-right: auto;
    }

    .products-banner {
        height: 45vh;
        min-height: 340px;
    }
}

@media (min-width: 1200px) {
    .product-images {
        grid-template-columns: repeat(4, 1fr);
    }
}
.product-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.product-images img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.additional-info {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.additional-info h4 {
    color: #2d5c2a;
    margin: 15px 0 10px 0;
    border-bottom: 2px solid #e8f5e9;
    padding-bottom: 5px;
}

.additional-info ul {
    list-style: none;
    padding-left: 0;
}

.additional-info li {
    padding: 5px 0;
    padding-left: 25px;
    position: relative;
}

.additional-info li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
}

.inquiry-btn {
    background: #4CAF50;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-left: 15px;
    transition: background 0.3s;
}

.inquiry-btn:hover {
    background: #388E3C;
}

.product-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .product-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .inquiry-btn, .product-detail-link {
        text-align: center;
        justify-content: center;
    }
}