/* ===== SẢN PHẨM NỔI BẬT - FEATURED PRODUCTS CAROUSEL ===== */

.hi-featured {
   margin-top: 40px;
}

.hi-featured__carousel {
    position: relative;
}

.hi-featured__track {
    overflow: hidden;
}

.hi-featured__grid {
    display: flex;
    gap: 24px;
    transition: transform 0.5s ease;
}
/* --- Section heading --- */
.hi-section-heading {
   margin: 0;
   font-size: 28px;
   font-weight: 600;
   color: #000000;
   margin-bottom: 10px;
   letter-spacing: 0.02em;
   line-height: 40px;
}

.hi-featured__card {
   flex: 0 0 calc(25% - 18px);
   min-width: calc(25% - 18px);
   position: relative;
   border: 1px solid #2CB5D2;
   border-radius: 10px;
   padding: 16px;
   height: 348px;
   background: #2CB5D20D;
}

.hi-featured__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #DEE5EF;
    background: #FFFFFF;
    color: #2CB5D2;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
}

.hi-featured__nav:hover {
    background: #2CB5D2;
    color: #FFFFFF;
    border-color: #2CB5D2;
}

.hi-featured__nav--prev {
    left: -20px;
}

.hi-featured__nav--next {
    right: -20px;
}

.hi-featured__thumb {
    overflow: hidden;
    border-radius: 10px;
}

.hi-featured__img {
    width: 100%;
    height: 148px;
    display: block;
    transition: transform 0.3s ease;
}

.hi-featured__thumb:hover .hi-featured__img {
    transform: scale(1.2);
}

.hi-featured__title {
   color: #061839;
   font-family: 'Inter', sans-serif;
   font-weight: 700;
   font-style: normal;
   font-size: 18px;
   line-height: 26px;
   letter-spacing: 0.01em;
   height: 48px;
   margin-top: 24px;
}

.hi-featured__link {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.hi-featured__link:hover {
    color: #2CB5D2;
}

.hi-featured__desc {
   color: #6B788E;
   font-family: 'Inter', sans-serif;
   font-weight: 400;
   font-style: normal;
   font-size: 14px;
   line-height: 20px;
   letter-spacing: 0.01em;
   margin: 0;
   height: 40px;
}

.hi-featured__footer {
   display: flex;
   align-items: center;
   gap: 10px;
   margin-top: 12px;
}

.hi-featured__badge {
   display: inline-flex;
   align-items: center;
   gap: 10px;
   background: #072A6C;
   color: #FFFFFF;
   font-family: 'Inter', sans-serif;
   font-weight: 500;
   font-style: normal;
   font-size: 12px;
   line-height: 18px;
   letter-spacing: 0.01em;
   padding: 6px 14px;
   white-space: nowrap;
   border-radius: 20px;
}

.hi-featured__badge .hi-featured__star {
   width: 20px;
   height: 20px;
   object-fit: contain;
}

@media (max-width: 991px) {
    .hi-featured__carousel {
        margin: 0 28px;
    }

    .hi-featured__nav--prev {
        left: -28px;
    }

    .hi-featured__nav--next {
        right: -28px;
    }

    .hi-featured__card {
        flex: 0 0 calc(50% - 12px);
        min-width: calc(50% - 12px);
    }
}

@media (max-width: 575px) {
    .hi-featured__card {
        flex: 0 0 100%;
        min-width: 100%;
    }
}