/* ==============================
   Manufacturer Category Links
   Theme: #0093e6
================================= */

.manufacturer-category-links {
    margin-top: 30px;
    margin-bottom: 34px;
}

.manufacturer-link-section {
    padding: 28px 30px 30px;
    background: #fff;
    border: 1px solid #dfe9f0;
    border-radius: 14px;
    box-sizing: border-box;
    box-shadow: 0 10px 30px rgba(18, 73, 105, .06);
}

.manufacturer-link-section + .manufacturer-link-section {
    margin-top: 24px;
}

.manufacturer-link-head {
    margin-bottom: 22px;
}

.manufacturer-link-head span {
    display: block;
    margin-bottom: 5px;
    color: #0093e6;
    font-size: 12px;
    line-height: 20px;
    font-weight: 800;
    letter-spacing: 1.1px;
}

.manufacturer-link-head h2 {
    margin: 0;
    color: #17212b;
    font-size: 27px;
    line-height: 38px;
    font-weight: 800;
}

.manufacturer-link-head p {
    margin: 6px 0 0;
    color: #687585;
    font-size: 14px;
    line-height: 24px;
}

.manufacturer-category-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.manufacturer-category-card {
    display: flex;
    align-items: center;
    min-width: 0;
    min-height: 88px;
    padding: 14px 16px;
    color: #17212b;
    text-decoration: none;
    background: #fff;
    border: 1px solid #dfe8ef;
    border-radius: 10px;
    box-sizing: border-box;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.manufacturer-category-card:hover {
    color: #17212b;
    border-color: #8dd2f4;
    box-shadow: 0 10px 24px rgba(0, 123, 190, .10);
    transform: translateY(-2px);
}

.manufacturer-category-icon {
    flex: 0 0 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-right: 12px;
    color: #0093e6;
    font-size: 20px;
    background: #eaf7fe;
    border-radius: 10px;
}

.manufacturer-category-content {
    min-width: 0;
    flex: 1;
}

.manufacturer-category-content strong {
    display: block;
    overflow: hidden;
    color: #17212b;
    font-size: 14px;
    line-height: 21px;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.manufacturer-category-content em {
    display: block;
    margin-top: 3px;
    color: #7c8895;
    font-size: 12px;
    line-height: 19px;
    font-style: normal;
}

.manufacturer-category-arrow {
    flex: 0 0 auto;
    margin-left: 9px;
    color: #9aa8b4;
    font-size: 18px;
}

.manufacturer-category-card:hover .manufacturer-category-arrow {
    color: #0093e6;
}

.category-manufacturer-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 15px;
}

.category-manufacturer-card {
    display: block;
    min-width: 0;
    padding: 18px 16px;
    text-align: center;
    text-decoration: none;
    background: #fff;
    border: 1px solid #dfe8ef;
    border-radius: 10px;
    box-sizing: border-box;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.category-manufacturer-card:hover {
    border-color: #8dd2f4;
    box-shadow: 0 10px 24px rgba(0, 123, 190, .10);
    transform: translateY(-2px);
}

.category-manufacturer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 76px;
    padding: 8px;
    background: #f8fafc;
    border: 1px solid #edf1f4;
    border-radius: 8px;
    box-sizing: border-box;
}

.category-manufacturer-logo img {
    display: block;
    max-width: 100%;
    max-height: 58px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.category-manufacturer-card > strong {
    display: block;
    margin-top: 13px;
    overflow: hidden;
    color: #17212b;
    font-size: 15px;
    line-height: 22px;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.category-manufacturer-card > em {
    display: block;
    margin-top: 3px;
    color: #7c8895;
    font-size: 12px;
    line-height: 19px;
    font-style: normal;
}

.category-manufacturer-view {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    min-height: 32px;
    margin-top: 12px;
    padding: 5px 11px;
    color: #0085ce;
    font-size: 12px;
    line-height: 20px;
    font-weight: 800;
    background: #edf8fe;
    border-radius: 18px;
}

.category-manufacturer-card:hover .category-manufacturer-view {
    color: #fff;
    background: #0093e6;
}

@media (max-width: 1180px) {
    .manufacturer-category-grid,
    .category-manufacturer-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .manufacturer-category-links {
        margin-top: 20px;
        margin-bottom: 26px;
    }

    .manufacturer-link-section {
        padding: 22px 18px;
        border-radius: 11px;
    }

    .manufacturer-link-head h2 {
        font-size: 23px;
        line-height: 33px;
    }

    .manufacturer-category-grid,
    .category-manufacturer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .manufacturer-category-card {
        min-height: 80px;
        padding: 12px;
    }

    .category-manufacturer-card {
        padding: 14px 11px;
    }
}

@media (max-width: 480px) {
    .manufacturer-category-grid,
    .category-manufacturer-grid {
        grid-template-columns: 1fr;
    }

    .manufacturer-category-content strong {
        white-space: normal;
    }
}
