.desktop .boosted-products-heading {
    padding-top: 1vw;
    text-align: center;
    margin-bottom: 0;
}
.mobile .boosted-products-heading {
    padding-top: 3vw;
    text-align: center;
    margin-bottom: 0;
}
.mobile .boosted-products-text {
    margin: 0;
    padding-bottom: 3vw;
    text-align: center;
    color: var(--coral);
    font-weight: 500;
}
.desktop .boosted-products-text {
    margin: 0;
    padding-bottom: 1vw;
    text-align: center;
    color: var(--coral);
    font-weight: 500;
}
.desktop .boosted-products-wrapper {
    background-color: var(--rose-gold);
    position: relative;
    width: 100%;
    overflow: hidden;
}
.mobile .boosted-products-wrapper {
    background-color: var(--rose-gold);
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-bottom: 6vw;
}
.gavin-boosted-products-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 20vw;
    gap: 2vw;
    padding-left: 2vw;
    padding-right: 2vw;
    overflow-x: auto;
    scroll-behavior: smooth;
    overscroll-behavior-x: contain;
}

.gavin-boosted-products-grid::-webkit-scrollbar {
    display: none;
}

.mobile .gavin-boosted-product:not(.mobile .gavin-boosted-product:first-child):not(.mobile .gavin-boosted-product:last-child) {
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: subgrid;
    grid-row: auto / span 3;
    background-color: white;
    border-radius: 3vw;
    overflow: hidden;
    min-width: 80vw;
    max-width: 80vw;
    gap: 2vw;
}

.desktop .gavin-boosted-product:not(.desktop .gavin-boosted-product:last-child) {
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: subgrid;
    grid-row: auto / span 3;
    background-color: white;
    border-radius: 0.5vw;
    overflow: hidden;
    min-width: 20vw;
    max-width: 20vw;
    gap: 0.5vw;
}

/* arrows */
.boosted-products-wrapper .arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 30;
    width: 3.6vw;
    height: 3.6vw;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.95);
    border: none;
    border-radius: 50%;
    box-shadow: 0 .2vw .6vw rgba(0,0,0,0.12);
    cursor: pointer;
    font-size: 1.6vw;
    color: #333;
    transition: transform 0.2s, opacity 0.2s;
}

.boosted-products-wrapper .arrow-left {
    left: 0.8vw;
}

.boosted-products-wrapper .arrow-right {
    right: 0.8vw;
}

.boosted-products-wrapper .arrow:not([disabled]):hover {
    transform: translateY(-50%) scale(1.03);
    opacity: 0.95;
}

.boosted-products-wrapper .arrow[disabled],
.boosted-products-wrapper .arrow[aria-disabled="true"] {
    opacity: 0.35;
    cursor: not-allowed;
}

@media (max-width: 720px) {
    .gavin-boosted-products-grid {
        grid-auto-columns: 70vw;
        gap: 4vw;
    }

    .boosted-products-wrapper .arrow {
        width: 10vw;
        height: 10vw;
        font-size: 5vw;
    }
}
