.products-page {
    margin-top: 80px;
    padding: 20px;
}

.products-hero {
    background: linear-gradient(rgba(26, 35, 126, 0.9), rgba(26, 35, 126, 0.9)), url('../images/f4.jpg');
    background-size: cover;
    color: white;
    text-align: center;
    padding: 60px 20px;
    border-radius: 15px;
    margin-bottom: 40px;
}

.products-hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.filter-section {
    margin: 30px 0;
}

.category-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.category-buttons button {
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    background: #f5f5f5;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-buttons button.active {
    background: var(--primary-color);
    color: white;
}

.products-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-actions {
    display: flex;
    gap: 10px;
    padding: 15px;
}

.detail-btn, .quote-btn {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.detail-btn {
    background: #f5f5f5;
}

.quote-btn {
    background: var(--primary-color);
    color: white;
}
