.hc-bundle-box {
    width: 100%;
    max-width: 1178px;
    margin: 6px auto 14px;
    padding: 4px 0 10px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    font-family: "new_font", sans-serif;
}

.hc-bundle-box::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    margin-top: 8px;
    background: linear-gradient(90deg, rgba(36, 79, 136, 0), rgba(36, 79, 136, 0.16) 18%, rgba(36, 79, 136, 0.16) 82%, rgba(36, 79, 136, 0));
    pointer-events: none;
}

.hc-bundle-box__items {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0;
    width: max-content;
    max-width: 100%;
    margin: 0 auto;
}

.hc-bundle-box__items-wrap {
    width: 100%;
    display: grid;
    place-items: center;
}

.row.product-top + .hc-bundle-box {
    width: 100%;
    max-width: 1178px;
    margin-left: auto;
    margin-right: auto;
}

.hc-bundle-box__head {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 10px;
}

.hc-bundle-box__head-left {
    flex: 0 1 auto;
    min-width: 0;
    text-align: center;
}

.hc-bundle-box__titleWrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    text-align: center;
    padding-bottom: 10px;
    background-image: linear-gradient(90deg, rgba(52, 100, 175, 0), rgba(52, 100, 175, 0.9), rgba(52, 100, 175, 0));
    background-repeat: no-repeat;
    background-size: 96px 2px;
    background-position: center bottom;
}

.hc-bundle-box__titleWrap > i {
    display: block;
    font-size: 16px;
    line-height: 1;
    color: #2f5f9f;
    margin-bottom: 2px;
}

.hc-bundle-box__eyebrow {
    font-size: 11px;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #5f7ea1;
    text-align: center;
    margin-bottom: 1px;
}

.hc-bundle-box__title {
    color: #163a63;
    font-size: 18px;
    line-height: 1.15;
    font-weight: 400;
    text-align: center;
    margin: 0;
}

.hc-bundle-box__badge {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    border: 1px solid rgba(30, 99, 181, 0.14);
    background: linear-gradient(90deg, rgba(0, 114, 198, 0.08), rgba(36, 79, 136, 0.12));
    color: #1c4f86;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: .04em;
    text-transform: uppercase;
    display: none;
}

.hc-bundle-box__item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 0;
    flex: 0 1 auto;
    max-width: 25%;
    padding: 10px 18px;
    border-top: 0;
    text-decoration: none;
    transition: opacity .2s ease;
}

.hc-bundle-box__item:first-child {
    padding-top: 10px;
}

.hc-bundle-box__item::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(50%, -50%);
    width: 1px;
    height: 22px;
    background: linear-gradient(to bottom,
    rgba(36, 79, 136, 0),
    rgba(36, 79, 136, 0.22) 20%,
    rgba(36, 79, 136, 0.40) 50%,
    rgba(36, 79, 136, 0.22) 80%,
    rgba(36, 79, 136, 0));
    pointer-events: none;
}

.hc-bundle-box__item:last-child::after {
    display: none;
}

.hc-bundle-box__item:hover {
    opacity: .85;
}

.hc-bundle-box__item-left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
    min-width: 0;
    flex: 0 1 auto;
}

