.rseh-main-featured-category-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
}

.rseh-featured-category-section {
    display: flex;
    flex-direction: column;
    gap: 24px;
    background-color: #f9f3ec66;
    padding: 48px 48px 64px 48px;
}

.rseh-featured-category-header {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
}

.rseh-header-left {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.rseh-category-name {
    font-size: 21px;
    font-weight: 500;
}

.rseh-category-icon {
    width: 20px;
    height: 20px;
}



.rseh-featured-category-carousel {
    display: flex;
    align-items: center;
    gap: 20px;
    overflow: hidden;
    flex: 1;
    min-width: 0;
}

.rseh-carousel-arrow {
    background: transparent;
    cursor: pointer;
    padding: 0;
    border: none;
}

.rseh-featured-category-products-track {
    display: flex;
    gap: 20px;
    width: 100%;
    transition: transform 0.3s ease-in-out;
    padding: 12px 0px;
}

.rseh-featured-category-product-card {
    width: calc((100% - 20px) / 2);
    flex: 0 0 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    padding: 16px;
    gap: 16px;
    border: 2px solid #f9f3ec;
    border-radius: 0 0 20px 0;
    background-color: #fff;
    text-decoration: none;
    color: inherit;
    position: relative;
}

.rseh-featured-category-product-card:hover {
    transform: translateY(-2px);
}

.rseh-featured-category-product-card .rseh-onsale {
    position: absolute;
    background-color: #00abba;
    border-radius: 0 0 20px 0;
    padding: 12px 24px;
    gap: 10px;
    border-right: 2px solid #f9f3ec;
    border-bottom: 2px solid #f9f3ec;
    top: 0;
    left: 0;
    font-size: 21px;
    font-weight: 700;
    color: #f9f3ec;
  } 
.rseh-featured-category-product-image {
    position: relative;
    aspect-ratio: 1 / 1;
  width: 100%;
  overflow: hidden;
}

.rseh-featured-category-product-image img {
    width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.rseh-featured-category-product-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 16px;
    line-height: 1.3;
    font-weight: 600;
}

.rseh-nowrap {
    white-space: nowrap;
}

.rseh-view-all-link {
    color: #000033;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 0 0 4px 0;
}

.rseh-view-all-link_hover :hover{
box-shadow: inset 0 -2px 0 0#00ABBA;
}

@media (max-width: 1280px) {
    .rseh-featured-category-section {
        padding: 24px 24px 32px 24px;
        gap: 12px;
    }
    .rseh-main-featured-category-container {
gap: 12px;
    }
} 

@media (max-width: 1024px) {
    .rseh-featured-category-section {
        padding: 24px 24px 32px 24px;
        gap: 16px;
    }
    .rseh-featured-category-header {
        align-items: flex-start;
    }
    .rseh-featured-category-product-card {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .rseh-featured-category-product-card {
        width: calc((100% - 20px) / 2);
    }
    .rseh-category-name {
        font-size: 18px;
    }

    .rseh-main-featured-category-container {
        gap: 20px;
    }
    .rseh-featured-category-product-card {
        width: calc((100% - 12px) / 2);
    }
    .rseh-featured-category-products-track {
        gap: 12px;
    }

    .rseh-carousel-arrow {
        padding: 0;
    }

    .rseh-featured-category-product-title {
        font-size: 14px;
    }
    .rseh-category-icon {
        height: 16px;
        width: 16px;
    }
    .hero-carousel-chevron-container {
        left: 43%;
    }
}

@media (max-width: 425px) {
    .rseh-featured-category-product-card {
        width: 100%;
    }
    .rseh-main-featured-category-container {
        gap: 0;
    }
    .rseh-featured-category-header {
        flex-wrap: wrap;
        gap: 16px;
    }
    .hero-carousel-chevron-container {
        left: 34%;
    }
}
