.breadcrumb-graphic {
    --bs-gutter-x: 1.5rem;
    margin: calc(var(--bs-gutter-x) * .5);
    background: linear-gradient(90deg, #09ace3 0%, #16d3d7 100%);
    border-radius: 18px;
}

.box-search-container {
    justify-content: flex-start;
    align-items: start;
    color: #fff;
    gap: 20px;
    padding: 40px 30px;
}

.box-search-container .header .header-title h1 {
    font-size: 42px;
    line-height: 1.3;
}

.box-search-container .header .header-sub-title span {
    font-weight: 400;
    font-size: 16px;
    color: #fff;
    line-height: 1.3;
}

.box-graphic-content {
    display: grid;
    grid-template-columns: 5fr 2.4fr;
}

.box-banner-graphic {
    width: 100%;
    height: 100%;
    position: relative;
    padding: 40px 30px;
}

.box-banner-graphic .img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.box-banner-graphic .img img {
    position: absolute;
    top: 0;
    right: 0;
    /* left: 50%; */
    /* transform: translateX(-50%); */
    width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 110%;
    transition: transform 0.3s ease-in-out;

}

.box-banner-graphic .img img:hover {
    transform: perspective(1000px) rotateY(-10deg) rotateX(2deg) translateY(-10px);
}

.graphic-cate-item {
    display: grid;
    grid-template-columns: 40px auto;
    padding: 5px 15px 5px 5px;
    border-radius: 30px;
    background: #ebebeb;
    align-items: center;
    gap: 5px;
}

.graphic-cate-item .name-cate span {
    font-weight: 400;
    font-size: 14px;
    color: #5e6278;
    text-decoration: none !important;
    text-align: right;
}

.graphic-cate-item .picture {
    width: 35px;
    height: 35px;
    overflow: hidden;
    border-radius: 50%;
    background: #fff;
}

.graphic-cate-item .picture img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 5px;
}

.form-search-gallery .group-input {
    max-width: 600px;
}

.search-item.tag {
    max-height: 140px !important;
}

.gallery-index-page .slick-prev,
.gallery-index-page .slick-next,
.gallery-category-page .slick-prev,
.gallery-category-page .slick-next {
    width: 30px;
    height: 30px;
    z-index: 99;
    line-height: 30px;
}

.gallery-index-page .slick-list .slick-slide {
    margin: 0 -6px;
}

.gallery-index-page .slick-list .slick-slide {
    margin: 0 6px;
}

.list-gallery-cate {
    margin: 30px 0;
}

.list-gallery-cate .box-list-cate {
    margin: unset;
    display: flex;
    gap: 16px;
    transition: transform 0.3s ease;
    user-select: none;
    cursor: grab;
}

.list-gallery-cate .box-list-cate:active {
    cursor: grabbing;
}

.list-gallery-cate .box-list-cate > a {
    flex-shrink: 0;
    width: auto;
}

.list-gallery-cate .box-content {
    position: relative;
    overflow: hidden;
}

/* Arrow buttons styling */
.arrow.prev,
.arrow.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    background: rgba(255, 255, 255, 1);
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.box-content .arrow.prev {
    left: 10px;
}

.box-content .arrow.next {
    right: 10px;
}

.box-content .arrow:hover{
    transform: translateY(-50%) !important;
}

.arrow:hover {
    transform: none;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.arrow.slick-disabled {
    opacity: 0;
    cursor: not-allowed;
    pointer-events: none;
}

.slick-gradient-overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px;
    z-index: 10;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.slick-gradient-right {
    right: -10px;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

.slick-gradient-left {
    left: -10px;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

.slick-gradient-overlay.hidden {
    opacity: 0;
}

.trending-topics .category .category-image img {
    object-fit: contain;
}

.category-slider .picture::after {
    background-color: unset;
}

.category-slider {
    margin: unset;
    display: flex;
    gap: 16px;
    transition: transform 0.3s ease;
    user-select: none;
    cursor: grab;
    overflow: visible;
    opacity: 1 !important;
}

.category-slider:active {
    cursor: grabbing;
}

.category-slider > a {
    flex-shrink: 0;
    width: auto;
}

.category-slider .graphic-cate-item {
    min-width: 100px;
}

/* Category slider container */
.category-slider-container {
    position: relative;
    overflow: hidden;
}

.box-content-img .group-button .button-d {
    font-size: 16px;
}

.grid-item img.bg-png {
    background: #f1f1f1 !important;
}

/* Responsive gradient width */
@media (max-width: 768px) {
    .slick-gradient-overlay {
        width: 40px;
    }

    .box-graphic-content {
        grid-template-columns: 1fr;
    }

    .box-banner-graphic {
        padding: 10px;
        order: 1;
    }

    .box-search-container {
        padding: 10px;
        order: 2;
    }

    .box-search-container .header .header-title h1 {
        font-size: 38px;
    }

    .box-search-container .header .header-sub-title span {
        font-size: 16px;
    }

    .box-banner-graphic .img img {
        position: relative;
        max-height: 200px;
        display: none;
    }

    .graphic-cate-item {
        padding: 5px 15px 5px 5px;
    }

    .graphic-cate-item .name-cate span {
        font-size: 13px;
    }

    .graphic-cate-item {
        grid-template-columns: 30px auto;
    }

    .graphic-cate-item .picture {
        width: 30px;
        height: 30px;
    }

    .search-item.tag {
        max-height: 90px !important;
        width: calc(25% - 5px) !important;
    }

    .trending-searches {
        gap: 5px;
    }

    .search-item.tag .view-all-link {
        font-size: 12px;
    }

    .gallery-index-page .slick-prev,
    .gallery-index-page .slick-next {
        line-height: 30px;
    }
    .box-content .arrow.prev {
        left: 5px;
    }

    .box-content .arrow.next {
        right: 5px;
    }


}