<link rel="stylesheet" href="{{ url_for('static', path='assets/css/style_product.css') }}">
<link rel="stylesheet" href="{{ url_for('static', path='assets/css/checkbox.css') }}">

<style>
    .card {
        min-width: 300px;
        max-width: 400px;
        border: 1px solid #e5e7eb !important;
        border-radius: 18px !important;
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08) !important;
        padding: 24px 20px !important;
        transition: all 0.25s ease-in-out;
        text-align: center;
        background: #fff !important;
    }

    .card:hover {
        transform: translateY(-6px);
        box-shadow: 0 22px 40px rgba(0, 0, 0, 0.12) !important;
    }

    .card-img-top {
    width: 100% !important;
    height: 110px !important;
    object-fit: contain !important;
    object-position: center center !important;
    display: block !important;
    margin: 0 auto 18px auto !important;
}
    .card-title {
        font-weight: 700;
        font-size: 1.15rem;
        color: #1f2937;
        margin-bottom: 18px;
    }

    .brand-actions {
        display: flex;
        flex-direction: column;
        gap: 10px;
        align-items: center;
        justify-content: center;
    }

    .brand-btn {
        width: 100%;
        max-width: 220px;
        min-height: 46px;
        padding: 10px 18px;
        border-radius: 14px;
        font-size: 14px;
        font-weight: 700;
        line-height: 1;
        text-decoration: none !important;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        transition: all 0.25s ease;
        border: none;
    }

    .brand-btn i {
        font-size: 15px;
        line-height: 1;
    }

    .brand-btn-search {
        background: linear-gradient(135deg, #22c55e, #15803d);
        color: #fff !important;
        box-shadow: 0 10px 20px rgba(34, 197, 94, 0.25);
    }

    .brand-btn-search:hover {
        color: #fff !important;
        transform: translateY(-2px);
        box-shadow: 0 14px 26px rgba(34, 197, 94, 0.35);
    }

    .brand-btn-catalog {
        background: #111827;
        color: #fff !important;
        box-shadow: 0 10px 20px rgba(17, 24, 39, 0.18);
    }

    .brand-btn-catalog:hover {
        color: #fff !important;
        transform: translateY(-2px);
        box-shadow: 0 14px 26px rgba(17, 24, 39, 0.28);
    }

    .brand-btn-official {
        background: linear-gradient(135deg, #2563eb, #1d4ed8);
        color: #fff !important;
        box-shadow: 0 10px 20px rgba(37, 99, 235, 0.22);
    }

    .brand-btn-official:hover {
        color: #fff !important;
        transform: translateY(-2px);
        box-shadow: 0 14px 26px rgba(37, 99, 235, 0.32);
    }

    select {
        border: 1px solid #566946;
        padding: 5px;
        border-radius: 5px;
    }
</style>