/* ====== Pipes / SVG liquid ====== */
.pipes {
    position: relative;
    padding-block: clamp(24px, 5vw, 56px);
    margin-top: -26px;
}

.pipes__stage {
    position: relative;
    aspect-ratio: var(--ar, 1286/545);
    left: 0;
}

.pipes__bg,
.pipes__svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    overflow: hidden;
}

.pipes__bg {
    left: 0;
}

.pipes__bg img {
    left: 0;
    position: absolute;
    width: 100%;
    transform: translate(-9px, -4px);
}

.pipes__cards {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.pipes__cards .pcard {
    position: absolute;
    --X: var(--x-m);
    --Y: var(--y-m);
    left: var(--X);
    top: var(--Y);
    transform: translate(-50%, -50%);
    width: var(--w-m, clamp(140px, 16vw, 220px));
    pointer-events: auto;
    z-index: var(--z, 1);
}

:root {
    --liq-color: #008efa;
    --liq-w: 3;
    --step-gap: .25s;
}

.liq {
    fill: none;
    stroke: #6dddff;
    stroke-width: var(--liq-w, 10);
    stroke-linecap: round;
    stroke-linejoin: round;
    vector-effect: non-scaling-stroke;
    opacity: 0;
    stroke-dasharray: 1;
    stroke-dashoffset: 1;
    will-change: stroke-dashoffset, opacity;
}

@keyframes draw {
    to {
        stroke-dashoffset: 0;
    }
}

.pipes__cards {
    position: absolute;
    inset: 0;
    z-index: 3;
}

.pcard {
    position: absolute;
    left: var(--x);
    top: var(--y);
    width: clamp(120px, 12vw, 180px);
}

.pcard__img {
    position: relative;
    width: 15%;
    aspect-ratio: 1/1;
    overflow: hidden;
    background: none;
    border: 0;
    box-shadow: none;
}

.pcard:nth-of-type(1) .pcard__img {
    transform: translate(-140%, 180%);
}

.pcard:nth-of-type(2) .pcard__img {
    transform: translate(-495%, 180%);
}

.pcard:nth-of-type(3) .pcard__img {
    transform: translate(-140%, 240%);
}

.pcard:nth-of-type(4) .pcard__img {
    transform: translate(-495%, 240%);
}

.pcard__img .layer {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .6s ease;
    height: 100%;
    object-fit: contain;
    pointer-events: none;
}

.pcard__img .layer.show {
    opacity: 1;
}

@media (max-width:900px) {
    .pipes__stage {
        width: min(var(--max, 1200px), 100% - 20px);
    }

    .pipes__cards {
        position: relative;
        inset: auto;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
        padding-top: 12px;
    }

    .pipes__cards .pcard {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        width: 100%;
    }
}

/* ===== Countdown ===== */
.countdown {
    padding: clamp(24px, 4vw, 40px) 0 clamp(40px, 7vw, 80px);
    text-align: center;
    color: var(--ink);
    padding-top: 0;
}

.countdown .container {
    width: min(var(--max, 1200px), 100% - 150px);
    margin-inline: auto;
}

.cd-title {
    font-size: clamp(18px, 3.2vw, 36px);
    margin: 0 0 30px 10px;
    font-weight: 800;
}

.cd-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: clamp(9px, 2vw, 16px);
    flex-direction: row-reverse;
}

:root {
    --cd-bg: url("../img/countdown.png");
    --cd-bleed: 8px;
}

.cd-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 0;
    border: 0;
    background: transparent;
    min-width: 0;
}

.cd-num {
    position: relative;
    display: grid;
    place-items: center;
    min-width: clamp(43px, 8vw, 92px);
    height: clamp(43px, 8vw, 92px);
    font-size: clamp(18px, 4.4vw, 36px);
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.cd-num::before {
    content: "";
    position: absolute;
    inset: calc(-1 * var(--cd-bleed));
    background: var(--cd-bg) center / 100% 100% no-repeat;
    border-radius: 22px;
    z-index: -1;
    pointer-events: none;
}

.cd-label {
    font-size: 14px;
    color: #fff;
    margin-top: 10px;
}

.cd-sep {
    font-size: clamp(24px, 4vw, 36px);
    line-height: 2;
    opacity: .85;
    margin: 0 .25em 0;
}

@media (max-width:480px) {
    .countdown .container {
        width: min(var(--max, 1200px), 100% - 32px);
    }
}

/* ===== #sec-products ===== */
#sec-products.psec {
    padding-block: clamp(24px, 4vw, 48px);
    color: var(--ink);
    overflow-anchor: none;
}

#sec-products .psec__container {
    width: min(var(--max, 1200px), 100% - 32px);
    margin-inline: auto;
    display: flex;
    gap: clamp(16px, 3vw, 24px);
    align-items: stretch;
    flex-wrap: nowrap;
    direction: rtl;
}

#sec-products .psec__carousel {
    flex: 0 0 80%;
    min-width: 0;
}

#sec-products .psec__aside {
    flex: 0 0 20%;
    min-width: 240px;
    max-width: 420px;
    display: flex;
    flex-direction: row;
    justify-content: end;
    align-items: end;
    gap: 10px;
    text-align: right;
}

#sec-products .psec__title {
    display: none;
}

#sec-products .heading-2 {
    width: 69%;
    font-size: 18px;
    text-align: right;
    margin-right: 115px;
    margin-top: -27px;
    margin-bottom: 23px;
    padding-top: 10px;
}

#sec-products .psec__visual {
    width: 100px;
    height: auto;
    display: block;
    object-fit: contain;
    margin: 4px -10px;
    position: absolute;
    top: 0%;
    right: 15px;
    transform: translatey(-105%);
    padding: 11px;
}

