/*New And Trending Component*/

/* Slider Container Styles */
.holiday-season .slider-container {
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

/* Slider Styles */
.holiday-season .slider-track {
    display: flex;
    gap: 14px;
    /* margin: 1rem 29px; */
    overflow-x: auto;
    scroll-behavior: smooth;
}

.holiday-season .slider-track::-webkit-scrollbar {
    display: none;
}

.holiday-season .slider-wrapper {
    overflow: hidden;
    position: relative;
}

/* Slider Card Styles */
.holiday-season .slider-card {
    flex: 0 0 calc(25% - 10px);
    height: auto;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.holiday-season .slider-card:hover {
    text-decoration: underline !important;
    color: #333;
}

/* Text Content Styles within Slider */
.holiday-season .slider-text-content {
    position: absolute;
    top: 0;
    left: 0;
    padding: 1.25rem;
    z-index: 1;
}

/* Arrow Button Styles */
.holiday-season .slider-arrow-btn {
    position: absolute;
    top: 50%;
    background-color: #333;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    transform: translateY(-50%);
}

.holiday-season .slider-arrow-prev {
    left: 10px;
}

.holiday-season .slider-arrow-next {
    right: 10px;
}

/* Carousel Control Styles */
.holiday-season .slider-carousel-control {
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
    z-index: 10;
    opacity: 1;
}

.holiday-season .slider-carousel-control img {
    width: 100%;
    height: auto;
    transition: all 0.3s ease;
}

.holiday-season .slider-carousel-prev {
    left: 30px;
    top: 200px;
}

.holiday-season .slider-carousel-next {
    right: 30px;
    top: 200px;
}

.holiday-season .slider-carousel-prev:hover img {
    content: url('https://images.contentstack.io/v3/assets/blt964243cdd7810dea/blt85d13c756fd4c87f/6668cc8105319148701f3beb/left-arrow_hover.svg');
}

.holiday-season .slider-carousel-next:hover img {
    content: url('https://images.contentstack.io/v3/assets/blt964243cdd7810dea/bltc1bb7050ac69c4dc/6668c1d8a70874062b612002/arrow_hover.svg');
}

/* Slider Header Styles */
.holiday-season .slider-header {
    background-image: url('https://images.contentstack.io/v3/assets/blt964243cdd7810dea/blt5075078cffcf3aad/670d1ce71c3e18cb46601f7d/gift-combo_background.jpg');
    color: #FFF;
    font-family: Rokkitt;
    font-size: 64px;
    font-style: normal;
    font-weight: 700;
    line-height: 85%;
    padding: 1rem;
    height: 110px;
    background-size: cover;
    background-position: center;
}

.holiday-season .slider-header-padding {
    padding-top: 2rem;
    padding-left: 14px;
}

/* Media Queries */

/* Large screens (up to 1656px) */
/* @media (max-width: 1656px) {
    .holiday-season .hp-margin {
        margin-left: 1rem;
        margin-right: 1rem;
    }
} */

/* Tablet and smaller devices (up to 768px) */
@media (max-width: 768px) {
    .holiday-season .slider-header {
        background-image: url('https://images.contentstack.io/v3/assets/blt964243cdd7810dea/bltbf351ee5be268b52/670d1ce72fb22e84b15afd29/gift-combo_background-m.jpg');
        font-size: 38px;
        height: 88px;
    }

    .holiday-season .slider-header-padding {
        padding-top: 0.5rem;
        padding-left: 0rem;
    }

    .holiday-season .slider-track {
        margin-right: 0 !important;
        margin-left: 14px;
    }

    .holiday-season .slider-container {
        padding: 0;
        border-radius: 0;
        /*margin-left: 0 !important;*/
        width: 100%;
    }

    .holiday-season .slider-card {
        flex: 0 0 275px;
        border-radius: 4px;
    }

    .holiday-season .slider-carousel-control {
        display: none;
    }

}

.holiday-season .slider-academy-logo {
    width: 16px;
    height: auto;
}

/*New and trending component end*/