/* Products Section Styles */
.products-section {
    background-color: #f8fafc;
    color: #334155;
    line-height: 1.6;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    padding: 60px 0;
}

.products-section * {
    box-sizing: border-box;
}

.products-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.products-section .header {
    text-align: center;
    margin-bottom: 40px;
}

.products-section .header h2 {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 10px;
}

.products-section .header p {
    font-size: 1.1rem;
    color: #64748b;
}

.products-section .category-section {
    margin-bottom: 50px;
}

.products-section .category-title {
    font-size: 1.8rem;
    color: #1e293b;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 3px solid #3b82f6;
    display: inline-block;
}

.products-section .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.products-section .product-card {
    background: #f1f5f9;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e2e8f0;
    position: relative;
}

.products-section .product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.products-section .product-image {
    width: 100%;
    height: 200px;
    background: white;
    border-radius: 8px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.products-section .product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.products-section .product-image.placeholder {
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
    color: #64748b;
    font-size: 0.9rem;
    text-align: center;
    padding: 20px;
}

.products-section .product-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
}

.products-section .product-description {
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.products-section .product-category {
    display: inline-block;
    background: #3b82f6;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 15px;
}

.products-section .whatsapp-btn {
    background: #25d366;
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    justify-content: center;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-decoration: none;
}

.products-section .whatsapp-btn:hover {
    background: #20ba5a;
    transform: translateY(-1px);
}

.products-section .whatsapp-btn i {
    font-size: 1rem;
}

.products-section .filter-bar {
    background: white;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.products-section .filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.products-section .filter-label {
    font-weight: 600;
    color: #1e293b;
    margin-right: 15px;
}

.products-section .filter-btn {
    padding: 8px 16px;
    border: 2px solid #e2e8f0;
    background: white;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
}

.products-section .filter-btn:hover, 
.products-section .filter-btn.active {
    background: #3b82f6;
    color: white;
    border-color: #3b82f6;
}

.products-section .search-box {
    flex: 1;
    max-width: 300px;
    padding: 10px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.products-section .search-box:focus {
    border-color: #3b82f6;
}

.products-section .no-results {
    text-align: center;
    color: #64748b;
    font-size: 1.1rem;
    margin: 40px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .products-section .container {
        padding: 0 15px;
    }

    .products-section .header h2 {
        font-size: 2rem;
    }

    .products-section .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
    }

    .products-section .filter-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .products-section .search-box {
        max-width: none;
        margin-bottom: 15px;
    }

    .products-section .filter-label {
        margin-right: 0;
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .products-section .products-grid {
        grid-template-columns: 1fr;
    }

    .products-section .product-card {
        padding: 15px;
    }

    .products-section .category-title {
        font-size: 1.5rem;
    }
}