#sec-products .psec__cta {
    display: inline-block;
    padding: .3rem 1rem;
    border-radius: 999px;
    background: #1677ff;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
}

#prduct-1 .cta {
    display: flex;
    padding: .3rem 1rem;
    border-radius: 999px;
    background: #1677ff;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    justify-content: center;
    max-width: 130px;
    align-self: center;
    margin-top: 0;
    margin-left: 11px;
    position: absolute;
    left: 0;
    bottom: 10px;
}

#sec-products .psec__swiper {
    width: 100%;
    overflow: hidden;
    direction: rtl;
}

#sec-products .psec__swiper .swiper-wrapper {
    display: flex;
    gap: 0 !important;
    padding-bottom: 30px;
}

#sec-products .psec__swiper .swiper-slide {
    height: auto;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    display: flex;
}

#sec-products .pcard {
    background: transparent;
    border-radius: 14px;
    border: 1px solid #fff;
    box-shadow: 0 8px 24px rgba(2, 6, 23, .08);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

#sec-products .pcard a.pcard__link {
    position: absolute;
    inset: 0;
    z-index: 1;
}

#sec-products .pcard__thumb {
    padding: 12px;
    background-color: #f3f3f3;
}

#sec-products .pcard__imgwrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

#sec-products .pcard__pill {
    position: absolute;
    top: 80%;
    display: inline-flex;
    align-items: center;
    gap: 2px;
    padding: 0;
    border-radius: 10px;
    background: #ffffffdd;
    color: #0a5ed7;
    font-size: 10px;
    line-height: 1;
    left: 50%;
    width: 98%;
    transform: translatex(-50%);
    justify-content: center;
    padding-left: 20px;
    padding-right: 20px;
    min-height: 27px;
    padding-right: 20px;
}

#sec-products .pcard__pill-ico {
    width: 22px;
    height: 28px;
    display: inline-flex;
    background-color: #008efa;
    padding: 5px;
    margin: 0;
    border-radius: 0 10px 10px 0;
    position: absolute;
    right: 0;
}

#sec-products .pcard__pill-ico svg {
    width: 100%;
    height: 100%;
    display: block;
}

#sec-products .pcard__pill-ico path {
    fill: #fff;
}

#sec-products .pcard__pill--solid {
    background: linear-gradient(135deg, #0aa2ff, #1a66ff);
    color: #fff;
}

#sec-products .pcard__pill--solid .pcard__pill-ico path {
    fill: #fff;
}

#sec-products .pcard__body {
    padding: 0 6px 5px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.pcard__pill-txt {
    font-size: 10px;
    color: #000;
}

#sec-products .pcard__prices {
    margin-top: auto;
    padding: 0 5px 7px;
    display: flex;
    gap: 3px 5px;
    align-items: start;
    flex-direction: column-reverse;
}

#sec-products .pcard__old {
    font-size: 12px;
    color: #97a3b3;
    text-decoration: line-through;
}

#sec-products .pcard__off {
    background: #ff4d4f;
    color: #fff;
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 999px;
    align-self: flex-end;
}

#sec-products .pcard__new {
    grid-column: 1 / 3;
    display: flex;
    align-items: baseline;
    gap: 6px;
    color: #fff;
}

#sec-products .pcard__new small {
    font-size: 12px;
    color: #6b7993;
}

#sec-products .pcard__new strong {
    font-size: 16px;
    font-weight: 800;
}

@media (max-width:980px) {
    #sec-products .psec__container {
        flex-direction: column;
        position: relative;
        align-items: stretch;
    }

    #sec-products .psec__carousel {
        flex: 0 0 auto;
        width: 100%;
        min-width: 0;
    }

    #sec-products .psec__aside {
        order: 2;
        align-items: center;
        text-align: center;
        min-width: 0;
        max-width: none;
    }
}

#sec-products .psec__head {
    display: flex;
    justify-content: end;
    padding-bottom: 15px;
    z-index: 3;
    margin: 0;
}

#sec-products .psec__nav {
    display: flex;
    gap: 8px;
    flex-direction: row-reverse;
}

#sec-products .psec__prev,
#sec-products .psec__next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .25);
    background: rgba(255, 255, 255, .14);
    color: #fff;
    cursor: pointer;
    transition: .2s ease;
    outline: none;
}

#sec-products .psec__prev::before,
#sec-products .psec__next::before {
    content: "" !important;
    width: 16px;
    height: 16px;
    border-inline: 2px solid currentColor;
    border-block: 2px solid transparent;
    transform: rotate(45deg);
}

#sec-products .psec__prev::before {
    border-right-color: transparent;
    transform: translateX(2px) rotate(45deg);
}

#sec-products .psec__next::before {
    border-left-color: transparent;
    transform: translateX(-2px) rotate(45deg);
}

#sec-products .psec__prev:hover,
#sec-products .psec__next:hover {
    background: linear-gradient(135deg, #0aa2ff, #1a66ff);
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(2, 6, 23, .25);
}

#sec-products .psec__prev:focus-visible,
#sec-products .psec__next:focus-visible {
    box-shadow: 0 0 0 3px rgba(26, 102, 255, .35);
}

#sec-products .psec__prev.swiper-button-disabled,
#sec-products .psec__next.swiper-button-disabled {
    opacity: .4;
    cursor: default;
    pointer-events: none;
}

@media (max-width:600px) {
    #sec-products .psec__head {
        top: 89%;
        bottom: -15px;
        left: 10px;
        position: absolute;
        right: 0;
        justify-content: start;
    }
}

