﻿body {
    font-family: 'Segoe UI', sans-serif;
}

/* Hero */
.wheat-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/wheatbk.jpg') center/cover no-repeat;
    color: #fff;
    text-align: center;
    padding: 100px 20px;
}

    .wheat-hero h1 {
        font-size: 42px;
        font-weight: 700;
        letter-spacing: 2px;
    }

    .wheat-hero h2 {
        font-size: 28px;
        margin-top: 10px;
    }

/* Section */
.wheat-products {
    padding: 70px 10%;
    background: #f4f6f8;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

    .section-title h2 {
        font-size: 32px;
        color: #2e7d32;
    }

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Card */
.product-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: 0.3s;
}

    .product-card:hover {
        transform: translateY(-5px);
    }

    .product-card img {
        width: 100%;
        height: 360px;
        object-fit: cover;
    }

.product-content {
    padding: 25px;
}

    .product-content h3 {
        color: #2e7d32;
        margin-bottom: 15px;
    }

    .product-content ul {
        list-style: none;
        padding: 0;
    }

    .product-content li {
        margin-bottom: 10px;
    }

/* Brand Section */
.brand-section {
    background: #2e7d32;
    color: #fff;
    text-align: center;
    padding: 60px 20px;
}

    .brand-section h2 {
        font-size: 36px;
        font-weight: bold;
    }

    .brand-section .premium {
        margin-top: 10px;
        font-size: 18px;
        color: #ffd700;
    }

/* Responsive */
@media(max-width:768px) {
    .wheat-hero h1 {
        font-size: 30px;
    }
}
