html,
body {
    overflow-x: hidden;
    width: 100%;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

/* ============================================================
   CLAVE — ANASAYFA (Gymshark / Clave referans redesign)
   Renkler: siyah #000 · beyaz #fff · vurgu #00ffb0
   ============================================================ */
.anasayfa-page {
    position: relative;
    width: 100%;
    max-width: 100%;
    background: var(--c-white);
    color: var(--c-black);
    overflow-x: hidden;
}

/* ── Ortak Buton ── */
.gs-btn {
    display: inline-block;
    background: var(--c-white);
    color: var(--c-black);
    padding: 15px 36px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid var(--c-white);
    border-radius: 2px;
    transition: all .25s ease;
    cursor: pointer;
}

.gs-btn:hover {
    background: var(--c-accent);
    border-color: var(--c-accent);
    color: #000;
}

.gs-btn--ghost {
    background: transparent;
    color: var(--c-white);
}

.gs-btn--ghost:hover {
    background: var(--c-white);
    color: #000;
    border-color: var(--c-white);
}

.gs-btn--accent {
    background: var(--c-accent);
    border-color: var(--c-accent);
    color: #000;
}

.gs-btn--accent:hover {
    background: #000;
    border-color: #000;
    color: var(--c-accent);
}

/* ============================================================
   1. HERO SLIDER (tam ekran)
   ============================================================ */
.gs-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    height: 100svh;
    min-height: 560px;
    overflow: hidden;
    background: #000;
}

.gs-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity .9s ease;
    z-index: 1;
}

.gs-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.gs-slide video,
.gs-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.gs-slide-link {
    position: absolute;
    inset: 0;
    z-index: 4;
}

/* Yazı okunabilirliği için alttan koyu gradient */
.gs-hero-shade {
    position: absolute;
    inset: 0;
    z-index: 3;
    background: linear-gradient(to top, rgba(0, 0, 0, .65) 0%, rgba(0, 0, 0, .15) 45%, rgba(0, 0, 0, 0) 75%);
    pointer-events: none;
}

.gs-hero-content {
    position: absolute;
    left: 6%;
    bottom: 11%;
    z-index: 5;
    max-width: 640px;
    color: var(--c-white);
    pointer-events: none;
}

.gs-hero-content .gs-btn {
    pointer-events: auto;
}

.gs-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 6vw, 5rem);
    font-weight: 900;
    line-height: .95;
    letter-spacing: -.02em;
    text-transform: uppercase;
    margin-bottom: 28px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, .45);
}

.gs-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.gs-hero-dots {
    position: absolute;
    bottom: 26px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 6;
    display: flex;
    gap: 10px;
}

.gs-dot {
    width: 38px;
    height: 4px;
    border: none;
    border-radius: 2px;
    background: rgba(255, 255, 255, .45);
    cursor: pointer;
    transition: background .3s;
    padding: 0;
}

.gs-dot.active {
    background: var(--c-accent);
}

/* ============================================================
   2. KATEGORİ GRID  [KADIN | ERKEK] + [XTRA geniş]
   ============================================================ */
.gs-category-grid {
    padding: 16px 20px;
}

.gs-grid-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.gs-cat-card {
    position: relative;
    display: block;
    height: 62vh;
    min-height: 420px;
    max-height: 680px;
    overflow: hidden;
    border-radius: 4px;
    background: var(--c-gray-100);
}

.gs-cat-full {
    height: 38vh;
    min-height: 240px;
}

.gs-cat-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s ease;
}

.gs-cat-card:hover img {
    transform: scale(1.06);
}

.gs-cat-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .55), rgba(0, 0, 0, 0) 55%);
    transition: background .3s;
}

.gs-cat-card:hover .gs-cat-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, .65), rgba(0, 0, 0, .1) 60%);
}

.gs-cat-title {
    position: absolute;
    left: 34px;
    bottom: 58px;
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 900;
    color: var(--c-white);
    text-transform: uppercase;
    letter-spacing: .02em;
}

.gs-cat-cta {
    position: absolute;
    left: 34px;
    bottom: 30px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    color: var(--c-white);
    text-transform: uppercase;
    border-bottom: 2px solid var(--c-accent);
    padding-bottom: 3px;
}

/* ============================================================
   3. VİTRİN ÜRÜN CAROUSEL
   ============================================================ */
.gs-product-carousel-sec {
    padding: 18px 20px;
    /* overflow: hidden; kaldirildi ki oklar tasiyabilsin */
}

.gs-sec-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 16px;
    gap: 16px;
}

.gs-sec-title {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 3vw, 2.1rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -.01em;
}

.gs-sec-link {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--c-black);
    text-decoration: none;
    white-space: nowrap;
}