#sec-products .psec__prev::before,
#sec-products .psec__next::before {
    content: none !important;
}

#sec-products .psec__nav .ico {
    width: 18px;
    height: 18px;
    display: block;
    pointer-events: none;
}

/* ===== Section 4 (IPW) ===== */
#sec-ipw .container {
    width: min(1200px, 100% - 32px);
    margin-inline: auto;
}

#sec-ipw .head-box {
    margin-top: 0;
    margin-bottom: 10px;
}

#sec-ipw .ipw {
    --ink: #000;
    --sub: #9fb6d8;
    --muted: #1e3a5f;
    --ring: #23456f;
    --brand: #008efa;
    --soft: rgba(255, 255, 255, .04);
    color: var(--ink);
    font-family: 'Vazirmatn', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

#sec-ipw .ipw * {
    box-sizing: border-box;
}

#sec-ipw .glass {
    background: linear-gradient(180deg, rgba(255, 255, 255, .10), rgba(255, 255, 255, .06));
    border: 1px solid rgba(255, 255, 255, .22);
    box-shadow: 0 30px 60px rgba(2, 6, 23, .35), inset 0 1px 0 rgba(255, 255, 255, .18);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 18px;
    padding: 0px;
    margin-bottom: 20px;
    padding-bottom: 15px;
}

#sec-ipw .ipw-grid {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    flex-direction: column-reverse;
    align-items: center;
}

#sec-ipw .ipw-left {
    flex: 0 1 33%;
    padding: 0 20px;
    align-self: center;
    height: 100%;
}

#sec-ipw .ipw-right {
    flex: 0 1 67%;
    min-width: 320px;
    align-content: center;
    justify-content: center;
    align-content: center;
    padding: 20px;
    padding-bottom: 0;
}

#sec-ipw .ipw-card {
    width: 100%;
}

#sec-ipw .store-box {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
    align-items: center;
    color: #fff;
    width: 100%;
}

#sec-ipw .storebox {
    display: flex;
    align-items: center;
    color: #fff;
    flex-direction: row-reverse;
    gap: 10px;
    margin-bottom: 10px;
    justify-content: space-between;
    width: 100%;
}

#sec-ipw .store-logo {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, .3);
    background: #fff;
}

#sec-ipw .store-name {
    font-size: 14px;
    font-weight: 800;
}

#sec-ipw .ipw-sec-title {
    margin: 0 0 12px;
    font-size: 16px;
    font-weight: 800;
    color: #fff;
}

#sec-ipw .table-wrap {
    overflow: visible;
    border-radius: 0;
    background: transparent;
}

#sec-ipw table {
    width: 100%;
    display: block;
    border: 0;
    border-collapse: separate;
    background: transparent;
}

#sec-ipw table thead {
    display: none;
}

#sec-ipw tbody {
    display: grid;
    gap: 12px;
    padding: 4px;
}

#sec-ipw tbody tr {
    display: grid;
    grid-template-columns: 1fr max-content;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    color: #fff;
}

#sec-ipw td {
    padding: 0;
    border: 0;
    text-align: inherit;
    font-size: 14px;
}

#sec-ipw tbody td:first-child {
    color: #475569;
    font-weight: 600;
}

#sec-ipw tbody td:last-child {
    font-weight: 800;
    white-space: nowrap;
    justify-self: end;
}

#sec-ipw tbody tr:nth-child(even) {
    background: transparent;
    color: #fff;
}

#sec-ipw .ipw-inputs {
    display: flex;
    flex-direction: column;
}

#sec-ipw .ipw-cta {
    margin-top: 14px;
    width: 100%;
    padding: 5px 16px;
    border-radius: 100px;
    color: #fff;
    font-weight: 800;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #1677ff;
}

#sec-ipw .ipw-cta:hover {
    filter: brightness(1.06);
}

#sec-ipw .ipw-card-in-2 {
    display: flex;
    gap: 10px;
    align-items: center;
}

#sec-ipw .ipw-card-in {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

#ipw-preview {
    display: none !important;
}

#sec-ipw .ipw-preview img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

#sec-ipw .ipw-preview-title {
    font-size: 13px;
    color: #d9e7ff;
    font-weight: 700;
    margin: 0 0 10px;
}

#sec-ipw .ipw-thumbs {
    width: 100%;
    padding: 8px 4px;
}

#sec-ipw .ipw-thumbs .swiper-wrapper {
    align-items: stretch;
}

#sec-ipw .ipw-thumbs .swiper-slide {
    height: auto;
}

#sec-ipw .ipw-prod {
    background: transparent;
    border-radius: 14px;
    padding: 0px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    height: 100%;
    color: #fff;
    transition: .18s;
    border: 1px solid #fff;
    padding-bottom: 5px;
}

#sec-ipw .ipw-prod:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 22px rgba(2, 6, 23, .18);
}

#sec-ipw .ipw-prod.selected {
    box-shadow: 0 0 0 2px var(--brand) inset;
    border-color: transparent;
}

#sec-ipw .ipw-ph {
    position: relative;
    aspect-ratio: 1/1;
    border-radius: 10px 10px 0 0;
    overflow: hidden;
    background: #fff;
}

#sec-ipw .ipw-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

#sec-ipw .ipw-initial {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: #9fb6d8;
    font-weight: 800;
    font-size: 18px;
}

#sec-ipw .ipw-pricechip {
    align-self: center;
    font-size: 9px;
    padding: 4px 8px;
    border-radius: 999px;
    background: rgba(0, 142, 250, 0);
    color: #fff;
}

