.royalex-new-arrivals {
    width: 100%;
}

.royalex-new-arrivals__name {
    font-size: 1em;
    background: linear-gradient(90deg, #8B6B2E, #C9A24A, #F2D27A, #FFF2B0, #C9A24A, #8B6B2E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.royalex-new-arrivals__price {
    font-size: 1.7em;
    font-weight: 700;
}

.royalex-new-arrivals__price del{
    color: #228B22;
}

.royalex-new-arrivals__slider {
    position: relative;
    width: 100%;
}

.royalex-new-arrivals__track {
    width: 100%;
}

.royalex-new-arrivals__item {
    box-sizing: border-box;
    padding: 0 10px;
}

.royalex-new-arrivals__image {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.royalex-new-arrivals__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Slick arrows */

.royalex-new-arrivals .slick-prev,
.royalex-new-arrivals .slick-next {
    position: absolute;
    top: 40%;
    z-index: 10;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 50%;
    background: #000;
    color: #fff;
    font-size: 0;
}

.royalex-new-arrivals .slick-prev {
    left: -18px;
}

.royalex-new-arrivals .slick-next {
    right: -18px;
}

.royalex-new-arrivals .slick-prev:before {
    content: "‹";
    font-size: 28px;
    line-height: 1;
    color: #fff;
}

.royalex-new-arrivals .slick-next:before {
    content: "›";
    font-size: 28px;
    line-height: 1;
    color: #fff;
}

/* New Arrivals Slick arrows */
.royalex-new-arrivals {
    position: relative;
}

.royalex-new-arrivals .slick-prev,
.royalex-new-arrivals .slick-next {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    z-index: 20;

    width: 42px;
    height: 42px;

    border: 0;
    border-radius: 50%;

    background: #000 !important;
    opacity: 1 !important;

    display: flex !important;
    align-items: center;
    justify-content: center;

    cursor: pointer;
}

.royalex-new-arrivals .slick-prev {
    left: 8px;
}

.royalex-new-arrivals .slick-next {
    right: 8px;
}

/* Remove Slick's default icon */
.royalex-new-arrivals .slick-prev:before,
.royalex-new-arrivals .slick-next:before {
    font-family: Arial, sans-serif !important;
    font-size: 30px !important;
    line-height: 1 !important;
    color: #fff !important;
    opacity: 1 !important;
}

.royalex-new-arrivals .slick-prev:before {
    content: "‹" !important;
}

.royalex-new-arrivals .slick-next:before {
    content: "›" !important;
}

/* Disabled arrow */
.royalex-new-arrivals .slick-disabled {
    opacity: 0.35 !important;
    cursor: default;
}

.royalex-new-arrivals__image {
    margin-bottom: 8px;
}

/* Product name: fixed 3-line area */
.royalex-new-arrivals__name {
    margin-top: 0;
    font-size: 15px;
    line-height: 1.4;

    height: calc(15px * 1.4 * 3);
    overflow: hidden;

    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.royalex-new-arrivals__slider .royalex-new-arrivals__item a img{
	   transition: transform 0.4s ease;
}

.royalex-new-arrivals__slider .royalex-new-arrivals__item a:hover img{
	   transform: scale(1.08); /* zoom in */
}


/* Mobile */

@media (max-width: 767px) {

    .royalex-new-arrivals__item {
        padding: 0 6px;
    }

    .royalex-new-arrivals .slick-prev {
        left: 5px;
    }

    .royalex-new-arrivals .slick-next {
        right: 5px;
    }
}