.gs-sec-link:hover {
    color: var(--c-accent);
}

.gs-product-track-wrapper {
    position: relative;
    width: 100%;
}

.gs-nav-arrow {
    position: absolute;
    top: 40%;
    /* Gorselin ortasına denk gelmesi için 50%'den 40%'a çektim (alt kısımdaki yazıları kompanse etmek için) */
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    background: #fff;
    border: 2px solid #eee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    color: #111;
    transition: all 0.3s ease;
}

.gs-nav-arrow svg {
    width: 28px;
    height: 28px;
    transition: transform 0.3s ease;
}

.gs-nav-arrow:hover {
    background: var(--c-accent);
    color: #000;
    border-color: var(--c-accent);
    box-shadow: 0 8px 20px rgba(0, 255, 176, 0.3);
}

.gs-nav-left {
    left: -28px;
}

.gs-nav-left:hover svg {
    transform: translateX(-3px);
}

.gs-nav-right {
    right: -28px;
}

.gs-nav-right:hover svg {
    transform: translateX(3px);
}

.gs-product-track {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-bottom: 8px;
}

.gs-product-track::-webkit-scrollbar {
    display: none;
}

.product-card {
    flex: 0 0 280px;
    scroll-snap-align: start;
    position: relative;
}

.pc-img-wrap {
    display: block;
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    background: var(--c-gray-100);
    overflow: hidden;
    border-radius: 4px;
    margin-bottom: 14px;
}

.pc-img-main,
.pc-img-hover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity .35s ease, transform .7s ease;
}

.pc-img-hover {
    position: absolute;
    inset: 0;
    opacity: 0;
}

.pc-img-wrap.has-hover:hover .pc-img-main {
    opacity: 0;
}

.pc-img-wrap:hover .pc-img-hover {
    opacity: 1;
}

.pc-img-wrap.has-hover:hover .pc-img-main,
.pc-img-wrap:hover .pc-img-hover {
    transform: scale(1.04);
}

.pc-img-wrap:not(.has-hover):hover .pc-img-main {
    transform: scale(1.04);
}

.pc-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--c-accent);
    color: #000;
    padding: 4px 10px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    border-radius: 2px;
}

.pc-info {
    text-align: left;
}

.pc-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
    line-height: 1.3;
}

.pc-title a {
    color: var(--c-black);
    text-decoration: none;
}

.pc-title a:hover {
    color: var(--c-accent);
}

.pc-price {
    font-size: 14px;
    font-weight: 500;
}

.old-price {
    text-decoration: line-through;
    color: var(--c-gray-500);
    margin-right: 8px;
}

.current-price {
    color: var(--c-black);
    font-weight: 700;
}

/* ============================================================
   4. PERFORMANS BANNER (tam genişlik)
   ============================================================ */
.gs-full-banner {
    position: relative;
    width: 100%;
    height: 76vh;
    height: 76svh;
    min-height: 480px;
    max-height: 760px;
    overflow: hidden;
    background-color: #111;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    /* Mobilde fixed arka plan iOS/Safari'de kırpma bozar — scroll varsayılan */
    background-attachment: scroll;
}

.gs-full-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .35);
}

.gs-full-banner-content {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--c-white);
    width: min(90%, 720px);
    z-index: 2;
}

.gs-full-banner-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.6rem);
    font-weight: 900;
    margin-bottom: 16px;
    text-transform: uppercase;
    text-shadow: 0 4px 30px rgba(0, 0, 0, .4);
}

.gs-full-banner-content p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: 30px;
    opacity: .92;
}

@media (min-width: 993px) {
    .gs-full-banner {
        background-attachment: fixed;
    }
}

/* ============================================================
   5. REYON (KADIN / ERKEK büyük kartlar)
   ============================================================ */
.gs-gender-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding: 0 20px 32px;
}

.gs-gender-card {
    position: relative;
    display: block;
    aspect-ratio: 4/5;
    overflow: hidden;
    border-radius: 4px;
    background: var(--c-gray-100);
}

.gs-gender-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s ease;
}

.gs-gender-card:hover img {
    transform: scale(1.05);
}

.gs-gender-card-content {
    position: absolute;
    bottom: 44px;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 2;
}

.gs-gender-card-content h3 {
    font-family: var(--font-display);
    color: var(--c-white);
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 0 4px 16px rgba(0, 0, 0, .5);
}

/* ============================================================
   6. KAMPANYA / DUYURU BANNER (bg görsel + yazı + buton)
   ============================================================ */
.gs-campaign {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 40px 20px;
    text-align: center;
}

.gs-campaign::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .5);
}

.gs-campaign-inner {
    position: relative;
    z-index: 2;
    max-width: 720px;
    margin: 0 auto;
    color: var(--c-white);
}