#sec-ipw .ipw-cap {
    text-align: center;
    font-size: 12px;
    line-height: 1.45;
    color: #fff;
    font-weight: 800;
}

#sec-ipw .swiper-button-prev,
#sec-ipw .swiper-button-next {
    width: 20px;
    height: 20px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, .25);
    background: linear-gradient(180deg, rgba(255, 255, 255, .85), rgba(245, 250, 255, .9));
    color: #0f172a;
    padding: 3px;
}

#sec-ipw .swiper-button-prev:after,
#sec-ipw .swiper-button-next:after {
    font-size: 5px;
}

#sec-ipw .swiper-button-disabled {
    opacity: .45;
}

#sec-ipw .ipw-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 12px;
}

#sec-ipw .ipw-field label {
    font-size: 12px;
    color: #c6d7ef;
}

#sec-ipw input[type="text"],
#sec-ipw input[type="number"] {
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 12px;
    padding: 12px 14px;
    font-size: 15px;
    background: #fff;
    color: #000;
}

#sec-ipw input:focus {
    outline: 2px solid var(--brand);
    border-color: transparent;
}

#sec-ipw input[readonly] {
    background: transparent;
    color: #c8d6ea;
    cursor: not-allowed;
    border-radius: 8px;
}

#sec-ipw .ipw-hint {
    font-size: 12px;
    color: #9fb6d8;
}

#sec-ipw .discount-box {
    display: none;
    margin: 10px 0;
    padding: 10px;
    border-radius: 12px;
    font-size: 12px;
    color: #d9ecff;
    text-align: center;
    border-radius: 8px;
    color: #fff;
    border: 1px solid #fff;
}

#sec-ipw .ipw-pill {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    padding: 8px 12px;
    border: 1px dashed rgba(255, 255, 255, .25);
    border-radius: 999px;
    font-size: 12px;
    color: #d7e6ff;
    background: #fff;
}

#sec-ipw #ipw-price,
#sec-ipw #ipw-creditM {
    direction: ltr;
    text-align: left;
}

#sec-ipw .credit-input {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

#sec-ipw .credit-input .ipw-txt {
    flex: 1;
    border-radius: 8px;
    background: transparent;
    color: #fff;
    font-size: 15px;
    direction: ltr;
    text-align: left;
    padding-left: 46px;
    max-width: 100%;
}

#sec-ipw .credit-input .ipw-txt:focus {
    outline: 2px solid var(--brand);
    border-color: transparent;
}

#sec-ipw .credit-input .ipw-suffix {
    position: absolute;
    inset-inline-end: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    color: #c6d7ef;
    pointer-events: none;
}

#sec-ipw button.ipw-step {
    position: absolute;
    right: 20px;
    background-color: transparent;
}

#sec-ipw button.ipw-step:nth-of-type(1) {
    bottom: 0;
}

#sec-ipw button.ipw-step:nth-of-type(2) {
    top: 0;
}

#sec-ipw .ipw-step {
    display: flex;
    flex-direction: row;
    gap: 10px;
    border: none;
    border-radius: 100%;
    color: #fff;
    font-weight: 800;
    cursor: pointer;
}

#sec-ipw .ipw-step:disabled {
    opacity: .45;
    cursor: not-allowed;
}

#sec-ipw #ipw-creditText {
    display: none;
}

#sec-ipw .ipw-pcard {
    width: 35%;
    border-radius: 16px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background-color: #fff;
    align-items: center;
    justify-content: space-between;
    align-self: stretch;
}

#sec-ipw .pcard__imgwrap {
    position: relative;
    min-width: 100%;
    border-radius: 12px;
    aspect-ratio: 1/1;
    background: #ebebeb;
    display: grid;
    place-items: center;
}

#sec-ipw #pcard-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

#sec-ipw .pcard__logo {
    position: absolute;
    top: 5px;
    left: 5px;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    object-fit: cover;
}

#sec-ipw .pcard__pill {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(0, 142, 250, .14);
    border: 1px solid rgba(0, 142, 250, .35);
    color: #d9ecff;
    font-weight: 800;
    font-size: 12px;
    backdrop-filter: blur(6px);
}

#sec-ipw .pcard__body {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.pcard__title {
    font-size: 11px;
    font-weight: 800;
    color: #fff !important;
    line-height: 1.5;
    margin-top: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#sec-ipw .pcard__price {
    align-self: flex-start;
    font-size: 12px;
    font-weight: 800;
    color: #000;
    padding: 6px 10px;
}

#sec-ipw tfoot {
    width: 100%;
    display: flex;
}

#sec-ipw tr {
    width: 100%;
    display: flex;
    text-align: center;
    justify-content: space-between;
    border-top: 1px solid;
    padding-top: 10px;
    padding-bottom: 10px;
    color: #fff;
}

#sec-ipw .ipw-card-in-2 {
    gap: 12px;
}

.ipw-right p {
    color: #fff;
    padding-bottom: 20px;
}

@media (max-width: 900px) {
    #sec-ipw .ipw-grid {
        flex-direction: column-reverse;
        gap: 16px;
        align-items: stretch;
    }

    #sec-ipw .ipw-left,
    #sec-ipw .ipw-right {
        flex: 0 0 auto;
        width: 100%;
        min-width: 0;
        padding-inline: 16px;
    }

    #sec-ipw .ipw-pcard {
        width: 100%;
    }
}

/* ===== Section 5 / Categories ===== */
.sec-cat {
    max-width: 100%;
}

/* گرید ۲×۲ ثابت */
.cat-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    /* فاصله بین کارت‌ها */
}

