/* Shop Header */
#shop-hero {
    background-color: var(--soft-accent-green);
    color: #fff;
    text-align: center;
    padding: 100px 0;
    margin-top: 70px; /* Adjust for fixed header */
}

#shop-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

#shop-hero p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Product Grid specific styles for shop.html */
#product-grid-section {
    padding: 60px 0;
    background: #fff;
}

#product-grid-section .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

#product-grid-section .product-card {
    background: var(--card-background-cream);
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 25px;
    text-align: center;
    transition: transform 0.2s ease-in-out;
}

#product-grid-section .product-card:hover {
    transform: translateY(-5px);
}

#product-grid-section .product-card img {
    max-width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 20px;
}

#product-grid-section .product-card h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--primary-dark-green);
}

#product-grid-section .product-card h4 {
    font-size: 1em;
    color: #777;
    margin-bottom: 15px;
}

#product-grid-section .product-card p {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 20px;
    min-height: 70px; /* Ensure consistent height for descriptions */
}

#product-grid-section .product-card .price {
    font-size: 1.5em;
    font-weight: bold;
    color: var(--harvest-gold); /* Harvest Gold for pricing */
    margin-bottom: 20px;
}

/* Education & Trust Section */
#education-trust-section {
    background-color: var(--main-background-beige);
    padding: 80px 0;
    text-align: center;
}

#education-trust-section h2 {
    font-size: 2.8rem;
    color: var(--primary-dark-green);
    margin-bottom: 50px;
}

.education-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.education-card {
    background-color: var(--card-background-cream); /* Cream background */
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    text-align: left;
}

.education-card h3 {
    font-size: 1.5rem;
    color: var(--primary-dark-green);
    margin-bottom: 15px;
}

.education-card p {
    font-size: 1.05em;
    line-height: 1.7;
    color: #555;
}

/* Legal Disclaimer */
#legal-disclaimer {
    background-color: #f8f8f8;
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid #eee;
}

#legal-disclaimer .container {
    max-width: 900px;
}

#legal-disclaimer p {
    font-size: 0.85em;
    color: #666;
    line-height: 1.6;
}

.btn-add-to-cart {
    background-color: var(--card-background-cream);
    color: var(--primary-dark-green);
    padding: 10px 20px;
    border-radius: 5px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--primary-dark-green);
    cursor: pointer;
}

.btn-add-to-cart:hover {
    background-color: var(--primary-dark-green);
    color: var(--card-background-cream);
}