/* Consumer Page Specific Styles */
.consumer-header {
    background: linear-gradient(135deg, #38a169, #48bb78);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.consumer-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: white;
}

.consumer-header p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Products Filter */
.products-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    background: #f7fafc;
    border: 2px solid #e2e8f0;
    border-radius: 30px;
    font-weight: 600;
    color: #4a5568;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn:hover, .filter-btn.active {
    background: #38a169;
    border-color: #38a169;
    color: white;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.product-image {
    height: 200px;
    background: #f7fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
}

.product-info {
    padding: 25px;
}

.product-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #1a202c;
}

.product-description {
    color: #4a5568;
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.5;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #38a169;
    margin-bottom: 20px;
}

.product-price span {
    font-size: 1rem;
    color: #a0aec0;
    font-weight: 400;
}

.product-actions {
    display: flex;
    gap: 10px;
}

.add-to-cart, .buy-now {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.add-to-cart {
    background: #f7fafc;
    color: #38a169;
    border: 2px solid #38a169;
}

.add-to-cart:hover {
    background: #38a169;
    color: white;
}

.buy-now {
    background: #38a169;
    color: white;
}

.buy-now:hover {
    background: #2f855a;
}

/* Subscription Banner */
.subscription-banner {
    background: linear-gradient(135deg, #f0fff4, #c6f6d5);
    padding: 80px 0;
    margin-top: 60px;
}

.subscription-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.subscription-content h2 {
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 15px;
}

.subscription-content > p {
    color: #4a5568;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.subscription-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.sub-option {
    background: white;
    border-radius: 10px;
    padding: 40px 30px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

.sub-option:hover {
    transform: translateY(-10px);
}

.sub-option.recommended {
    border: 2px solid #38a169;
}

.recommended-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #38a169;
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.sub-option h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #1a202c;
}

.sub-option .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #38a169;
    margin-bottom: 10px;
}

.sub-option .price span {
    font-size: 1rem;
    color: #a0aec0;
    font-weight: 400;
}

.sub-option .savings {
    color: #e53e3e;
    font-weight: 600;
    margin-bottom: 25px;
}

.sub-option .btn-primary {
    width: 100%;
    margin-top: 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .consumer-header h1 {
        font-size: 2.2rem;
    }
    
    .consumer-header p {
        font-size: 1rem;
    }
    
    .products-filter {
        justify-content: center;
    }
    
    .subscription-content h2 {
        font-size: 2rem;
    }
    
    .sub-option .price {
        font-size: 2rem;
    }
}