.hc-bundle-box__thumbWrap {
    flex: 0 0 auto;
    width: 52px;
    min-width: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hc-bundle-box__item img {
    width: 52px;
    height: 52px;
    object-fit: contain;
    display: block;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.hc-bundle-box__img-placeholder {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 0;
    border-radius: 0;
}

.hc-bundle-box__img-placeholder i {
    color: #7892ae;
    font-size: 20px;
}

.hc-bundle-box__item-meta {
    min-width: 0;
    flex: 1 1 auto;
}

.hc-bundle-box__item-name {
    display: inline-block;
    font-size: 14px;
    line-height: 1.15;
    font-weight: 400;
    color: #183a61;
    white-space: nowrap;
    position: relative;
    text-decoration: none;
    text-align: left;
    max-width: none;
}

.hc-bundle-box__item-name::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #2f5f9f;
    left: 0;
    bottom: -3px;
    transition: transform 0.3s ease;
    transform: scaleX(0);
    transform-origin: right;
}

.hc-bundle-box__item:hover .hc-bundle-box__item-name::after,
.hc-bundle-box__item:focus .hc-bundle-box__item-name::after,
.hc-bundle-box__item:focus-visible .hc-bundle-box__item-name::after {
    transform: scaleX(1);
    transform-origin: left;
}

.hc-bundle-box__item strong {
    display: none;
}

.hc-bundle-box__item,
.hc-bundle-box__item:hover,
.hc-bundle-box__item:focus,
.hc-bundle-box__item:focus-visible,
.hc-bundle-box__item:active,
.hc-bundle-box__item-name,
.hc-bundle-box__item-name:hover,
.hc-bundle-box__item-name:focus,
.hc-bundle-box__item-name:focus-visible,
.hc-bundle-box__item-name:active {
    text-decoration: none !important;
}

@media (min-width: 769px) {
    .hc-bundle-box__head {
        align-items: center;
        justify-content: center;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .hc-bundle-box,
    .row.product-top + .hc-bundle-box {
        max-width: 972px;
    }
}

@media (max-width: 991px) {
    .hc-bundle-box {
        width: 100%;
        max-width: 742px;
        margin-top: 6px;
        margin-left: auto;
        margin-right: auto;
        padding: 4px 0 10px;
        border-radius: 0;
    }

    .hc-bundle-box::after {
        content: "";
        display: block;
        width: 100%;
        height: 1px;
        margin-top: 8px;
        background: linear-gradient(90deg, rgba(36, 79, 136, 0), rgba(36, 79, 136, 0.16) 18%, rgba(36, 79, 136, 0.16) 82%, rgba(36, 79, 136, 0));
        pointer-events: none;
    }

    .hc-bundle-box__items-wrap {
        width: 100%;
        display: grid;
        place-items: center;
    }

    .hc-bundle-box__items {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        flex-wrap: nowrap;
        gap: 0;
        width: max-content;
        max-width: 100%;
        margin: 0 auto;
    }

    .hc-bundle-box__title {
        font-size: 16px;
    }

    .hc-bundle-box__head {
        align-items: center;
        justify-content: center;
        gap: 12px;
        margin-bottom: 9px;
    }

    .hc-bundle-box__item {
        justify-content: center;
        gap: 8px;
        flex: 0 1 auto;
        max-width: 50%;
        padding: 10px 14px;
    }

    .hc-bundle-box__item-left {
        justify-content: flex-start;
        gap: 8px;
        flex: 0 1 auto;
    }

    .hc-bundle-box__thumbWrap,
    .hc-bundle-box__item img {
        width: 46px;
        min-width: 46px;
        height: 46px;
    }

    .hc-bundle-box__item-name {
        font-size: 13px;
        line-height: 1.15;
        white-space: nowrap;
    }

    .hc-bundle-box__item strong {
        display: none;
    }

    .hc-bundle-box__item::after {
        height: 20px;
        transform: translate(50%, -50%);
        display: block;
    }

    .hc-bundle-box__item:last-child::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .hc-bundle-box {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
        padding: 6px 0 10px;
        border-radius: 0;
    }

    .hc-bundle-box::after {
        content: "";
        display: block;
        width: 100%;
        height: 1px;
        margin-top: 8px;
        background: linear-gradient(90deg, rgba(36, 79, 136, 0), rgba(36, 79, 136, 0.16) 18%, rgba(36, 79, 136, 0.16) 82%, rgba(36, 79, 136, 0));
        pointer-events: none;
    }

    .hc-bundle-box__items {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0;
        width: 100%;
        max-width: 100%;
        margin: 0;
    }

    .hc-bundle-box__items-wrap {
        width: 100%;
        display: block;
    }

    .hc-bundle-box__head {
        align-items: center;
        justify-content: center;
        gap: 8px;
        margin-bottom: 9px;
    }

    .hc-bundle-box__titleWrap {
        gap: 2px;
        padding-bottom: 8px;
        background-size: 84px 2px;
    }

    .hc-bundle-box__title {
        font-size: 15px;
    }

    .hc-bundle-box__eyebrow {
        font-size: 10px;
        margin-bottom: 2px;
    }

    .hc-bundle-box__badge {
        min-height: 24px;
        padding: 0 8px;
        font-size: 9px;
    }

    .hc-bundle-box__item {
        gap: 10px;
        align-items: center;
        justify-content: flex-start;
        padding: 10px 0;
        max-width: none;
        width: 100%;
    }

    .hc-bundle-box__item-left {
        gap: 10px;
        align-items: center;
        justify-content: flex-start;
        flex: 1 1 auto;
    }

    .hc-bundle-box__thumbWrap,
    .hc-bundle-box__item img {
        width: 44px;
        min-width: 44px;
        height: 44px;
    }

    .hc-bundle-box__item-name {
        display: inline-block;
        font-size: 13px;
        white-space: normal;
    }

    .hc-bundle-box__item strong {
        display: none;
    }

    .hc-bundle-box__item::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: auto;
        bottom: 0;
        width: 100%;
        height: 1px;
        transform: none;
        background: linear-gradient(90deg, rgba(36, 79, 136, 0), rgba(36, 79, 136, 0.16) 18%, rgba(36, 79, 136, 0.16) 82%, rgba(36, 79, 136, 0));
        pointer-events: none;
        display: block;
    }

    .hc-bundle-box__item:nth-child(2n)::after,
    .hc-bundle-box__item:nth-child(4n)::after {
        display: block;
    }

    .hc-bundle-box__item:last-child::after {
        display: none;
    }
}