#app-trending {
    padding: var(--large-padding, 32px) 0;
}

.breadcrumb {
    padding-top: 0;
    margin: 0;
}

.app-trending-wrapper>*+* {
    margin-top: 32px;
}

.trending-top-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 32px;
    align-items: center;
    justify-content: center;
}

.trending-top-left {
    text-align: center;
    flex-direction: column;
    padding: 4.4rem;
    gap: 10px;
    grid-gap: 10px;
}

.trending-top-subheading-content {
    font-size: 18px;
}

.trending-top-title-content {
    font-size: calc(19px + (29 - 19) * ((100vw - 300px) / (1920 - 300)));
    line-height: 1.2;
    color: var(--pr-color-title, #19124f);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-weight: 500;
}

.trending-top-button {
    color: #fff;
    padding: var(--small-padding, 8px) var(--middle-padding, var(--middle-padding, 16px));
    width: fit-content;
    display: block;
    border-radius: 6px;
    padding: 14px 20px;
    font-weight: 500;
    font-size: 18px;
    text-decoration: none;
    line-height: 1;
    background-color: var(--pr-color-information-600, #5441b5);
    min-width: 180px;
    text-align: center;
    transition: var(--pr-trans-standard);
}

.trending-top-button:hover {
    background-color: var(--pr-color-information-500, #6551CC);
    color: #fff;
}


.trending-top-right-image-box {
    position: relative;
}

.trending-top-right-image-box::after {
    content: "";
    padding-top: 56.25%;
    display: block;
}

.trending-top-right-image-box img {
    width: 100%;
    height: 100%;
    border-radius: var(--radius, 7px);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-position: center;
    object-fit: cover;
}

/*  */
.title-box {
    font-size: 23px;
    font-weight: 500;
    margin-top: var(--middle-padding, 16px);
    margin-bottom: var(--small-padding, 8px);
    width: 100%;
    display: block;
    line-height: 1.2;
    color: var(--pr-color-title, #19124f);
}

.trending-explore-wrapper {
    margin-top: 48px;
}

.trending-explore-box {
    position: relative;
    overflow: hidden;
}

.trending-explore-box .swiper-button-prev,
.trending-explore-box .swiper-button-next {
    top: 33%;
}

.trending-store-image,
.trending-arrivals-image {
    display: block;
    position: relative;
    margin-bottom: var(--small-padding, 8px);
}

.trending-store-image::before,
.trending-arrivals-image::before {
    content: "";
    display: block;
    padding-bottom: 100%;
}

.trending-store-image img,
.trending-arrivals-image img {
    width: 100%;
    height: 100%;
    border-radius: var(--radius, 7px);
    display: block;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.trending-explore-slider:not(.swiper-initialized) .swiper-wrapper,
.trending-explore-list .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-gap: 12px;
}

.trending-store-item {
    text-transform: capitalize;
}

.trending-explore-slider:not(.swiper-initialized) .swiper-wrapper .trending-store-item:nth-child(n + 9),
.trending-explore-list .swiper-wrapper .trending-store-item:nth-child(n + 9) {
    display: none;
}

.trending-arrivals-box {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 12px;
}

.trending-arrivals-title {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    width: 100%;
    font-weight: 500;
    font-size: var(--pr-font-size-display6, 14px);
    line-height: 1.6;
    color: var(--pr-color-primary, #19124f);
    text-transform: capitalize;
    word-break: break-all;
    height: 22px;
    margin-bottom: 4px;
}

.trending-arrivals-price {
    font-weight: 500;
    height: 22px;
    width: fit-content;
    min-width: 150px;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: var(--trendingPrice, #c52c29);
}
.trending-arrivals-high-price {
    display: flex;
    align-items: center;
    font-size: 14px;
    justify-content: flex-start;
    color: var(--pr-color-price-compare, #595959);
    text-decoration: line-through;
    margin-left: 10px;
    font-weight: 400;
}

.trending-arrivals-showmore {
    margin-top: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.trending-arrivals-loading>* {
    background-color: #f8f8f8;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
    animation-name: trendingLoading;
    animation-timing-function: linear;
    background: #f6f7f8;
    background: linear-gradient(to right, #eeeeee 8%, #dddddd 18%, #eeeeee 33%);
    background-size: 300% 100%;
    opacity: 0.6;
}

@-webkit-keyframes trendingLoading {
    0% {
        background-position: -468px 0;
    }

    100% {
        background-position: 468px 0;
    }
}

.trending-showmore {
    line-height: 24px;
    border: 2px solid var(--pr-color-information, #5441b5);
    padding: var(--small-padding, 8px) var(--middle-padding, var(--middle-padding, 16px));
    border-radius: var(--large-padding, 32px);
    color: var(--pr-color-information, #5441b5);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--pr-trans-standard);
}

.trending-showmore:hover {
    background-color: var(--pr-color-information-600, #5441b5);
    color: #fff;
}

.timer-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: stretch;
    margin: var(--large-padding, 32px) 0;
    width: 100%;
}

.countdown-timer #timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--large-padding, 32px);
    grid-gap: var(--large-padding, 32px);
    letter-spacing: -6px;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.countdown-timer::after {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    background-color: rgba(11 11 11 / 22%);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.timer-item {
    display: flex;
    z-index: 3;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    line-height: 1;
    font-size: calc(79px + (99 - 79) * ((100vw - 300px)/(1920 - 300)));
    position: relative;
    font-weight: 500;
    min-width: 68px;
    color: #fff;
}

.timer-item small {
    font-weight: 300;
    font-size: 19px;
    letter-spacing: 0;
}

.countdown-content-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    grid-gap: 8px;
    gap: 8px;
    padding: 32px 16% 32px 10%;
    background-color: #f2f2f2;
    line-height: 1.2;
}

.countdown-heading {
    font-size: calc(22px + (32 - 22) * ((100vw - 300px)/(1920 - 300)));
    display: block;
    font-weight: 500;
    line-height: 1.2;
    color: var(--pr-color-title, #19124f);
}

.countdown-text {
    font-size: 18px;
    line-height: 1.3;
    color: rgba(102, 102, 102);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: var(--middle-padding, 16px);
}

.countdown-subheading {
    font-size: 17px;
}

.secure-box {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: var(--middle-padding, 16px);
}

.secure-title {
    font-size: 18px;
    margin: var(--middle-padding, 16px) 0 8px;
    width: 100%;
    display: block;
    line-height: 1.2;
    color: var(--pr-color-title, #19124f);
    font-weight: 500;
}

.explore-box {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-gap: 24px;
    width: 100%;
    margin: 48px auto;
}

.explore-col {
    position: relative;
    overflow: hidden;
}

.explore-col:hover .explore-content {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.explore-image {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.explore-image::before {
    content: "";
    padding-top: 125%;
    display: block;
}

.explore-image img {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    object-fit: cover;
    object-position: center;
}

.explore-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 24px var(--middle-padding, 16px);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    font-size: 19px;
    font-weight: 500;
    color: #fff;
    background-color: rgba(11 11 11 / 33%);
    line-height: 1.2;
    border-radius: 7px;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    -ms-border-radius: 7px;
    -o-border-radius: 7px;
    transition: all 250ms ease;
}


.explore-title {
    font-size: 17px;
}

.explore-title:only-child {
    margin-top: auto;
}

.explore-desc {
    margin-top: auto;
}

.stories-box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 24px;
}

.story-col {
    position: relative;
}

.story-col:nth-child(n +4) {
    margin-top: 24px;
}

.story-col:nth-child(n +4)::before {
    content: "";
    height: 1px;
    width: 100%;
    display: block;
    background-color: var(--flash, #d1d1d1);
    position: absolute;
    top: -24px;
    left: 0;
}

.story-col:first-child {
    grid-row-start: span 3;
    position: relative;
}

.story-col:first-child .story-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 24px var(--middle-padding, 16px);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    font-weight: 500;
    color: #fff;
    background-color: rgba(11 11 11 / 33%);
    line-height: 1.2;
    font-size: 15px;
    border-radius: 7px;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    -ms-border-radius: 7px;
    -o-border-radius: 7px;
}

.story-col:first-child .story-image {
    position: relative;
    overflow: hidden;
}

.story-col:first-child .story-image:after {
    display: block;
    padding-top: 75%;
    content: "";
}

.story-col:first-child .story-title {
    font-size: 21px;
}

.story-col:first-child .story-image img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    object-position: center;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.story-col:nth-child(n + 2) {
    display: grid;
    grid-template-columns: 160px calc(100% - 176px);
    grid-gap: var(--middle-padding, 16px);
    align-items: stretch;
}

.story-col:nth-child(n + 2) .story-image {
    position: relative;
}

.story-col:nth-child(n + 2) .story-image::before {
    content: "";
    padding-top: 75%;
    display: block;
}

.story-col:nth-child(n + 2) .story-image img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    object-position: center;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.story-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.story-col:nth-child(n + 2) .story-title {
    font-weight: 500;
    font-size: 17px;
    color: var(var(--pr-color-title, #19124f));
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    width: 100%;
    height: 48px;
}

.story-col:nth-child(n + 2) .story-date {
    font-size: 15px;
    color: #595959;
}

.tran-btn {
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    display: flex;
    height: 52px;
    line-height: 52px;
    overflow: hidden;
    position: relative;
    text-align: center;
    width: 90%;
    max-width: 222px;
    margin: 6px auto 0;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.tran-btn .tran-btn-name {
    background: var(--pr-color-secondary, #ff7300);
    display: -webkit-box;
    overflow: hidden;
    position: absolute;
    transition: all .3s;
    width: calc(100% - 32px);
    z-index: 1;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    word-break: break-all
}

.tran-btn .tran-btn-sign {
    background-color: #fff;
    border: 1px dashed var(--pr-color-secondary, #ff7300);
    border-radius: 5px;
    color: #000;
    display: block;
    height: 100%;
    position: absolute;
    right: 0;
    width: 100%;
    padding: 0 10px;
    text-align: right;
    letter-spacing: 2px;
    font-family: 'Courier New', Courier, monospace;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    white-space: nowrap;
    -webkit-box-orient: vertical;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.tran-btn .tran-btn-img {
    border-right: 14px solid transparent;
    border-top: 52px solid var(--pr-color-secondary, #ff7300);
    height: 0;
    position: absolute;
    left: calc(100% - 32px);
    top: -1px;
    transition: all .3s;
    width: 0
}

.tran-btn .tran-btn-img:before {
    background-color: var(--pr-color-secondary);
    box-shadow: 0 0 10px 1px var(--pr-color-secondary, #ff7300);
    content: "";
    height: 100%;
    position: absolute;
    left: calc(100% - 48px);
    top: -47px;
    transform: rotate(15deg);
    width: 1px
}

.tran-btn:hover .tran-btn-name {
    background: var(--pr-color-secondary, #ff7300);
    transition: all .3s;
    width: calc(100% - 48px);
}

.tran-btn:hover .tran-btn-img {
    border-top: 49px solid var(--pr-color-secondary, #ff7300);
    left: calc(100% - 48px);
    transition: all .3s
}

.tran-btn.active .copy-code,
.tran-btn.active .tran-btn-img {
    display: none;
}

.tran-btn.active .tran-btn-sign {
    text-align: center;
    font-size: 19px;
}

input.link-to-copy {
    display: none
}

.shop-by-tablist {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: var(--middle-padding, 16px);
    grid-gap: var(--middle-padding, 16px);
    margin-bottom: var(--middle-padding, 16px);
    flex-wrap: wrap;
    row-gap: 0;
}

.shop-by-tablist:after {
    content: "";
    height: 2px;
    width: 100%;
    display: block;
    background: #eee;
    position: absolute;
    bottom: 0;
    left: 0;
}

.tablinks-category {
    display: block;
    font-weight: 500;
    border-radius: 0;
    padding: 0 0 12px 0;
    white-space: nowrap;
    cursor: pointer;
    user-select: none;
    position: relative;
}

.tablinks-category.active {
    color: var(--pr-color-secondary, #ff7300);
}

.shop-by-group-list-wrapper.active {
    display: block;
}

.shop-by-group-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 12px;
}

.shop-by-group-empty,
.shop-by-group-list-wrapper {
    display: none;
}

.shop-by-group-empty.active {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
}

.reviews-box {
    margin: 0 auto;
    overflow: hidden;
}

.trending-reviews-prev,
.trending-reviews-next {
    box-shadow: none;
    top: -36px !important
}

.trending-reviews-prev {
    left: auto !important;
    right: 50px !important;
}

.trending-reviews-next {
    right: 0 !important;
}

.reviews-slider {
    position: relative;
}

.reviews-box:not(.swiper-initialized) .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 12px;
}

.reviews-box:not(.swiper-initialized) .swiper-wrapper .review-item:nth-child(n + 4) {
    display: none;
}

.reviews-text {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    font-size: var(--middle-padding, 16px);
    height: 72px;
}

.review-item {
    padding: 12px 16px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border: 1px solid #e1e1e1;
    min-height: 166px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
}

.trending-reviews-pagination {
    position: relative;
    display: flex;
    justify-content: center;
    margin: 24px auto 0;
    gap: 3px;
    grid-gap: 3px;
    letter-spacing: 1px;
    font-size: 14px;
}

.swiper-pagination-current {
    font-weight: 500;
}

/* .trending-reviews-pagination .swiper-pagination-bullet-active {
    background-color: var(--secondary);
}
.trending-reviews-pagination .swiper-pagination-bullet {
    width: 15px;
    height: 3px;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
} */

.reviews-footer-top {
    width: 100%;
    font-size: 14px;
    margin-bottom: 10px;
    align-items: center;
}

.product-rating {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 4px;
    grid-gap: 4px;
}

.product-rating::after {
    content: '(' attr(rating-count) ')';
    font-size: 12px;
    opacity: 0.7;
    line-height: 14px;
}

.reviews-footer-box {
    margin-top: auto;
    padding-top: 10px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
    grid-gap: 8px;
    font-weight: 500;
}

.reviews-footer-box::before {
    content: "";
    width: 20px;
    height: 1px;
    display: block;
    background-color: #d1d1d1;
}

.old-price-highlight .percent-off {
    margin-left: 8px;
    color: #258635 !important;
    font-size: 13px;
    font-weight: 500;
}
.old-price-highlight .trending-arrivals-price {
    color: #258635 !important;
}
.old-price-highlight .trending-arrivals-high-price {
    color: #258635 !important;
}

.sell-by {
    width: 100%;
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 400;
    display: flex;
    align-items: center;
    font-size: 14px;
}
.sell-by .product-category-txt {
    color: #595959;
    font-weight: 400;
    margin-right: 4px;
}
.sell-by .product-category-link {
    color: #595959;
    font-weight: 400;
    max-width: calc(50vw - 52px);
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    white-space: normal;
    height: 21px;
    word-break: break-all;
}
.trending-arrivals-link .product-rating {
    margin-bottom: 4px;
}

.button-shop-now {
    border-radius: 6px;
    padding: 14px 20px;
    font-weight: 500;
    font-size: 18px;
    text-decoration: none;
    color: #fff;
    line-height: 1;
    background-color: var(--pr-color-information-600);
    min-width: 180px;
    text-align: center;
    transition: var(--pr-trans-standard);
    display: inline-block;
}
.button-shop-now:hover {
    color: #fff;
    background-color: var(--pr-color-information-500);
}

@media (min-width: 1024px) and (orientation: landscape) {
    .trending-arrivals-box .trending-arrivals-item:nth-child(n + 6) {
        display: none;
    }

    .trending-arrivals-box.show-all-item .trending-arrivals-item:nth-child(n + 6) {
        display: block;
    }

    .shop-by-group-list .trending-arrivals-item:nth-child(n + 11) {
        display: none;
    }

    .shop-by-group-list.show-all-item .trending-arrivals-item:nth-child(n + 11) {
        display: block;
    }
}

@media (max-width: 1200px) and (orientation: portrait) {
    .trending-arrivals-box .trending-arrivals-item:nth-child(n + 5) {
        display: none;
    }

    .trending-arrivals-box.show-all-item .trending-arrivals-item:nth-child(n + 5) {
        display: block;
    }

    .shop-by-group-list .trending-arrivals-item:nth-child(n + 9) {
        display: none;
    }

    .shop-by-group-list.show-all-item .trending-arrivals-item:nth-child(n + 9) {
        display: block;
    }
}

@media (max-width: 1000px) {

    #app-trending {
        overflow: hidden;
    }

    .trending-top-left {
        padding: 2.2rem 1.4rem;
    }

    .trending-explore-slider:not(.swiper-initialized) .swiper-wrapper,
    .trending-explore-list .swiper-wrapper {
        grid-template-columns: repeat(4, 1fr);
    }

    .trending-explore-slider:not(.swiper-initialized) .swiper-wrapper .trending-store-item:nth-child(n + 5),
    .trending-explore-list .swiper-wrapper .trending-store-item:nth-child(n + 5) {
        display: none;
    }

    .trending-arrivals-box {
        grid-template-columns: repeat(4, 1fr);
    }

    .trending-arrivals-box .trending-arrivals-item:nth-child(n + 5) {
        display: none;
    }

    .timer-item {
        font-size: 69px;
    }

    .countdown-content-wrapper {
        padding-left: 10%;
        padding-right: 10%;
    }

    .countdown-text {
        font-size: 19px;
    }

    .explore-box {
        grid-auto-flow: column;
        overflow-x: scroll;
        grid-template-columns: auto;
    }

    .secure-title {
        font-size: 17px;
    }

    .explore-col {
        width: 210px;
        min-width: 210px;
    }

    .story-col:first-child {
        grid-row-start: span 2;
    }

    .story-col:nth-child(n + 6) {
        display: none;
    }

    .story-col:nth-child(n + 2) {
        grid-template-columns: 100px calc(100% - 1var(--middle-padding, 16px));
    }

    .story-col:nth-child(n + 2) .story-title {
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        font-size: var(--middle-padding, 16px);
    }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {

    /* CSS cho iPad Portrait */
    .stories-box {
        grid-template-columns: repeat(6, 1fr);
    }

    .story-col:first-child {
        grid-column-start: span 3;
    }

    .story-col:nth-of-type(2),
    .story-col:nth-of-type(3) {
        grid-column-start: span 3;
    }

    .story-col:nth-child(n + 4) {
        display: block;
        margin-top: 0;
        grid-column-start: span 2;
    }

    .trending-arrivals-loading:nth-child(n + 5),
    .story-col:nth-child(n +4)::before,
    .story-col:nth-of-type(7) {
        display: none;
    }

    .story-col:nth-child(n + 4) .story-image::before {
        padding-top: 56.25%;
    }

    .story-col:nth-child(n + 4) .story-image {
        margin-bottom: 10px;
    }

    /*  */
    .shop-by-group-list {
        grid-template-columns: repeat(4, 1fr);
    }

}

@media only screen and (min-width: 768px) and (max-width: 1200px) and (max-height: 840px) and (orientation: landscape) {
    * {
        scrollbar-width: none;
    }

}