﻿body {
    background: #f7f9fc;
}
.ssl-list-hero {
    background: linear-gradient(135deg, #0b2b6b 0%, #1a4a8a 100%);
    color: #fff;
    padding: 90px 0 50px;
}

    .ssl-list-hero .hero-title {
        font-size: 32px;
        font-weight: 800;
        letter-spacing: .5px;
        margin: 0 0 16px;
        text-align: center;
    }

    .ssl-list-hero .hero-sub {
        opacity: .92;
        margin: 0;
        text-align: center;
        font-size: 15px;
        line-height: 1.75;
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
    }

.ssl-list-section {
    padding: 30px 0 50px;
}

.ssl-list-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.filter-section {
    background: #fff;
    border-radius: 8px;
    padding: 20px 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    margin-bottom: 20px;
}

.filter-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 16px;
}

    .filter-row:last-child {
        margin-bottom: 0;
    }

.filter-label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    min-width: 80px;
}

.filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.filter-opt {
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    color: #555;
    background: #fff;
    border: 1px solid #e0e0e0;
    cursor: pointer;
    transition: all 0.2s;
}

    .filter-opt:hover {
        border-color: #0b2b6b;
        color: #0b2b6b;
    }

    .filter-opt.active {
        background: #0b2b6b;
        color: #fff;
        border-color: #0b2b6b;
    }
.filter-options a.filter-opt.active {
    color: #fff !important;
}
.list-toolbar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #666;
}

    .list-toolbar a {
        color: #0b2b6b;
        text-decoration: none;
    }

        .list-toolbar a:hover {
            text-decoration: underline;
        }

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (max-width: 1200px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}

.product-card {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    position: relative;
    transition: all 0.2s;
}

    .product-card:hover {
        box-shadow: 0 4px 16px rgba(0,0,0,0.08);
        border-color: #0b2b6b;
    }

    .product-card .card-badges {
        position: absolute;
        top: 12px;
        left: 12px;
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
    }

    .product-card .badge {
        padding: 2px 8px;
        border-radius: 4px;
        font-size: 11px;
        font-weight: 600;
    }

    .product-card .badge-promo {
        background: #e74c3c;
        color: #fff;
    }

    .product-card .badge-rec {
        background: #0b2b6b;
        color: #fff;
    }

    .product-card .badge-new {
        background: #17a2b8;
        color: #fff;
    }

    .product-card .card-brand {
        font-size: 13px;
        color: #888;
        margin-bottom: 8px;
    }

    .product-card .card-title {
        font-size: 16px;
        font-weight: 700;
        color: #333;
        margin: 0 0 12px;
        line-height: 1.4;
    }

    .product-card .card-price {
        font-size: 22px;
        font-weight: 700;
        color: #e65100;
        margin-bottom: 8px;
    }

        .product-card .card-price span {
            font-size: 13px;
            font-weight: 400;
            color: #999;
        }

    .product-card .card-validation {
        font-size: 13px;
        color: #666;
        margin-bottom: 16px;
    }

    .product-card .btn-apply {
        display: block;
        width: 100%;
        padding: 10px;
        background: #0b2b6b;
        color: #fff;
        border: none;
        border-radius: 6px;
        font-size: 14px;
        font-weight: 600;
        cursor: pointer;
        text-align: center;
        text-decoration: none;
        transition: all 0.2s;
    }

        .product-card .btn-apply:hover {
            background: #1a4a8a;
            color: #fff;
        }

.product-list .product-row {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 8px;
    padding: 20px 24px;
    margin-bottom: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}

.product-row .row-brand {
    width: 100px;
    font-size: 14px;
    color: #666;
}

.product-row .row-info {
    flex: 1;
    padding: 0 20px;
}

.product-row .row-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
}

.product-row .row-meta {
    font-size: 13px;
    color: #888;
}

.product-row .row-price {
    font-size: 20px;
    font-weight: 700;
    color: #e65100;
    min-width: 120px;
    text-align: right;
}

    .product-row .row-price span {
        font-size: 13px;
        color: #999;
    }

.product-row .row-actions {
    display: flex;
    gap: 10px;
    margin-left: 20px;
}

.product-row .btn-detail, .product-row .btn-submit {
    padding: 8px 18px;
    border-radius: 6px;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s;
}

.product-row .btn-detail {
    background: #f0f0f0;
    color: #333;
    border: 1px solid #ddd;
}

    .product-row .btn-detail:hover {
        background: #e0e0e0;
    }

.product-row .btn-submit {
    background: #0b2b6b;
    color: #fff;
    border: none;
}

    .product-row .btn-submit:hover {
        background: #1a4a8a;
        color: #fff;
    }