.gs-campaign-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.gs-campaign-text {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: 30px;
    opacity: .92;
}

/* ============================================================
   7. ÜYE KAYDI BÖLÜMÜ (NEW HERE? %10 OFF)
   ============================================================ */
.gs-signup {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    background: var(--c-black);
    color: var(--c-white);
}

.gs-signup-media {
    position: relative;
    min-height: 420px;
}

.gs-signup-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gs-signup-body {
    padding: clamp(24px, 4vw, 54px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.gs-signup-badge {
    display: inline-block;
    background: var(--c-accent);
    color: #000;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 2px;
    margin-bottom: 22px;
}

.gs-signup-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.05;
    margin-bottom: 18px;
}

.gs-signup-text {
    font-size: 1.05rem;
    color: var(--c-gray-200);
    margin-bottom: 30px;
    max-width: 460px;
}

/* Coupon Box Styles */
.gs-coupon-box {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px dashed var(--c-accent);
    padding: 12px 20px;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    transition: all 0.25s ease;
    margin-bottom: 24px;
    width: 100%;
    max-width: 320px;
    user-select: none;
}

.gs-coupon-box:hover {
    background: rgba(255, 255, 255, 0.14);
    border-style: solid;
    box-shadow: 0 4px 15px rgba(0, 255, 176, 0.15);
}

.gs-coupon-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--c-gray-200);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.gs-coupon-code {
    font-family: var(--font-display, inherit);
    font-size: 18px;
    font-weight: 800;
    color: var(--c-accent);
    letter-spacing: 0.1em;
}

.gs-coupon-copy-icon {
    font-size: 14px;
    color: var(--c-accent);
    margin-left: auto;
    transition: transform 0.2s ease;
}

.gs-coupon-box:hover .gs-coupon-copy-icon {
    transform: scale(1.15);
}

.gs-coupon-tooltip {
    position: absolute;
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 9px;
    font-weight: 700;
    color: var(--c-accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, bottom 0.2s ease;
}

.gs-coupon-box:hover .gs-coupon-tooltip {
    opacity: 1;
    bottom: -28px;
}

.gs-coupon-tooltip.copied {
    color: #000;
    background: var(--c-accent);
    padding: 2px 8px;
    border-radius: 2px;
    bottom: -28px;
    opacity: 1;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 992px) {
    .gs-cat-card {
        height: 46vh;
        min-height: 320px;
    }
}

@media (max-width: 768px) {
    .gs-nav-arrow {
        display: none !important;
    }

    .gs-hero {
        height: 88vh;
        height: 88svh;
        min-height: 480px;
        max-height: 88svh;
    }

    .gs-hero-content {
        left: 20px;
        right: 20px;
        bottom: 80px;
        max-width: none;
        text-align: center;
    }

    .gs-hero-title {
        font-size: clamp(1.75rem, 8.5vw, 2.75rem);
        margin-bottom: 20px;
    }

    .gs-hero-buttons {
        justify-content: center;
    }

    .gs-hero-buttons .gs-btn {
        padding: 13px 24px;
        font-size: 12px;
    }

    .gs-full-banner {
        height: 76vh;
        height: 76svh;
        min-height: 420px;
        max-height: none;
        background-attachment: scroll !important;
        background-position: center center;
        background-size: cover;
    }

    .gs-full-banner-content {
        width: min(92%, 720px);
        padding: 0 12px;
    }

    .gs-full-banner-content h2 {
        font-size: clamp(1.65rem, 7.5vw, 2.5rem);
        margin-bottom: 12px;
    }

    .gs-full-banner-content p {
        font-size: clamp(0.9rem, 3.8vw, 1.05rem);
        margin-bottom: 22px;
    }

    .gs-grid-row {
        grid-template-columns: 1fr;
    }

    .gs-cat-card {
        height: 52vh;
        min-height: 300px;
    }

    .gs-cat-full {
        height: 32vh;
    }

    .gs-gender-section {
        grid-template-columns: 1fr;
    }

    .gs-signup {
        grid-template-columns: 1fr;
    }

    .gs-signup-media {
        min-height: 320px;
    }

    .product-card {
        flex: 0 0 65vw;
        max-width: 260px;
    }

    .gs-campaign {
        padding: 40px 20px;
    }

    .gs-category-grid {
        padding: 20px 14px;
    }
}


/* ============================================================
   MUSTERI YORUMLARI - Premium Editorial Redesign
   ============================================================ */

/* Section wrapper */
.gs-reviews-section {
    padding: 40px 0 30px;
    background: #fff;
    overflow: hidden;
}

/* Header */
.reviews-header-wrap {
    display: flex;
    align-items: center;
    gap: 28px;
    margin: 0 auto 28px;
    max-width: 1280px;
    padding: 0 40px;
}

.reviews-header-line {
    flex: 1;
    height: 1px;
    background: #e5e5e5;
}

.reviews-header-text {
    text-align: center;
    flex-shrink: 0;
}

.reviews-eyebrow {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--c-accent, #00ffb0);
    margin-bottom: 10px;
}

.reviews-heading {
    font-family: var(--font-display, inherit);
    font-size: clamp(1.6rem, 3.5vw, 2.8rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #111;
    margin: 0;
    white-space: nowrap;
}

/* Track outer (holds arrows + scroll area) */
.reviews-track-outer {
    position: relative;
    padding: 0 64px;
    max-width: 1440px;
    margin: 0 auto;
}

/* Arrow buttons */
.rv-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-60%);
    z-index: 10;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1.5px solid #e0e0e0;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 4px 18px rgba(0, 0, 0, .07);
    color: #111;
}

