.shop-page { padding: 10rem 0 6rem; }
.filter-container { display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem; margin-bottom: 4rem; }
.filter-btn {
    background: transparent; border: 1px solid #ddd; border-radius: 50px;
    padding: 12px 24px; font-weight: 700; transition: all 0.3s ease;
}
.filter-btn:hover { background-color: var(--soft-beige); border-color: var(--primary-green); transform: translateY(-3px); }
.filter-btn.active { background-color: var(--primary-green); color: white; border-color: var(--primary-green); }
.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2.5rem; }
.product-card {
    background: white; border-radius: 16px; box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    text-align: center; padding: 1rem; display: flex; flex-direction: column;
    transition: all 0.4s ease; overflow: hidden;
    opacity: 0; /* For initial animation */
}
.product-card:hover { transform: translateY(-8px); box-shadow: 0 12px 25px rgba(0,0,0,0.1); }
.product-card img { width: 100%; height: 250px; object-fit: cover; border-radius: 8px; margin-bottom: 1.5rem; }
.product-card h3 {
    font-family: var(--font-heading); font-weight: 700;
    color: #1c1c1c;
    margin-bottom: 0.5rem;
}
.product-description {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    margin: 0.5rem auto;
    flex-grow: 1;
    max-width: 90%;
}
.product-price {
    font-size: 1.2rem; font-weight: 700;
    color: var(--dark-green);
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}