.product-archive-header-wrapper {
    background: #F6F9FF;
    border-radius: 20px 20px 0 0;
    padding: 1px;
    margin-bottom: 10px;
}

.product-breadcrumb {
    font-size: 14px;
    color: #8c94ac;
    margin-top: 25px;
    margin-bottom: 10px;
}

.product-breadcrumb a {
    color: #BA1D2B;
    text-decoration: none;
}

.product-breadcrumb span {
    margin: 0 4px;
}

.product-archive-header {
    margin-bottom: 25px;
}

.product-archive-title {
    font-size: 28px;
    font-weight: 700;
    margin: 25px 0 40px 0;
}

.product-archive-tabs {
    display: flex;
    gap: 24px;
    border-bottom: 1px solid #e4e7f2;
    padding-bottom: 6px;
    align-items: center;
}

.product-tab:first-child {
    font-size: 17.5px;
    /* font-weight: 600; */
}

.product-tab,
.product-tab-archive {
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    color: #363636;
    padding-bottom: 8px;
    position: relative;
    text-align: center;
}

.product-tab.is-active,
.product-tab-archive.is-active {
    color: #BA1D2B;
}

.product-tab.is-active::after,
.product-tab-archive.is-active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 3px;
    background: #BA1D2B;
    border-radius: 10px;
}

.product-archive-grid {
    padding: 25px 0 60px 0;
}

.product-category-select-wrapper {
    margin-bottom: 20px;
}

.product-category-select-inner {
    position: relative;
    width: 100%;
}

.product-category-select {
    width: 100%;
    padding: 12px 40px 12px 14px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 10px;
    border: 1px solid #d7d9e2;
    background-color: #fff;
    color: #BA1D2B;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.product-category-select-inner .select-arrow {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    font-size: 18px;
    line-height: 1;
    color: #BA1D2B;
    pointer-events: none;
    transition: transform 0.25s ease;
}

.product-category-select-wrapper.open .select-arrow {
    transform: translateY(-50%) rotate(90deg);
}

.product-card-link-wrap {
    text-decoration: none;
    height: 100%;
    display: block;
}

.product-card {
    background: #fff;
    border: 1px solid #E2E9F2;
    border-radius: 18px;
    padding: 28px 28px 30px;
    text-align: center;
    transition: border-color .25s ease, transform .25s ease;
    position: relative;
    overflow: visible;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -18px;
    width: 90%;
    max-width: 360px;
    height: 26px;
    background: rgba(246, 24, 24, 0.45);
    filter: blur(16px);
    border-radius: 999px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
    z-index: -1;
}

.product-card-link-wrap:hover .product-card {
    border-color: #BA1D2B;
}

.product-card-link-wrap:hover .product-card::after {
    opacity: 1;
}

.product-card-image {
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform .35s ease;
}

.product-card-link-wrap:hover .product-card-image img {
    transform: scale(1.06);
}

.product-card-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 6px;
    height: 65px;
    align-content: center;

}

.product-card-subtitle {
    font-size: 0.92rem;
    color: #000;
    margin-bottom: 18px;
    height: 50px;
}

.product-card-features {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.product-feature-badge {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #8C94AC;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: background .25s ease;
}

.product-feature-badge:hover {
    background: #BA1D2B;
}

.badge-text {
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
}

.badge-icon-img {
    max-width: 24px;
    max-height: 24px;
}

.feature-tooltip {
    position: absolute;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    min-width: 110px;
    max-width: 180px;
    background: #ffffff;
    color: #8C94AC;
    padding: 12px 14px;
    font-size: 0.78rem;
    line-height: 1.35;
    font-weight: 400;
    border-radius: 10px;
    border: 1px solid #E2E9F3;
    white-space: normal;
    text-align: center;
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.12);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease, transform .25s ease;
    z-index: 40;
}

.feature-tooltip::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 8px;
    border-style: solid;
    border-color: #ffffff transparent transparent transparent;
}

.product-feature-badge:hover .feature-tooltip {
    opacity: 1;
    transform: translateX(-50%) translateY(-4px);
}

@media (max-width: 767px) {
    .product-archive-tabs {
        display: none !important;
    }
}

@media (min-width: 768px) {
    .product-category-select-wrapper {
        display: none;
    }
}

@media (max-width: 1199.98px) {
    .related-products-swiper {
        overflow: hidden;
    }

    .related-products-pagination {
        text-align: center;
    }
}
