/* Products Section Styles */

/* Products Title */
.products-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.products-section .section-header {
    text-align: center;
}

.products-section .section-title {
    font-size: 48px;
    font-weight: 700;
    color: #333;
    margin: 0;
    background: linear-gradient(45deg, #007bff, #6610f2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Products Filter */
.products-filter {
    text-align: center;
    margin-bottom: 40px;
}

.filter-btn {
    background: #f5f5f5;
    border: 1px solid #ddd;
    padding: 10px 20px;
    margin: 0 5px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
    font-weight: 500;
}

.filter-btn.active {
    background: #007bff;
    color: white;
    border-color: #007bff;
}

.filter-btn:hover {
    background: #e9ecef;
}

/* Products Showcase */
.products-showcase {
    padding: 40px 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.product-card-enhanced {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s;
    opacity: 1;
    transform: translateY(0);
}

.product-card-enhanced:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

.product-visual {
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.product-blue { background: linear-gradient(135deg, #2196f3, #0d47a1); }
.product-red { background: linear-gradient(135deg, #f44336, #b71c1c); }
.product-purple { background: linear-gradient(135deg, #9c27b0, #7b1fa2); }
.product-orange { background: linear-gradient(135deg, #ff9800, #e65100); }
.product-green { background: linear-gradient(135deg, #4caf50, #2e7d32); }
.product-cyan { background: linear-gradient(135deg, #00bcd4, #006064); }
.product-teal { background: linear-gradient(135deg, #009688, #004d40); }
.product-amber { background: linear-gradient(135deg, #ffc107, #ff8f00); }
.product-indigo { background: linear-gradient(135deg, #3f51b5, #283593); }
.product-lime { background: linear-gradient(135deg, #cddc39, #827717); }
.product-pink { background: linear-gradient(135deg, #e91e63, #880e4f); }
.product-gray { background: linear-gradient(135deg, #9e9e9e, #616161); }
.product-brown { background: linear-gradient(135deg, #795548, #5d4037); }

.product-icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-icon-wrapper i {
    font-size: 30px;
    color: white;
}

.product-details {
    padding: 20px;
}

.product-category {
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
    margin-bottom: 5px;
    font-weight: 600;
}

.product-details h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
    font-weight: 600;
}

.product-details p {
    color: #666;
    line-height: 1.5;
    margin-bottom: 15px;
}

.product-link {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.product-link:hover {
    text-decoration: underline;
    color: #0056b3;
}

/* Coming Soon Section */
.coming-soon-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.coming-soon-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.coming-soon-section .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,123,255,0.1);
    color: #007bff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.coming-soon-section .section-title {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.coming-soon-section .section-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.product-card-coming {
    position: relative;
    opacity: 0.7;
}

.product-card-coming:hover {
    opacity: 0.9;
}

.coming-soon-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #6c757d;
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

/* Responsive Design */
@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
    .products-section .section-title,
    .coming-soon-section .section-title {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    .filter-btn {
        display: block;
        margin: 5px 0;
        width: 100%;
        max-width: 200px;
        margin-left: auto;
        margin-right: auto;
    }
    .products-section .section-title,
    .coming-soon-section .section-title {
        font-size: 24px;
    }
}