/* کل کارت لینک‌دار */
.cat-card {
    display: block;
    width: 100%;
    text-decoration: none;
    color: inherit;
}

/* باکس تصویر؛ ۴ تا باکس دقیقاً هم‌اندازه */
.cat-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    /* نسبت تصویر؛ اگر خواستی کنش کن به 16/9 */
    border-radius: 18px;
    background: transparent;
}

/* تصویر فول‌کادر و هم‌اندازه */
.cat-img-wrap picture,
.cat-img-wrap img {
    display: block;
    width: 100%;
    height: 100%;
}

.cat-img-wrap img {
    object-fit: contain;
}

/* باکس گلس‌مورفی روی تصویر */
.cat-glass {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    /* تا دکمه جدا کلیک نگیرد و کل کارت لینک بماند */
    pointer-events: none;
    display: flex;
    justify-content: center;

}

/* عنوان دسته */
.cat-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
}

/* CTA شبیه دکمه هرو */
.cat-cta {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 999px;
    background: #008efa;
    /* برند بلو اسنپ‌پی */
    color: #ffffff;
    white-space: nowrap;
}

/* اگر خواستی روی خیلی موبایل‌های کوچک کمی فاصله‌ها ریزتر شود */
@media (max-width: 480px) {
    .cat-grid {
        gap: 8px;
    }

    .cat-glass {
        bottom: 22%;
        padding: 6px 10px;
        left: 33%;
    }

    .cat-title {
        font-size: 0.8rem;
    }

    .cat-cta {
        font-size: 10px;
        padding: 3px 8px;
        min-width: 150px;
        text-align: center;
    }
}

/* ===== PCX Product Carousel ===== */
.pcx,
.pcx-2 {
    --brand: #008efa;
    --ink: #0f172a;
    --muted: #64748b;
    --bg: #0a1640;
    --soft: #f1f5f9;
    --radius: 18px;
    --shadow: 0 10px 30px rgba(2, 6, 23, .08);
    --gap: 18px;
    --card: transparent;
}

.pcx .pcx-tabs,
.pcx-2 .pcx-tabs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-inline: 6px;
    scroll-snap-type: x proximity;
    max-width: 1220px;
}

.pcx .pcx-tabs::-webkit-scrollbar,
.pcx-2 .pcx-tabs::-webkit-scrollbar {
    display: none;
}

.pcx .pcx-tabs button,
.pcx-2 .pcx-tabs button {
    flex: 0 0 auto;
    scroll-snap-align: start;
    appearance: none;
    border: 1px solid #fff;
    background: transparent;
    color: #fff;
    cursor: pointer;
    padding: 8px 8px;
    border-radius: 14px;
    font: 500 11px/1.2 system-ui;
    transition: .2s;
}

.pcx .pcx-tabs button:hover,
.pcx-2 .pcx-tabs button:hover {
    border-color: rgba(255, 255, 255, .3);
}

.pcx .pcx-tabs .is-active,
.pcx-2 .pcx-tabs .is-active {
    background: #fff;
    color: var(--ink);
    border-color: #fff;
}

.pcx .pcx-swiper,
.pcx-2 .pcx-swiper {
    position: relative;
    max-width: 1220px;
    margin: 0 auto;
}

.pcx .swiper-slide,
.pcx-2 .swiper-slide {
    height: auto;
}

.pcx .swiper-wrapper,
.pcx-2 .swiper-wrapper {
    padding: 6px 0 18px;
    margin-bottom: 16px;
}

/* ناوبری اسلایدر محصولات بلک فرایدی */
#pcx-bf .nav-pcx {
    display: flex;
    gap: 8px;
    flex-direction: row-reverse;
    /* اگر می‌خوای سمت راست/چپ بچسبه، اینجا تنظیم کن */
    justify-content: flex-start;
}

/* دکمه‌های قبلی/بعدی */
#pcx-bf .pcx-nav {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .25);
    background: rgba(255, 255, 255, .14);
    color: #fff;
    cursor: pointer;
    transition: .2s ease;
    outline: none;
}

/* هاور */
#pcx-bf .pcx-nav:hover {
    background: linear-gradient(135deg, #0aa2ff, #1a66ff);
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(2, 6, 23, .25);
}

/* فوکوس با کیبورد */
#pcx-bf .pcx-nav:focus-visible {
    box-shadow: 0 0 0 3px rgba(26, 102, 255, .35);
}

/* وقتی Swiper دکمه رو غیرفعال می‌کنه */
#pcx-bf .pcx-nav.swiper-button-disabled {
    opacity: .4;
    cursor: default;
    pointer-events: none;
}

/* آیکون‌های داخل دکمه (SVG) */
/* === ناوبری PCX با استایل دقیقاً مثل #sec-products === */

/* ظرف دکمه‌ها مثل .psec__nav */
#pcx-bf .nav-pcx {
    display: flex;
    gap: 8px;
    flex-direction: row-reverse;
}

/* خود دکمه‌ها مثل .psec__prev / .psec__next */
#pcx-bf .pcx-nav {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .25);
    background: rgba(255, 255, 255, .14);
    color: #fff;
    cursor: pointer;
    transition: .2s ease;
    outline: none;
}

/* هاور مثل psec */
#pcx-bf .pcx-nav:hover {
    background: linear-gradient(135deg, #0aa2ff, #1a66ff);
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(2, 6, 23, .25);
}

/* فوکوس با کیبورد */
#pcx-bf .pcx-nav:focus-visible {
    box-shadow: 0 0 0 3px rgba(26, 102, 255, .35);
}

