/* --- Product Page Specific Styles --- */

/* --- Product Hero Section --- */
.products-hero {
    padding: 80px 0;
    background-color: var(--bg-light);
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.products-hero-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.products-hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* --- Product Grid --- */
.product-grid-section {
    padding: 100px 0;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    color: var(--text-secondary);
    text-align: right;
    flex-grow: 1;
    /* Pushes price/link to the bottom */
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.75rem;
}

.product-features .fa-check {
    color: var(--gradient-end);
}


/* --- Re-using and extending .product-card from main style.css --- */
/* The base .product-card style is inherited. We just add features list styles */


/* --- Final CTA Section (from professional version) --- */
.cta-section {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-section p {
    max-width: 600px;
    margin: 0 auto 2rem auto;
    opacity: 0.9;
    font-size: 1.1rem;
}

.cta-button {
    font-size: 1.1rem;
    padding: 15px 35px;
    background-color: #fff;
    color: var(--primary-color);
}

.cta-button:hover {
    background-color: var(--bg-hover);
    color: var(--primary-dark);
}

.cta-button i {
    margin-right: 10px;
}


/* --- Responsive for Product Grid --- */
@media (max-width: 992px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .products-hero-title {
        font-size: 2.5rem;
    }

    .product-grid-section {
        padding: 80px 0;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .products-hero {
        padding: 60px 0;
    }

    .products-hero-title {
        font-size: 2.2rem;
    }

    .cta-section h2 {
        font-size: 2rem;
    }
}