/* ==========================================
   Products Page - Info Style (No Images)
========================================== */

/* Products Intro */
.products-intro {
    padding: 80px 0 40px;
    background: var(--bg-white);
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
}

.intro-content .lead {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-top: 20px;
}

/* Products Section */
.products-section {
    padding: 60px 0 80px;
    background: var(--bg-light);
}

/* Category Section */
.product-category-section {
    margin-bottom: 80px;
}

.product-category-section:last-child {
    margin-bottom: 0;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 3px solid var(--primary-color);
}

.category-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    flex-shrink: 0;
}

.category-header h3 {
    font-size: 2rem;
    color: var(--text-dark);
    margin: 0;
}

/* Info Products Grid */
.info-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

/* Info Product Card */
.info-product-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.info-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(0,0,0,0.12);
    border-color: var(--primary-color);
}

.product-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 138, 101, 0.1) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.product-icon-wrapper i {
    font-size: 36px;
    color: var(--primary-color);
}

.info-product-card h4 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 600;
}

.product-info {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.product-specs {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-specs li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--text-dark);
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border-color);
}

.product-specs li:last-child {
    border-bottom: none;
}

.product-specs i {
    color: var(--primary-color);
    font-size: 14px;
    flex-shrink: 0;
}

/* Products CTA */
.products-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(255, 138, 101, 0.05) 100%);
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: white;
    font-size: 48px;
}

.cta-content h2 {
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.cta-content .lead {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Product Notes */
.product-notes {
    padding: 80px 0;
    background: var(--bg-white);
}

.notes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.note-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--bg-light);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.note-card:hover {
    transform: translateY(-5px);
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.note-card i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: block;
}

.note-card h4 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.note-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .info-products-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
    
    .category-header h3 {
        font-size: 1.7rem;
    }
}

@media (max-width: 768px) {
    .products-intro {
        padding: 60px 0 30px;
    }
    
    .products-section {
        padding: 40px 0 60px;
    }
    
    .product-category-section {
        margin-bottom: 60px;
    }
    
    .category-header {
        flex-direction: column;
        text-align: center;
        margin-bottom: 30px;
    }
    
    .category-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
    
    .category-header h3 {
        font-size: 1.5rem;
    }
    
    .info-products-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .info-product-card {
        padding: 30px 25px;
    }
    
    .product-icon-wrapper {
        width: 70px;
        height: 70px;
    }
    
    .product-icon-wrapper i {
        font-size: 32px;
    }
    
    .info-product-card h4 {
        font-size: 1.3rem;
    }
    
    .products-cta {
        padding: 60px 0;
    }
    
    .cta-icon {
        width: 80px;
        height: 80px;
        font-size: 40px;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
    
    .product-notes {
        padding: 60px 0;
    }
    
    .notes-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .note-card {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .intro-content .lead {
        font-size: 1rem;
    }
    
    .category-header h3 {
        font-size: 1.3rem;
    }
    
    .info-product-card {
        padding: 25px 20px;
    }
    
    .info-product-card h4 {
        font-size: 1.2rem;
    }
    
    .product-specs li {
        font-size: 0.85rem;
    }
    
    .cta-content h2 {
        font-size: 1.5rem;
    }
    
    .cta-content .lead {
        font-size: 1rem;
    }
}