/* حالت غیرفعال (swiper-button-disabled) */
#pcx-bf .pcx-nav.swiper-button-disabled {
    opacity: .4;
    cursor: default;
    pointer-events: none;
}

/* آیکون svg داخل دکمه، معادل .psec__nav .ico */
#pcx-bf .pcx-nav svg {
    width: 7px;
    height: 12px;
    display: block;
    pointer-events: none;
}

@media (max-width: 600px) {
    #pcx-bf .nav-pcx {
        position: absolute;
        top: 89%;
        bottom: -15px;
        right: 15px;
        right: auto;
        justify-content: start;
    }
}


/* اگر خواستی توی موبایل ببریش پایین-چپ اسلایدر، همچین چیزی می‌تونی بذاری: */
@media (max-width: 600px) {
    #pcx-bf .nav-pcx {
        position: absolute;
        bottom: 16px;
        right: 22px;
        left: auto;
        justify-content: start;
        margin-top: 10px;
    }
}

.pcx .pcx-card,
.pcx-2 .pcx-card {
    background: var(--card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border: 1px solid #fff;
}

.pcx .pcx-media,
.pcx-2 .pcx-media {
    position: relative;
    background: var(--soft);
    border-radius: 14px 14px 0 0;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.pcx .pcx-media img,
.pcx-2 .pcx-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.pcx .pcx-title,
.pcx-2 .pcx-title {
    font: 600 14px/1.5 system-ui;
    color: #fff;
    margin: 0;
    min-height: 40px;
    padding: 5px 10px;
    font-size: 12px;
}

.pcx .pcx-price,
.pcx-2 .pcx-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 8px;
    flex-direction: column;
    padding: 5px 10px;
}

.pcx .pcx-price .now,
.pcx-2 .pcx-price .now {
    font: 800 14px/1.2 system-ui;
    color: #fff;
}

.pcx .pcx-price .old,
.pcx-2 .pcx-price .old {
    font-size: 12px;
    color: var(--muted);
    text-decoration: line-through;
    align-self: start;
}

.pcx .pcx-row,
.pcx-2 .pcx-row {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 12px;
    position: absolute;
    bottom: 10px;
    left: 10px;
}

.pcx .pcx-badge,
.pcx-2 .pcx-badge {
    background: #ff4d4f;
    color: #fff;
    font: 700 12px/1 system-ui;
    border-radius: 25px;
    padding: 5px 5px;
}

.pcx .pcx-merchant,
.pcx-2 .pcx-merchant {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    position: absolute;
    left: 6px;
    top: 6px;
}

.pcx .pcx-merchant img,
.pcx-2 .pcx-merchant img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    object-fit: cover;
}

.pcx .pcx-merchant span,
.pcx-2 .pcx-merchant span {
    font: 600 12px/1 system-ui;
    color: var(--muted);
}

.pcx .pcx-cta,
.pcx-2 .pcx-cta {
    text-decoration: none;
}

.pcx-box1,
.pcx-box2 {
    display: flex;
    min-height: 44px;
    justify-content: space-between;
    margin-bottom: 10px;
}

/* Mobile: PCX Carousel */
@media (max-width: 900px) {

    .pcx .pcx-tabs,
    .pcx-2 .pcx-tabs {
        scroll-snap-type: x mandatory;
    }

    .pcx .pcx-nav,
    .pcx-2 .pcx-nav {
        display: none;
    }

    .pcx-box1,
    .pcx-box2 {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-bottom: 16px;
        width: 100%;
        padding: 0 9px;
    }

    .nav-pcx {
        order: 1;
        display: flex;
        gap: 8px;
        width: 100%;
        flex-direction: row-reverse;
        justify-content: right;
    }

    .pcx-nav {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        min-width: 36px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.14);
        border: 1px solid rgba(255, 255, 255, 0.25);
        color: #fff;
        flex-shrink: 0;
        padding: 0;
    }



    .pcx-tabs {
        order: 2;
        display: flex;
        gap: 8px;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding: 8px 0;
        scroll-snap-type: x mandatory;
        width: 100%;
        margin: 0;
    }

    .pcx-tabs::-webkit-scrollbar {
        display: none;
    }

    .pcx-tabs button {
        flex: 0 0 auto;
        min-width: 100px;
        white-space: nowrap;
        scroll-snap-align: start;
        padding: 10px 16px;
        font-size: 13px;
        border-radius: 12px;
        border: 1px solid #fff;
        background: transparent;
        color: #fff;
        transition: all 0.2s ease;
    }

    .pcx-tabs button.is-active {
        background: #fff;
        color: #000;
    }

    .pcx-swiper {
        width: 100%;
        max-width: 100vw;
        overflow: hidden;
        margin: 0;
    }

    .pcx-swiper .swiper-wrapper {
        display: flex;
        align-items: stretch;
        padding: 8px 0;
        margin: 0;
    }

    .pcx-swiper .swiper-slide {
        width: 165px;
        max-width: 165px;
        height: auto;
        flex-shrink: 0;
        display: flex;
        align-items: stretch;
    }

    .pcx-card {
        height: 100%;
        display: flex;
        flex-direction: column;
        overflow: hidden;
        width: 100%;
        position: relative;
        background: transparent;
        border: 1px solid #fff;
        border-radius: 14px;
        padding: 0;
    }

    .pcx-media {
        flex: 0 0 auto;
        aspect-ratio: 1 / 1;
        width: 100%;
        overflow: hidden;
        border-radius: 14px 14px 0 0;
        background: #f5f5f5;
        position: relative;
    }

    .pcx-media img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        display: block;
    }

    .pcx-title {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
        text-overflow: ellipsis;
        word-wrap: break-word;
        min-height: 38px;
        max-height: 42px;
        line-height: 1.4;
        padding: 6px 8px 0 8px;
        margin: 0;
        font-size: 11px;
        color: #fff;
        font-weight: 600;
    }

    .pcx-price {
        display: flex;
        flex-direction: column;
        gap: 4px;
        padding: 6px 8px 45px 8px;
        margin-top: auto;
    }

    .pcx-price .now {
        font-size: 14px;
        font-weight: 800;
        color: #fff;
        line-height: 1.2;
    }

    .pcx-price .old {
        font-size: 11px;
        color: #94a3b8;
        text-decoration: line-through;
        line-height: 1.2;
    }

    .pcx-row {
        position: absolute;
        bottom: 8px;
        left: 8px;
        display: flex;
        align-items: center;
        gap: 6px;
        z-index: 2;
    }

    .pcx-badge {
        background: #ff4d4f;
        color: #fff;
        font-size: 10px;
        font-weight: 700;
        padding: 5px 8px;
        border-radius: 16px;
        line-height: 1;
    }

    .pcx-merchant {
        position: absolute;
        left: 6px;
        top: 6px;
        display: flex;
        align-items: center;
        z-index: 2;
    }

    .pcx-merchant img {
        width: 28px;
        height: 28px;
        border-radius: 50%;
        object-fit: cover;
        border: 2px solid #fff;
    }

    .pcx-merchant span {
        display: none;
    }

    .swiper-pagination {
        position: relative;
        bottom: 0;
        margin-top: 12px;
        display: flex;
        justify-content: center;
        gap: 6px;
    }

    .swiper-pagination-bullet {
        background: rgba(255, 255, 255, 0.4);
        opacity: 1;
        width: 6px;
        height: 6px;
        border-radius: 50%;
        transition: all 0.3s ease;
    }

    .swiper-pagination-bullet-active {
        background: #fff;
        width: 20px;
        border-radius: 3px;
    }
}

