.category_header {
    background: linear-gradient(135deg, #0174C4 0%, #0a6cb0 100%);
    color: white;
    padding: 60px 0 40px 0;
    margin-bottom: 40px;
}

.category_header h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.category_header p {
    font-size: 18px;
    opacity: 0.9;
}

.product_grid {
    margin-bottom: 40px;
}

.product_card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    height: 100%;
}

.product_card:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.product_card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 15px;
}

.product_card h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.product_card h4 a {
    color: #333;
    text-decoration: none;
}

.product_card h4 a:hover {
    color: #0174C4;
}

.product_card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.product_specs {
    font-size: 13px;
    color: #999;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #f0f0f0;
}

.pagination {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.pagination a {
    padding: 8px 16px;
    background: #f8f9fa;
    color: #333;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.pagination a:hover,
.pagination a.active {
    background: #0174C4;
    color: white;
}

.no_products {
    text-align: center;
    padding: 60px 0;
}

.no_products i {
    font-size: 64px;
    color: #ccc;
    margin-bottom: 20px;
}