/* Products Page Specific Styles */
.product-hero {
    background: linear-gradient(135deg, #2e7d32 0%, #66bb6a 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.product-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1542838132-92c53300491e?w=1920') center/cover;
    opacity: 0.15;
}

.product-category-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    height: 100%;
}

.product-category-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(46,125,50,0.3);
}

.product-category-image {
    height: 300px;
    position: relative;
    overflow: hidden;
}

.product-category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-category-card:hover .product-category-image img {
    transform: scale(1.1);
}

.product-category-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #2e7d32, #43a047);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(46,125,50,0.4);
    z-index: 10;
}

.product-category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.product-category-card:hover .product-category-overlay {
    transform: translateY(0);
}

.product-category-overlay h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.product-category-overlay p {
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.product-category-content {
    padding: 30px;
}

.product-category-title {
    color: #2e7d32;
    font-weight: bold;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.product-category-description {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.product-features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.product-features li {
    padding: 8px 0;
    color: #555;
    display: flex;
    align-items: center;
}

.product-features li i {
    color: #43a047;
    margin-right: 10px;
    font-size: 1.1rem;
}

.product-cta-btn {
    background: linear-gradient(135deg, #2e7d32, #43a047);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.product-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(46,125,50,0.4);
    color: white;
}

.product-stats {
    background: #f8f9fa;
    padding: 40px 0;
    margin: 60px 0;
}

.stat-box {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #2e7d32;
    margin-bottom: 10px;
}

.stat-label {
    color: #666;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .product-category-image {
        height: 250px;
    }
    
    .product-hero {
        padding: 60px 0;
    }
}