@media (max-width: 400px) {
    .pcx-swiper .swiper-slide {
        width: 150px;
        max-width: 150px;
    }

    .pcx-title {
        font-size: 10px;
        min-height: 36px;
    }

    .pcx-price .now {
        font-size: 11px;
    }
}

@media (min-width: 401px) and (max-width: 600px) {
    .pcx-swiper .swiper-slide {
        width: 170px;
        max-width: 170px;
    }
}

@media (min-width: 601px) and (max-width: 900px) {
    .pcx-swiper .swiper-slide {
        width: 190px;
        max-width: 190px;
    }

    .pcx-title {
        font-size: 12px;
        min-height: 40px;
    }

    .pcx-price .now {
        font-size: 15px;
    }
}

/* Malls slider */
.malls-slider {
    --m-edge: 12px;
    --m-gap: 12px;
    --m-aspect: 16/10;
    margin: 22px 0;
}

.malls-slider #malls-swiper {
    padding-inline: var(--m-edge);
    overflow: hidden;
}

.malls-slider .m-title {
    font-size: clamp(13px, 4vw, 13px);
    margin-right: 0px;
    margin-top: 3px;
}

.malls-slider .m-city {
    bottom: 52px;
    padding-right: 4px;
}

.malls-slider .malls-nav {
    width: 28px;
    height: 28px;
    font-size: 20px;
}

.malls-slider .m-ph {
    min-height: 100px;
}

/* Vouchers */
.vch2 .vch2__nav {
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 8px;
    padding: 0 8px 10px;
}

.vch2 .vch2__btn {
    min-width: 110px;
}

.vch2 .card {
    min-height: 150px;
}

.vch2 .card__title {
    font-size: 11px;
    width: 70%;
}

.vch2 .card__sub {
    font-size: 8px;
}

.vch2 .tip {
    min-width: 200px;
}

/* FAQ */
@media (max-width: 899px) {
    .sp-faq .faq-wrap {
        grid-template-columns: 1fr;
    }

    .sp-faq .faq-media {
        order: -1;
    }

    .sp-faq .faq-accordion {
        display: grid;
        gap: 12px;
    }

    .sp-faq .faq-summary {
        font-size: 15px;
    }

    .sp-faq .faq-content {
        font-size: 14px;
    }
}

.sp-faq[dir="rtl"] .faq-media {
    display: flex;
    flex-direction: row;
    justify-content: center;
    position: absolute;
    top: 0;
    right: 50%;
    transform: translateX(100%);
}

.sec-container {
    margin: 15px 0;
}

#prduct-1.sec-container,
#prduct-2.sec-container {
    margin: 0px 0;
    position: relative;
    padding-bottom: 50px;
}

#sec-products.sec-container {
    margin: 0px 0;
}

.heading-2 {
    text-align: right;
}

.heading-3 {
    text-align: center;
    font-size: 13px;
    margin-bottom: 10px;
    font-weight: 400;
    margin-top: -15px;
}

.head-box {
    margin-bottom: 20px;
    margin-top: 70px;
}


.malls-slider .head-box {
    margin-bottom: 20px;
    margin-top: 30px;
}

#vch2-1 .head-box {
    margin-bottom: 5px;
    margin-top: 70px;
}

.vch2 .vch2__cats .swiper-wrapper {
    padding-right: 10px;
}

.sub-text {
    text-align: center;
    font-weight: 400;
    font-size: 12px;
    margin-top: 10px;
}

/* iOS & Performance Fixes */
html,
body {
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
    max-width: 100vw;
}

.pcx-swiper,
.swiper-wrapper,
.swiper-slide,
.pcx-card,
.pcx-media {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: transform;
}