.rv-arrow svg {
    width: 20px;
    height: 20px;
}

.rv-arrow:hover {
    background: #111;
    border-color: #111;
    color: #fff;
    box-shadow: 0 8px 28px rgba(0, 0, 0, .18);
    transform: translateY(-60%) scale(1.06);
}

.rv-arrow--prev {
    left: 0;
}

.rv-arrow--next {
    right: 0;
}

.rv-arrow--hidden {
    opacity: 0;
    pointer-events: none;
}

/* Scrollable track */
.reviews-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 16px 4px 24px;
}

.reviews-track::-webkit-scrollbar {
    display: none;
}

/* Card */
.rv-card {
    flex: 0 0 calc(25% - 18px);
    min-width: 280px;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #ebebeb;
    transition: transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1),
        box-shadow 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.rv-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 60px rgba(0, 0, 0, .10);
    border-color: transparent;
}

/* Photo */
.rv-card__photo {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: #f0f0f0;
    flex-shrink: 0;
}

.rv-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: block;
}

.rv-card:hover .rv-card__photo img {
    transform: scale(1.05);
}

/* Gradient overlay on photo */
.rv-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, .72) 0%,
            rgba(0, 0, 0, .18) 40%,
            rgba(0, 0, 0, 0) 68%);
    pointer-events: none;
}

/* Stars on photo bottom */
.rv-card__stars {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 3px;
    z-index: 2;
}

.rv-star {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.rv-star--filled path {
    fill: #FFD200;
}

.rv-star--empty path {
    fill: rgba(255, 255, 255, .3);
}

/* Card body */
.rv-card__body {
    padding: 16px 20px 16px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    background: #fff;
}

/* Big open quote */
.rv-card__quote-icon {
    display: none !important;
}

.rv-card__text {
    font-size: 13.5px;
    line-height: 1.65;
    color: #666;
    margin: 0 0 12px;
    font-weight: 400;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.rv-card__footer {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    border-top: 1px solid #f2f2f2;
    padding-top: 10px;
    margin-top: auto;
}

.rv-card__name {
    font-size: 13px;
    font-weight: 700;
    color: #111;
    letter-spacing: 0.01em;
}

.rv-card__verified {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 10.5px;
    font-weight: 600;
    color: #00a676;
    letter-spacing: 0.02em;
}

.rv-card__verified svg {
    width: 14px;
    height: 14px;
    fill: #00a676;
    flex-shrink: 0;
}

/* Dot indicators */
.reviews-dots {
    display: none !important;
}

.rv-dot {
    width: 28px;
    height: 3px;
    border: none;
    border-radius: 2px;
    background: #ddd;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s, width 0.3s;
}

.rv-dot.active {
    background: #111;
    width: 44px;
}

/* Responsive */
@media (max-width: 1280px) {
    .rv-card {
        flex: 0 0 calc(33.333% - 16px);
    }
}

@media (max-width: 992px) {
    .gs-reviews-section {
        padding: 30px 0 24px;
    }

    .reviews-track-outer {
        padding: 0 44px;
    }

    .rv-card {
        flex: 0 0 calc(50% - 12px);
    }

    .reviews-heading {
        white-space: normal;
    }
}

@media (max-width: 768px) {
    .gs-reviews-section {
        padding: 24px 0 20px;
    }

    .reviews-track-outer {
        padding: 0 16px;
    }

    .rv-arrow {
        display: none;
    }

    .rv-card {
        flex: 0 0 80%;
    }

    .reviews-header-wrap {
        padding: 0 20px;
        gap: 14px;
    }

    .reviews-header-line {
        display: none;
    }
}

@media (max-width: 480px) {
    .rv-card {
        flex: 0 0 88%;
    }
}