.header-product-menu .dropdown-product-nav li {
    cursor: pointer;
}

.header-product-menu .dropdown-product-nav li.active a,
.header-product-menu .dropdown-product-nav li:hover a {
    color: #004f9b;
}

.header-product-menu .dropdown-product-body .dropdown-product-ct {
    display: none;
}

.header-product-menu .dropdown-product-body .dropdown-product-ct.dropdown-show {
    display: block;
}

.header-product-menu .header-product-right {
    width: auto;
    flex: 1;
    min-width: 0;
}

.header-product-menu .dropdown-product-body {
    padding: 16px 20px 20px;
}

.header-product-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.header-product-card {
    display: block;
    min-height: 88px;
    padding: 16px 18px;
    background: #fff;
    border: 1px solid rgba(0, 79, 155, 0.1);
    border-radius: 0;
    box-shadow: 0 2px 8px rgba(0, 79, 155, 0.04);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.header-product-card:hover {
    border-color: rgba(0, 79, 155, 0.22);
    box-shadow: 0 6px 16px rgba(0, 79, 155, 0.1);
}

.header-product-card-tit {
    margin: 0;
    color: #262626;
    font-size: 15px;
    line-height: 1.45;
    font-weight: 700;
}

.header-product-card-des {
    margin: 10px 0 0;
    color: #595959;
    font-size: 13px;
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.header-product-loading,
.header-product-empty {
    padding: 24px 8px;
    color: #8c8c8c;
    font-size: 14px;
    line-height: 1.6;
}

@media (max-width: 1200px) {
    .header-product-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 992px) {
    .header-product-cards {
        grid-template-columns: 1fr;
    }
}