#sec-cat.sec-container {
    padding: 20px 24px !important;
}

@media (max-width: 900px) {

    .pcx-tabs button,
    .pcx-nav,
    .pcx-card,
    .swiper-slide,
    button,
    a {
        -webkit-tap-highlight-color: transparent;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        user-select: none;
        touch-action: manipulation;
    }

    input,
    select,
    textarea {
        font-size: 16px;
    }

    #prduct-1 .heading-2,
    #prduct-2 .heading-2 {
        text-align: center;
        margin-right: 7px;
        margin-bottom: 5px;
    }

    .heading-3 {
        padding: 0 16px;
        word-wrap: break-word;
        text-align: center;
        line-height: 1.4;
    }

    .heading-2 {
        font-size: clamp(18px, 5vw, 24px);
        padding: 0 16px;
        word-wrap: break-word;
        text-align: center;
        margin-bottom: 20px;
        line-height: 1.4;
    }

    .sec-container {
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
        padding: 20px 0;
    }
}


@supports (padding: max(0px)) {
    @media (max-width: 900px) {

        .pcx,
        .pcx-2,
        #pcx-bf,
        #pcx-bf {
            padding-left: max(12px, env(safe-area-inset-left));
            padding-right: max(12px, env(safe-area-inset-right));
        }

        .pcx-swiper {
            padding-left: max(12px, env(safe-area-inset-left));
            padding-right: max(12px, env(safe-area-inset-right));
        }
    }
}

@media (max-width: 900px) and (min-height: 844px) {

    .pcx,
    .pcx-2 {
        padding-top: max(24px, env(safe-area-inset-top));
    }
}

.vch2 .card__left {
    width: 120px;
}

.vch2 .card__right {
    width: 210px;
}

.vch2 .card__title {
    font-size: 15px;
}

.vch2 .card__sub {
    font-size: 10px;
}

#vch2-1 .head-box {
    color: #fff;
    margin-top: 0;
}

.m-title {
    padding-right: 5px;
}

/* ===== Mobile styles ===== */
@media (max-width: 899px) {
    .promo-slider {
        padding-block: 8px 14px;
    }

    .promo-slider .promo-swiper {
        padding-inline: 12px;
    }

    .promo-slider .swiper-slide {
        /* کمی اسلاید از کناره‌ها بیرون بزند (حس کارتی) */
        width: auto;
    }


    .promo-nav {
        display: none;
        /* روی موبایل فقط سواپ لمسی و دات‌ها کافی‌ست */
    }

    .promo-pagination {
        bottom: 6px;
    }
}

.sp-faq .faq-q {
    font-size: 14px;
    font-weight: 400;
}

.faq-content p {
    font-size: 11px;
}

.hero__title {
    min-height: 80px;
    line-height: 80px;
}

.filimo p {
    line-height: 35px;
    margin: 0;
}

.hero__copy {
    height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* لیگ برندگان اسنپ پی */
/* ===== Winners League Slider – Mobile ===== */

#sec-hero-slider {
    padding-block: 32px;
}

#sec-hero-slider .hero-badge{
    font-size: .8em;
}
#sec-hero-slider .hero-swiper {
    width: 100%;
    padding: 0 40px;
}

#sec-hero-slider .hero-slide {
    display: flex;
    /* حتما فلکس */
    flex-direction: column;
    /* تصویر بالا، متن پایین */
    align-items: stretch;
    gap: 16px;
    color: #e5edff;
}

/* باکس تصویر: تمام عرض، ارتفاع ثابت */
#sec-hero-slider .hero-slide__media {
    width: 100%;
    height: 220px;
    /* ابعاد استاتیک موبایل */
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    /* بدون بک‌گراند */
}

#sec-hero-slider .hero-slide__img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* کل تصویر دیده بشه */
    display: block;
}

/* باکس متن */
#sec-hero-slider .hero-slide__content {
    width: 100%;
    min-height: auto;
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: start;
}

#sec-hero-slider .hero-slide__eyebrow {
    font-size: 0.85rem;
    margin-bottom: 6px;
    color: #38bdf8;
}

#sec-hero-slider .hero-slide__title {
    font-size: 1.10rem;
    margin-bottom: 8px;
    color: #f9fafb;
}

#sec-hero-slider .hero-slide__meta {
    font-size: .8em;
    text-align: right;
}
#sec-hero-slider .hero-slide__subtitle {
    font-size: 0.8rem;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #d1e0ff;
}

#sec-hero-slider .hero-slide__subtitle--small {
    font-size: 0.8rem;
}

#sec-hero-slider .hero-slide__list {
    text-align: right;
    width: 100%;
    max-width: 360px;
    margin: 0 auto 10px;
    padding-right: 1.2rem;
    font-size: .8em;
}

#sec-hero-slider .hero-slide__list--points {
    list-style: none;
    padding: 0;
    max-width: 320px;
}

#sec-hero-slider .hero-slide__list--points li {
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

#sec-hero-slider .hero-slide__badges {
    justify-content: center;
}

#sec-hero-slider .hero-slide__cta {
    margin-top: 8px;
    align-self: center;
    background-color: transparent;
    border: none;
    color: #fff;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

/* Pagination */
#sec-hero-slider .hero-slider__pagination {
    margin-top: 16px;
    position: absolute;
    top: 0;
    display: flex;
    flex-direction: column;
    z-index: 0;
    right: 10px;
}
.hero__media{
    height: 422.5px;
}
.hero-slide__cta svg path{
    color: #fff;
    fill: #fff;line-height: 10px;
}