:root {
    --orange: #f17e02;
    --black: #000000;
    --white: #ffffff;
    --gray: #111111;
    --gray-light: #1b1b1b;
    --text-muted: #a7a7a7;

    --container: 1800px;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    background: var(--black);
    color: var(--white);
    font-family: "Inter", sans-serif;
}


a {
    color: inherit;
    text-decoration: none;
}


button {
    font: inherit;
}


.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding-left: 48px;
    padding-right: 48px;
}


/* =========================
   HEADER
========================= */

.header {
    position: fixed;
    top: 0;
    left: 0;

    z-index: 1000;

    width: 100%;
    height: 86px;

    background: rgba(0, 0, 0, 0.92);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(12px);
}

.header-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}


.logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
    min-width: 150px;
}


.logo-main {
    font-family: "Russo One", sans-serif;
    font-size: 30px;
    color: var(--orange);
    letter-spacing: 1px;
}


.logo-sub {
    margin-top: 4px;
    font-family: "Russo One", sans-serif;
    font-size: 9px;
    letter-spacing: 3px;
    color: #fff;
}


.nav {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 42px;
}


.nav-link {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;

    font-family: "Russo One", sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    color: #d2d2d2;

    transition: color 0.25s ease;
}


.nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;

    width: 0;
    height: 3px;

    background: var(--orange);

    transition: width 0.25s ease;
}


.nav-link:hover,
.nav-link.active {
    color: var(--white);
}


.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}


.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}


.kaspi-btn {
    min-height: 44px;
    padding: 0 17px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 5px;

    font-family: "Russo One", sans-serif;
    font-size: 10px;
    text-transform: uppercase;

    transition: 0.25s ease;
}


.kaspi-btn svg {
    width: 17px;
    height: 17px;
    color: var(--orange);
}


.kaspi-btn:hover {
    border-color: var(--orange);
    background: rgba(241, 126, 2, 0.08);
}


.header-whatsapp {
    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 5px;

    transition: 0.25s ease;
}


.header-whatsapp svg {
    width: 18px;
}


.header-whatsapp:hover {
    color: var(--orange);
    border-color: var(--orange);
}


.burger {
    display: none;

    width: 44px;
    height: 44px;

    border: 0;
    background: transparent;
    color: white;

    cursor: pointer;
}


/* =========================
   HERO
========================= */

.hero {
    position: relative;
    margin-top: 86px;
    min-height: calc(100vh - 86px);
    overflow: hidden;
    background: #050505;
}


.hero-bg {
    position: absolute;
    inset: 0;

    background: #050505;

    opacity: 1;
}


.hero-inner {
    position: relative;
    z-index: 2;

    min-height: calc(100vh - 86px);

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}


.hero-content {
    width: 52%;
    padding: 80px 0;
}


.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 25px;
    padding: 8px 13px;

    border: 1px solid rgba(241, 126, 2, 0.45);
    border-radius: 4px;

    font-family: "Russo One", sans-serif;
    font-size: 10px;
    color: var(--orange);
}


.hero-label span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--orange);
}


.hero h1 {
    max-width: 850px;

    font-family: "Russo One", sans-serif;
    font-size: clamp(48px, 5vw, 86px);
    line-height: 0.98;
    text-transform: uppercase;
}


.hero h1 strong {
    display: block;
    color: var(--orange);
    font-weight: inherit;
}


.hero-text {
    max-width: 650px;
    margin-top: 28px;

    font-size: 18px;
    line-height: 1.55;
    color: #c4c4c4;
}


.hero-buttons {
    display: flex;
    gap: 12px;
    margin-top: 38px;
}


.btn {
    min-height: 56px;
    padding: 0 23px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    border-radius: 5px;

    font-family: "Russo One", sans-serif;
    font-size: 11px;
    text-transform: uppercase;

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease;
}


.btn:hover {
    transform: translateY(-2px);
}


.btn svg {
    width: 18px;
    height: 18px;
}


.btn-orange {
    background: var(--orange);
    color: #000;
}


.btn-orange:hover {
    background: #ff941c;
}


.btn-dark {
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #fff;
}


.btn-dark:hover {
    border-color: var(--orange);
}


.hero-features {
    display: flex;
    gap: 45px;
    margin-top: 55px;
}


.hero-feature {
    display: flex;
    align-items: center;
    gap: 12px;
}


.hero-feature svg {
    width: 25px;
    height: 25px;
    color: var(--orange);
}


.hero-feature span {
    font-size: 11px;
    line-height: 1.4;
    text-transform: uppercase;
    color: #d8d8d8;
}


.hero-visual {
    position: relative;
    width: 52%;
    height: 760px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: visible;
}

.hero-visual img {
    width: 115%;
    height: 115%;

    object-fit: cover;
    object-position: center;

    -webkit-mask-image: linear-gradient(
        90deg,
        transparent 0%,
        #000 12%,
        #000 88%,
        transparent 100%
    );

    mask-image: linear-gradient(
        90deg,
        transparent 0%,
        #000 12%,
        #000 88%,
        transparent 100%
    );

    transform: scale(1.02);
}




.hero-height {
    position: absolute;
    bottom: 22%;
    right: 5%;
    border-radius: 5px;
    padding: 18px 20px;

    border: 1px solid rgba(241, 126, 2, 0.6);
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
     z-index: 3;
}


.hero-height span {
    display: block;

    font-family: "Russo One", sans-serif;
    font-size: 9px;
    color: #aaa;
}


.hero-height strong {
    display: block;
    margin-top: 5px;

    font-family: "Russo One", sans-serif;
    font-size: 25px;
    color: var(--orange);
}


.hero-bottom-line {
    position: absolute;
    z-index: 3;
    bottom: 0;
    left: 0;

    width: 100%;
    height: 3px;

    background: linear-gradient(
        90deg,
        transparent,
        var(--orange),
        transparent
    );
}


/* =========================
   PRODUCTS
========================= */

.section {
    padding: 110px 0;
}


.products {
    background: #080808;
}


.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 45px;
}


.section-label {
    display: block;
    margin-bottom: 12px;

    font-family: "Russo One", sans-serif;
    font-size: 11px;
    letter-spacing: 1.5px;
    color: var(--orange);
    text-transform: uppercase;
}


.section-head h2 {
    font-family: "Russo One", sans-serif;
    font-size: clamp(36px, 4vw, 58px);
    line-height: 1;
}


.section-head h2 strong {
    color: var(--orange);
    font-weight: inherit;
}


.section-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding-bottom: 8px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.35);

    font-family: "Russo One", sans-serif;
    font-size: 11px;
    text-transform: uppercase;

    transition: 0.25s ease;
}


.section-link svg {
    width: 17px;
    height: 17px;
}


.section-link:hover {
    color: var(--orange);
    border-color: var(--orange);
}


/* GRID */

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}


/* CARD */

.product-card {
    position: relative;
    min-height: 430px;

    overflow: hidden;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 8px;

    background: #111;

    transition:
        transform 0.35s ease,
        border-color 0.35s ease;
}


.product-card:hover {
    transform: translateY(-6px);
    border-color: rgba(241, 126, 2, 0.65);
}


.product-card-image {
    position: absolute;
    inset: 0;
}


.product-card-image::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.05) 25%,
            rgba(0, 0, 0, 0.30) 48%,
            rgba(0, 0, 0, 0.95) 100%
        );
}


.product-card-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.6s ease;
}


.product-card:hover .product-card-image img {
    transform: scale(1.06);
}


/* CONTENT */

.product-card-content {
    position: relative;
    z-index: 2;

    padding: 30px;

    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: end;
    gap: 20px;
}


.product-number {
    align-self: start;

    font-family: "Russo One", sans-serif;
    font-size: 12px;

    color: var(--orange);
}


.product-card h3 {
    margin-bottom: 10px;

    font-family: "Russo One", sans-serif;
    font-size: 27px;
    line-height: 1;
}


.product-card p {
    max-width: 330px;

    font-size: 14px;
    line-height: 1.5;

    color: #b4b4b4;
}


.product-arrow {
    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;

    transition: 0.3s ease;
}


.product-arrow svg {
    width: 19px;
    height: 19px;
}


.product-card:hover .product-arrow {
    background: var(--orange);
    border-color: var(--orange);
    color: #000;
}


/* =========================
   ADVANTAGES
========================= */

.advantages {
    position: relative;
    overflow: hidden;

    background: #000;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}


.advantages::before {
    content: "";

    position: absolute;
    top: -300px;
    right: -200px;

    width: 600px;
    height: 600px;

    background: var(--orange);
    opacity: 0.035;

    filter: blur(140px);
    border-radius: 50%;
}


.advantages-head {
    position: relative;
    z-index: 1;

    margin-bottom: 55px;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}


.advantages-head h2 {
    margin-top: 12px;

    font-family: "Russo One", sans-serif;
    font-size: clamp(38px, 4vw, 62px);
    line-height: 0.98;
}


.advantages-head h2 strong {
    color: var(--orange);
    font-weight: inherit;
}


/* GRID */

.advantages-grid {
    position: relative;
    z-index: 1;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    overflow: hidden;
}


.advantage-card {
    position: relative;

    min-height: 300px;
    padding: 35px 28px;

    border-right: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}


/* Последняя колонка */
.advantage-card:nth-child(3n) {
    border-right: 0;
}

/* Нижний ряд */
.advantage-card:nth-child(n + 4) {
    border-bottom: 0;
}

/* Первая колонка */
.advantage-card:nth-child(3n + 1) {
    border-left: 0;
}


.advantage-card:hover {
    background: #0d0d0d;
}


.advantage-icon {
    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 55px;

    border: 1px solid rgba(241, 126, 2, 0.5);
    border-radius: 5px;

    color: var(--orange);

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}


.advantage-icon svg {
    width: 27px;
    height: 27px;

    stroke-width: 1.6;
}


.advantage-card:hover .advantage-icon {
    background: var(--orange);
    color: #000;
    transform: translateY(-4px);
}


.advantage-number {
    position: absolute;
    top: 35px;
    right: 28px;

    font-family: "Russo One", sans-serif;
    font-size: 11px;

    color: #555;
}


.advantage-card h3 {
    margin-bottom: 13px;

    font-family: "Russo One", sans-serif;
    font-size: 17px;
    line-height: 1.15;
}


.advantage-card p {
    max-width: 230px;

    font-size: 13px;
    line-height: 1.55;

    color: #858585;
}

/* =========================
   BESTSELLER
========================= */

.bestseller {
    background: #080808;
}


.bestseller-head {
    align-items: center;
}


.bestseller-tag {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    padding: 9px 13px;

    border: 1px solid rgba(241, 126, 2, 0.45);
    border-radius: 4px;

    font-family: "Russo One", sans-serif;
    font-size: 9px;
    letter-spacing: 1px;
    color: var(--orange);
}


.bestseller-tag svg {
    width: 16px;
    height: 16px;
}


/* CARD */

.bestseller-card {
    position: relative;

    min-height: 620px;

    display: grid;
    grid-template-columns: 1fr 1.15fr 0.55fr;

    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 8px;

    background: #0d0d0d;
}


/* LEFT */

.bestseller-info {
    position: relative;
    z-index: 2;

    padding: 50px 45px;

    display: flex;
    flex-direction: column;
    justify-content: center;
}


.bestseller-info > .product-number {
    margin-bottom: 22px;
}


.bestseller-info h3 {
    max-width: 450px;

    font-family: "Russo One", sans-serif;
    font-size: clamp(32px, 3vw, 48px);
    line-height: 1.02;
}


.bestseller-info h3 strong {
    display: block;

    color: var(--orange);
    font-weight: inherit;
}


.bestseller-description {
    max-width: 480px;

    margin-top: 25px;

    font-size: 14px;
    line-height: 1.6;

    color: #999;
}


.product-specs {
    margin-top: 32px;

    display: flex;
    flex-direction: column;

    border-top: 1px solid rgba(255, 255, 255, 0.10);
}


.product-spec {
    padding: 17px 0;

    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}


.product-spec:nth-child(odd) {
    margin-right: 20px;
}


.product-spec span {
    display: block;

    margin-bottom: 5px;

    font-size: 8px;
    letter-spacing: 1px;

    color: #666;
}


.product-spec strong {
    font-family: "Russo One", sans-serif;
    font-size: 12px;
}


.bestseller-actions {
    display: flex;
    gap: 10px;

    margin-top: 35px;
}


.bestseller-actions .btn {
    min-height: 50px;
    padding: 0 18px;

    font-size: 9px;
}


/* CENTER IMAGE */

.bestseller-image {
    position: relative;
    min-height: 620px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
    

    background:
        radial-gradient(
            circle at center,
            rgba(241, 126, 2, 0.13),
            transparent 55%
        );
}


.bestseller-image-bg {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            #0d0d0d 0%,
            transparent 25%,
            transparent 75%,
            #0d0d0d 100%
        );
}


.bestseller-image img {
    position: relative;
    z-index: 2;
    
    width: 90%;
    height: 90%;

    object-fit: contain;

    filter:
        drop-shadow(0 25px 40px rgba(0, 0, 0, 0.7));

    transition: transform 0.6s ease;
}


.bestseller-card:hover .bestseller-image img {
    transform: scale(1.04);
}


.image-badge {
    position: absolute;
    z-index: 3;

    right: 30px;
    bottom: 30px;

    display: flex;
    align-items: center;
    gap: 7px;

    padding: 8px 10px;

    background: rgba(0, 0, 0, 0.8);

    font-family: "Russo One", sans-serif;
    font-size: 7px;
    letter-spacing: 1px;

    color: #777;
}


.image-badge span {
    color: var(--orange);
}


/* RIGHT */

.bestseller-side {
    padding: 45px 30px;

    display: flex;
    flex-direction: column;

    border-left: 1px solid rgba(255, 255, 255, 0.10);
}


.bestseller-side-item {
    display: flex;
    gap: 14px;

    padding: 22px 0;

    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}


.bestseller-side-item svg {
    flex: 0 0 auto;

    width: 23px;
    height: 23px;

    color: var(--orange);
}


.bestseller-side-item strong {
    display: block;

    font-family: "Russo One", sans-serif;
    font-size: 10px;
    line-height: 1.25;
}


.bestseller-side-item span {
    display: block;

    margin-top: 7px;

    font-size: 10px;
    line-height: 1.4;

    color: #666;
}


.bestseller-side-bottom {
    margin-top: auto;
    padding-top: 25px;
}


.bestseller-side-bottom span {
    display: block;

    font-size: 8px;
    letter-spacing: 2px;

    color: #666;
}


.bestseller-side-bottom strong {
    display: block;

    margin-top: 4px;

    font-family: "Russo One", sans-serif;
    font-size: 25px;

    color: var(--orange);
}


/* =========================
   ASSEMBLY
========================= */

.assembly {
    background: #080808;
}

.assembly-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 45px;
}

.assembly-head h2 {
    margin-top: 12px;
    font-family: "Russo One", sans-serif;
    font-size: clamp(38px, 4vw, 62px);
    line-height: 0.98;
}

.assembly-head h2 strong {
    color: var(--orange);
    font-weight: inherit;
}

.assembly-head p {
    max-width: 420px;
    margin-bottom: 5px;
    font-size: 14px;
    line-height: 1.6;
    color: #858585;
}


/* VIDEO */

.assembly-video {
    position: relative;
    height: min(680px, 65vw);
    min-height: 400px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: #111;
}

.assembly-video > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.assembly-video:hover > img {
    transform: scale(1.035);
}

.assembly-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.75),
            rgba(0, 0, 0, 0.10),
            rgba(0, 0, 0, 0.55)
        );
}

.assembly-video::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(241, 126, 2, 0);
    transition: border-color 0.3s ease;
    pointer-events: none;
}

.assembly-video:hover::after {
    border-color: rgba(241, 126, 2, 0.5);
}


/* PLAY */

.assembly-play {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    display: flex;
    align-items: center;
    gap: 20px;
}

.assembly-play span {
    width: 90px;
    height: 90px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--orange);
    color: #000;

    box-shadow:
        0 0 0 10px rgba(241, 126, 2, 0.12),
        0 0 50px rgba(241, 126, 2, 0.25);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.assembly-play span svg {
    width: 30px;
    height: 30px;
    margin-left: 4px;
    fill: currentColor;
}

.assembly-video:hover .assembly-play span {
    transform: scale(1.08);

    box-shadow:
        0 0 0 15px rgba(241, 126, 2, 0.10),
        0 0 70px rgba(241, 126, 2, 0.35);
}

.assembly-play strong {
    font-family: "Russo One", sans-serif;
    font-size: 12px;
    letter-spacing: 1px;
}


/* VIDEO MODAL */

.video-modal {
    position: fixed;
    z-index: 9999;
    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 40px;

    visibility: hidden;
    opacity: 0;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}

.video-modal.active {
    visibility: visible;
    opacity: 1;
}

.video-modal-backdrop {
    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(8px);
}

.video-modal-content {
    position: relative;
    z-index: 2;

    width: min(1200px, 100%);
    aspect-ratio: 16 / 9;

    background: #000;

    border: 1px solid rgba(241, 126, 2, 0.4);

    box-shadow:
        0 30px 100px rgba(0, 0, 0, 0.8);
}

.video-frame {
    width: 100%;
    height: 100%;
}

.video-frame iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-modal-close {
    position: absolute;
    z-index: 5;

    top: -55px;
    right: 0;

    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;

    background: #000;
    color: #fff;

    cursor: pointer;

    transition: 0.25s ease;
}

.video-modal-close:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: #000;
}

.video-modal-close svg {
    width: 20px;
    height: 20px;
}


/* =========================
   REVIEWS
========================= */

.reviews {
    background: #000;
}


.reviews-layout {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 100px;

    align-items: center;
}


/* INTRO */

.reviews-intro h2 {
    margin-top: 12px;

    font-family: "Russo One", sans-serif;
    font-size: clamp(40px, 4vw, 62px);
    line-height: 0.98;
}


.reviews-intro h2 strong {
    display: block;

    color: var(--orange);
    font-weight: inherit;
}


.reviews-intro > p {
    max-width: 420px;

    margin-top: 25px;

    font-size: 14px;
    line-height: 1.6;

    color: #777;
}


/* RATING */

.reviews-rating {
    display: flex;
    align-items: center;
    gap: 20px;

    margin-top: 45px;
}


.reviews-rating > strong {
    font-family: "Russo One", sans-serif;
    font-size: 55px;
    line-height: 1;

    color: var(--orange);
}


.rating-info {
    display: flex;
    flex-direction: column;
    gap: 7px;
}


.stars,
.review-stars {
    display: flex;
    gap: 4px;
}


.stars svg,
.review-stars svg {
    width: 15px;
    height: 15px;

    fill: var(--orange);
    color: var(--orange);
}


.rating-info span {
    font-size: 10px;
    color: #666;
}


/* SLIDER */

.reviews-slider {
    position: relative;
}


.review-track {
    position: relative;
    min-height: 390px;
}


.review-card {
    display: none;

    min-height: 390px;

    padding: 45px;

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;

    background:
        linear-gradient(
            135deg,
            #111 0%,
            #090909 100%
        );
}


.review-card.active {
    display: flex;
    flex-direction: column;
}


/* TOP */

.review-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.review-number {
    font-family: "Russo One", sans-serif;
    font-size: 10px;

    color: #555;
}


.review-stars {
    gap: 3px;
}


.review-stars svg {
    width: 14px;
    height: 14px;
}


/* QUOTE */

.review-card blockquote {
    max-width: 720px;

    margin: auto 0;

    font-family: "Russo One", sans-serif;
    font-size: clamp(24px, 2.4vw, 37px);
    line-height: 1.25;

    color: #fff;
}


/* AUTHOR */

.review-author {
    display: flex;
    align-items: center;
    gap: 14px;

    padding-top: 25px;

    border-top: 1px solid rgba(255, 255, 255, 0.10);
}


.review-avatar {
    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(241, 126, 2, 0.45);
    border-radius: 50%;

    color: var(--orange);
}


.review-avatar svg {
    width: 18px;
    height: 18px;
}


.review-author strong {
    display: block;

    font-family: "Russo One", sans-serif;
    font-size: 11px;
}


.review-author span {
    display: block;

    margin-top: 4px;

    font-size: 10px;
    color: #666;
}


/* CONTROLS */

.reviews-controls {
    display: flex;
    gap: 8px;

    margin-top: 15px;
}


.reviews-controls button {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.20);
    border-radius: 4px;

    background: transparent;
    color: #fff;

    cursor: pointer;

    transition: 0.25s ease;
}


.reviews-controls button:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: #000;
}


.reviews-controls svg {
    width: 18px;
    height: 18px;
}

/* =========================
   CONTACTS
========================= */

.contacts {
    background: #080808;
}


.contacts-card {
    position: relative;

    min-height: 500px;

    display: grid;
    grid-template-columns: 1.2fr 0.8fr;

    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;

    background:
        radial-gradient(
            circle at 15% 50%,
            rgba(241, 126, 2, 0.12),
            transparent 40%
        ),
        #0c0c0c;
}


.contacts-content {
    position: relative;
    z-index: 2;

    padding: 65px;
}


.contacts-content h2 {
    margin-top: 15px;

    font-family: "Russo One", sans-serif;
    font-size: clamp(50px, 5vw, 82px);
    line-height: 0.92;
}


.contacts-content h2 strong {
    color: var(--orange);
    font-weight: inherit;
}


.contacts-content > p {
    max-width: 560px;

    margin-top: 28px;

    font-size: 15px;
    line-height: 1.6;

    color: #888;
}


.contacts-buttons {
    display: flex;
    gap: 10px;

    margin-top: 35px;
}


.contacts-buttons .btn {
    min-height: 52px;
}


/* RIGHT */

.contacts-right {
    position: relative;
    z-index: 2;

    padding: 50px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    border-left: 1px solid rgba(255, 255, 255, 0.10);
}


.contact-item {
    padding: 25px 0;

    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}


.contact-item:first-child {
    padding-top: 0;
}


.contact-item:last-child {
    border-bottom: 0;
}


.contact-label {
    display: block;

    margin-bottom: 9px;

    font-family: "Russo One", sans-serif;
    font-size: 9px;
    letter-spacing: 1.5px;

    color: #555;
}


.contact-item > a {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    font-family: "Russo One", sans-serif;
    font-size: 17px;

    transition: color 0.25s ease;
}


.contact-item > a:hover {
    color: var(--orange);
}


.contact-item svg {
    width: 17px;
    height: 17px;
}


/* ORANGE DETAIL */

.contacts-card::after {
    content: "";

    position: absolute;

    right: -180px;
    bottom: -220px;

    width: 500px;
    height: 500px;

    border: 1px solid rgba(241, 126, 2, 0.18);
    border-radius: 50%;

    box-shadow:
        0 0 0 80px rgba(241, 126, 2, 0.025),
        0 0 0 160px rgba(241, 126, 2, 0.015);

    pointer-events: none;
}



/* =========================
   FOOTER
========================= */

.footer {
    background: #000;

    border-top: 1px solid rgba(255, 255, 255, 0.10);
}


.footer-main {
    min-height: 150px;

    display: grid;
    grid-template-columns: 0.7fr 1.6fr 0.7fr;

    align-items: center;

    gap: 40px;
}


/* LOGO */

.footer-logo {
    display: flex;
    flex-direction: column;

    line-height: 1;
}


.footer-logo span {
    font-family: "Russo One", sans-serif;
    font-size: 28px;
    letter-spacing: 1px;

    color: var(--orange);
}


.footer-logo small {
    margin-top: 5px;

    font-family: "Russo One", sans-serif;
    font-size: 7px;
    letter-spacing: 3px;

    color: #fff;
}


/* NAV */

.footer-nav {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 30px;
}


.footer-nav a {
    font-family: "Russo One", sans-serif;
    font-size: 12px;
    text-transform: uppercase;

    color: #777;

    transition: color 0.25s ease;
}


.footer-nav a:hover {
    color: var(--orange);
}


/* ACTIONS */

.footer-actions {
    display: flex;
    justify-content: flex-end;

    gap: 8px;
}


.footer-actions a {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 4px;

    color: #aaa;

    transition: 0.25s ease;
}


.footer-actions a:hover {
    color: #000;

    background: var(--orange);
    border-color: var(--orange);
}


.footer-actions svg {
    width: 17px;
    height: 17px;
}


/* BOTTOM */

.footer-bottom {
    min-height: 65px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    border-top: 1px solid rgba(255, 255, 255, 0.08);

    font-family: "Russo One", sans-serif;
    font-size: 12px;
    letter-spacing: 0.8px;
    text-transform: uppercase;

    color: #444;
}


.footer-bottom span:first-child {
    color: #666;
}


/* =========================================================
   CTS-COMMERCIAL
   CONTACTS PAGE
========================================================= */


/* =========================
   HERO
========================= */

.contact-hero {
    position: relative;

    min-height: calc(100vh - 86px);

    margin-top: 86px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 82% 45%,
            rgba(241, 126, 2, 0.08),
            transparent 32%
        ),
        #050505;
}


.contact-hero-glow {
    position: absolute;

    width: 600px;
    height: 600px;

    right: -220px;
    top: 50%;

    transform: translateY(-50%);

    border-radius: 50%;

    border: 1px solid rgba(241, 126, 2, 0.12);

    box-shadow:
        0 0 0 80px rgba(241, 126, 2, 0.025),
        0 0 0 160px rgba(241, 126, 2, 0.015);

    pointer-events: none;
}


.contact-hero-inner {
    position: relative;

    z-index: 2;

    min-height: calc(100vh - 86px);

    display: grid;

    grid-template-columns: 1.15fr 0.85fr;

    align-items: center;

    gap: 80px;

    padding-top: 80px;
    padding-bottom: 100px;
}


/* =========================
   LEFT
========================= */

.contact-hero-content {
    max-width: 850px;
}


.contact-label {
    display: inline-flex;

    align-items: center;

    margin-bottom: 28px;

    padding: 9px 14px;

    border: 1px solid rgba(241, 126, 2, 0.45);

    border-radius: 4px;

    font-family: "Russo One", sans-serif;

    font-size: 10px;

    letter-spacing: 1.5px;

    color: var(--orange);
}


.contact-hero-content h1 {
    max-width: 850px;

    font-family: "Russo One", sans-serif;

    font-size: clamp(58px, 6vw, 100px);

    line-height: 0.92;

    text-transform: uppercase;
}


.contact-hero-content h1 strong {
    display: block;

    color: var(--orange);

    font-weight: inherit;
}


.contact-hero-content > p {
    max-width: 650px;

    margin-top: 32px;

    font-size: 17px;

    line-height: 1.65;

    color: #999;
}


.contact-hero-buttons {
    display: flex;

    gap: 12px;

    margin-top: 40px;
}


.contact-hero-buttons .btn {
    min-height: 56px;
}


.contact-hero-number {
    display: flex;

    align-items: baseline;

    gap: 18px;

    margin-top: 65px;

    padding-top: 20px;

    border-top: 1px solid rgba(255, 255, 255, 0.10);
}


.contact-hero-number span {
    font-family: "Russo One", sans-serif;

    font-size: 9px;

    letter-spacing: 1.5px;

    color: #555;
}


.contact-hero-number strong {
    font-family: "Russo One", sans-serif;

    font-size: 20px;

    color: #fff;
}


/* =========================
   RIGHT PANEL
========================= */

.contact-hero-panel {
    position: relative;

    padding: 30px;

    border: 1px solid rgba(255, 255, 255, 0.12);

    border-radius: 8px;

    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.025),
            rgba(255, 255, 255, 0.005)
        );

    box-shadow:
        0 30px 100px rgba(0, 0, 0, 0.35);
}


.contact-panel-heading {
    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 12px;

    padding: 0 5px 18px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}


.contact-panel-heading span {
    font-family: "Russo One", sans-serif;

    font-size: 10px;

    letter-spacing: 1.5px;

    color: var(--orange);
}


.contact-panel-heading strong {
    font-family: "Russo One", sans-serif;

    font-size: 9px;

    color: #444;
}


.contact-card {
    position: relative;

    min-height: 125px;

    display: grid;

    grid-template-columns: 58px 1fr 20px;

    align-items: center;

    gap: 18px;

    padding: 22px 5px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.10);

    transition:
        background 0.3s ease,
        padding 0.3s ease;
}


.contact-card:last-child {
    border-bottom: 0;
}


.contact-card:hover {
    padding-left: 15px;

    background: rgba(241, 126, 2, 0.035);
}


.contact-card-icon {
    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(241, 126, 2, 0.45);

    border-radius: 5px;

    color: var(--orange);

    transition:
        background 0.3s ease,
        color 0.3s ease;
}


.contact-card:hover .contact-card-icon {
    background: var(--orange);

    color: #000;
}


.contact-card-icon svg {
    width: 24px;
    height: 24px;
}


.contact-card-content span {
    display: block;

    margin-bottom: 7px;

    font-family: "Russo One", sans-serif;

    font-size: 8px;

    letter-spacing: 1.5px;

    color: #555;
}


.contact-card-content strong {
    display: block;

    font-family: "Russo One", sans-serif;

    font-size: 16px;

    line-height: 1.2;

    color: #fff;
}


.contact-card-content small {
    display: block;

    margin-top: 7px;

    font-size: 11px;

    color: #666;
}


.contact-card-arrow {
    width: 17px;
    height: 17px;

    color: #555;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}


.contact-card:hover .contact-card-arrow {
    color: var(--orange);

    transform: translate(3px, -3px);
}


/* =========================
   HERO BOTTOM
========================= */

.contact-hero-bottom {
    position: absolute;

    z-index: 3;

    left: 0;
    right: 0;
    bottom: 0;

    height: 55px;

    border-top: 1px solid rgba(255, 255, 255, 0.08);

    background: rgba(0, 0, 0, 0.25);

    backdrop-filter: blur(8px);
}


.contact-hero-bottom-inner {
    height: 100%;

    display: flex;

    align-items: center;

    gap: 25px;
}


.contact-hero-bottom-inner span {
    font-family: "Russo One", sans-serif;

    font-size: 8px;

    letter-spacing: 1.5px;

    color: #555;

    white-space: nowrap;
}


.contact-hero-bottom-inner span:last-child {
    color: var(--orange);
}


.contact-hero-line {
    flex: 1;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            rgba(241, 126, 2, 0),
            rgba(241, 126, 2, 0.45),
            rgba(241, 126, 2, 0)
        );
}


/* =========================
   PRODUCTS
========================= */

.contact-products {
    padding: 110px 0;

    background: #080808;
}


.contact-products-head {
    margin-bottom: 45px;
}


.contact-products-head h2 {
    font-family: "Russo One", sans-serif;

    font-size: clamp(38px, 4vw, 58px);

    line-height: 1;
}


.contact-products-head h2 strong {
    color: var(--orange);

    font-weight: inherit;
}


.contact-products-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    border: 1px solid rgba(255, 255, 255, 0.12);

    border-radius: 8px;

    overflow: hidden;
}


.contact-product-link {
    position: relative;

    min-height: 250px;

    display: grid;

    grid-template-columns: 35px 1fr 22px;

    align-items: end;

    gap: 20px;

    padding: 30px;

    border-right: 1px solid rgba(255, 255, 255, 0.12);

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}


.contact-product-link:last-child {
    border-right: 0;
}


.contact-product-link:hover {
    background: #101010;
}


.contact-product-link > span {
    align-self: start;

    font-family: "Russo One", sans-serif;

    font-size: 10px;

    color: var(--orange);
}


.contact-product-link h3 {
    margin-bottom: 10px;

    font-family: "Russo One", sans-serif;

    font-size: 22px;

    line-height: 1;
}


.contact-product-link p {
    max-width: 260px;

    font-size: 13px;

    line-height: 1.5;

    color: #777;
}


.contact-product-link > svg {
    width: 19px;
    height: 19px;

    color: #555;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}


.contact-product-link:hover > svg {
    color: var(--orange);

    transform: translate(3px, -3px);
}

/* =========================================================
   CTS-COMMERCIAL
   PODMOSTI PAGE
========================================================= */


/* =========================
   HERO
========================= */

.podmosti-hero {
    position: relative;

    min-height: calc(100vh - 86px);

    margin-top: 86px;

    display: flex;

    align-items: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 80% 45%,
            rgba(241, 126, 2, 0.09),
            transparent 35%
        ),
        #050505;
}


.podmosti-hero-glow {
    position: absolute;

    width: 650px;
    height: 650px;

    right: -280px;
    top: 50%;

    transform: translateY(-50%);

    border: 1px solid rgba(241, 126, 2, 0.10);

    border-radius: 50%;

    box-shadow:
        0 0 0 90px rgba(241, 126, 2, 0.025),
        0 0 0 180px rgba(241, 126, 2, 0.012);

    pointer-events: none;
}


.podmosti-hero-inner {
    position: relative;

    min-height: calc(100vh - 86px);

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 80px;

    padding: 90px 0 120px;
}


.podmosti-hero-content {
    position: relative;

    z-index: 2;

    max-width: 900px;
}


.page-kicker {
    display: inline-block;

    margin-bottom: 28px;

    padding: 9px 13px;

    border: 1px solid rgba(241, 126, 2, 0.40);

    border-radius: 4px;

    font-family: "Russo One", sans-serif;

    font-size: 9px;

    letter-spacing: 1.5px;

    color: var(--orange);
}


.podmosti-hero-content h1 {
    font-family: "Russo One", sans-serif;

    font-size: clamp(65px, 7vw, 115px);

    line-height: 0.88;

    text-transform: uppercase;
}


.podmosti-hero-content h1 strong {
    display: block;

    color: var(--orange);

    font-weight: inherit;
}


.podmosti-hero-content > p {
    max-width: 650px;

    margin-top: 32px;

    font-size: 17px;

    line-height: 1.65;

    color: #888;
}


.podmosti-hero-meta {
    display: grid;

    grid-template-columns: repeat(3, auto);

    gap: 0;

    margin-top: 55px;

    border-top: 1px solid rgba(255, 255, 255, 0.10);

    border-bottom: 1px solid rgba(255, 255, 255, 0.10);

    width: fit-content;
}


.podmosti-hero-meta > div {
    min-width: 170px;

    padding: 22px 28px;

    border-right: 1px solid rgba(255, 255, 255, 0.10);
}


.podmosti-hero-meta > div:first-child {
    padding-left: 0;
}


.podmosti-hero-meta > div:last-child {
    border-right: 0;
}


.podmosti-hero-meta strong {
    display: block;

    font-family: "Russo One", sans-serif;

    font-size: 19px;

    color: #fff;
}


.podmosti-hero-meta span {
    display: block;

    margin-top: 7px;

    font-size: 9px;

    line-height: 1.4;

    text-transform: uppercase;

    letter-spacing: 0.7px;

    color: #555;
}


.podmosti-hero-mark {
    position: relative;

    z-index: 1;

    width: 360px;
    height: 360px;

    flex: 0 0 360px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    border: 1px solid rgba(241, 126, 2, 0.16);

    border-radius: 50%;
}


.podmosti-hero-mark::before {
    content: "";

    position: absolute;

    inset: 28px;

    border: 1px solid rgba(255, 255, 255, 0.06);

    border-radius: 50%;
}


.podmosti-hero-mark span {
    position: absolute;

    top: 35px;
    right: 55px;

    font-family: "Russo One", sans-serif;

    font-size: 10px;

    color: var(--orange);
}


.podmosti-hero-mark strong {
    font-family: "Russo One", sans-serif;

    font-size: 90px;

    line-height: 1;

    color: rgba(255, 255, 255, 0.035);
}


.podmosti-hero-mark small {
    margin-top: -2px;

    font-family: "Russo One", sans-serif;

    font-size: 8px;

    letter-spacing: 4px;

    color: #555;
}


/* =========================
   OFFER
========================= */

.podmosti-offer {
    padding: 100px 0;

    background: #080808;
}


.podmosti-offer-card {
    position: relative;

    display: grid;

    grid-template-columns: 80px 1fr;

    gap: 35px;

    padding: 55px;

    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, 0.12);

    border-radius: 8px;

    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(241, 126, 2, 0.10),
            transparent 35%
        ),
        #0c0c0c;
}


.podmosti-offer-icon {
    width: 65px;
    height: 65px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(241, 126, 2, 0.40);

    border-radius: 5px;

    color: var(--orange);
}


.podmosti-offer-icon svg {
    width: 27px;
    height: 27px;
}


.podmosti-offer-content h2 {
    max-width: 1100px;

    margin-top: 15px;

    font-family: "Russo One", sans-serif;

    font-size: clamp(28px, 3.5vw, 50px);

    line-height: 1.05;
}


.podmosti-offer-content h2 strong {
    color: var(--orange);

    font-weight: inherit;
}


.podmosti-offer-content p {
    max-width: 1050px;

    margin-top: 28px;

    font-size: 14px;

    line-height: 1.7;

    color: #777;
}


.podmosti-offer-content p strong {
    color: #fff;
}


.podmosti-offer-content .btn {
    margin-top: 32px;

    min-height: 52px;
}


/* =========================
   SECTION HEAD
========================= */

.page-section-head {
    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 30px;

    margin-bottom: 45px;
}


.section-count {
    font-family: "Russo One", sans-serif;

    font-size: 9px;

    letter-spacing: 1.5px;

    color: #444;
}


.podmosti-products,
.podmosti-gallery {
    padding: 110px 0;

    background: #050505;
}


.podmosti-gallery {
    padding-top: 20px;
}


.page-section-head h2 {
    max-width: 800px;

    margin-top: 12px;

    font-family: "Russo One", sans-serif;

    font-size: clamp(40px, 4vw, 62px);

    line-height: 0.95;
}


.page-section-head h2 strong {
    color: var(--orange);

    font-weight: inherit;
}


/* =========================
   PRODUCTS
========================= */

.podmosti-products-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 18px;
}


.podmosti-product-card {
    display: grid;

    grid-template-columns: 0.95fr 1.05fr;

    min-height: 570px;

    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, 0.12);

    border-radius: 8px;

    background: #0b0b0b;
}


.podmosti-product-image {
    position: relative;

    min-height: 570px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 30px;

    overflow: hidden;

    background: #fff;
}


.podmosti-product-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: contain;

    transition: transform 0.5s ease;
}


.podmosti-product-card:hover
.podmosti-product-image img {
    transform: scale(1.035);
}

.podmosti-product-card .product-number {
    position: absolute;

    z-index: 2;

    top: 20px;
    left: 20px;

    padding: 8px 10px;

    border: 1px solid #f17e02;

    border-radius: 4px;

    background: #f17e02;

    font-family: "Russo One", sans-serif;

    font-size: 9px;

    color: #000;
}


.podmosti-product-info {
    display: flex;

    flex-direction: column;

    padding: 38px 35px;
}


.product-title-row {
    display: flex;

    align-items: center;

    justify-content: space-between;

    padding-bottom: 15px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}


.product-title-row span {
    font-family: "Russo One", sans-serif;

    font-size: 8px;

    letter-spacing: 1.5px;

    color: #555;
}


.product-title-row svg {
    width: 19px;
    height: 19px;

    color: var(--orange);
}


.podmosti-product-info h3 {
    margin-top: 28px;

    font-family: "Russo One", sans-serif;

    font-size: clamp(28px, 3vw, 40px);

    line-height: 1;
}


.product-specs {
    margin-top: 30px;
}


.product-specs > div {
    display: grid;

    grid-template-columns: 42% 58%;

    align-items: center;

    min-height: 58px;

    padding: 14px 0;

    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.product-specs span {
    padding-right: 20px;

    font-size: 10px;
    line-height: 1.4;

    color: #555;
}


.product-specs strong {
    padding-left: 20px;

    font-family: "Russo One", sans-serif;

    font-size: 10px;
    line-height: 1.4;

    text-align: right;

    color: #bbb;

    white-space: normal;
}


.product-btn {
    width: 100%;

    margin-top: auto;

    min-height: 52px;
}


/* =========================================================
   GALLERY
========================================================= */

.gallery-head {
    margin-bottom: 35px;
}


/* =========================
   GRID
========================= */

.podmosti-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}


.gallery-item {
    position: relative;

    min-width: 0;
    aspect-ratio: 4 / 3;

    padding: 0;
    
    overflow: hidden;

    border: 0;
    border-radius: 8px;

    background: #111;

    cursor: pointer;

    font: inherit;

    text-align: left;
}


.gallery-item img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.55s ease,
        filter 0.35s ease;
}


.gallery-item:hover img {
    transform: scale(1.04);

    filter: brightness(0.62);
}


/* =========================
   OVERLAY
========================= */

.gallery-overlay {
    position: absolute;

    inset: 0;

    z-index: 2;

    display: flex;

    align-items: flex-end;

    gap: 15px;

    padding: 22px;

    opacity: 0;

    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.82),
            rgba(0, 0, 0, 0.05) 65%
        );

    transition: opacity 0.3s ease;

    pointer-events: none;
}


.gallery-item:hover .gallery-overlay,
.gallery-item:focus-visible .gallery-overlay {
    opacity: 1;
}


.gallery-meta {
    display: flex;

    align-items: center;

    gap: 13px;

    margin-right: auto;
}


.gallery-meta span {
    font-family: "Russo One", sans-serif;

    font-size: 10px;

    color: var(--orange);
}


.gallery-meta strong {
    font-family: "Russo One", sans-serif;

    font-size: 10px;

    letter-spacing: 0.7px;

    color: #fff;
}


.gallery-overlay > svg {
    width: 18px;
    height: 18px;

    flex-shrink: 0;

    color: var(--orange);
}


/* =========================
   LIGHTBOX
========================= */

.gallery-lightbox {
    position: fixed;

    inset: 0;

    z-index: 3000;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 30px;

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease;
}


.gallery-lightbox.active {
    opacity: 1;

    visibility: visible;

    pointer-events: auto;
}


.gallery-lightbox-backdrop {
    position: absolute;

    inset: 0;

    background: rgba(0, 0, 0, 0.94);

    backdrop-filter: blur(10px);
}


.gallery-lightbox-content {
    position: relative;

    z-index: 2;

    width: min(1200px, 100%);

    height: min(850px, 90vh);

    display: flex;

    align-items: center;
    justify-content: center;
}


.gallery-lightbox-image-wrap {
    width: 100%;
    height: 100%;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 55px 80px 80px;
}


.gallery-lightbox-image {
    max-width: 100%;
    max-height: 100%;

    width: auto;
    height: auto;

    display: block;

    object-fit: contain;

    border-radius: 6px;

    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.55);
}


/* =========================
   CLOSE
========================= */

.gallery-lightbox-close {
    position: absolute;

    top: 15px;
    right: 15px;

    z-index: 5;

    width: 46px;
    height: 46px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.25);

    border-radius: 5px;

    background: rgba(0, 0, 0, 0.55);

    color: #fff;

    cursor: pointer;

    transition:
        color 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease;
}


.gallery-lightbox-close:hover {
    color: var(--orange);

    border-color: var(--orange);

    background: rgba(241, 126, 2, 0.08);
}


.gallery-lightbox-close svg {
    width: 21px;
    height: 21px;
}


/* =========================
   ARROWS
========================= */

.gallery-lightbox-prev,
.gallery-lightbox-next {
    position: absolute;

    top: 50%;

    z-index: 5;

    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    transform: translateY(-50%);

    border: 1px solid rgba(255, 255, 255, 0.22);

    border-radius: 5px;

    background: rgba(0, 0, 0, 0.55);

    color: #fff;

    cursor: pointer;

    transition:
        color 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease;
}


.gallery-lightbox-prev {
    left: 10px;
}


.gallery-lightbox-next {
    right: 10px;
}


.gallery-lightbox-prev:hover,
.gallery-lightbox-next:hover {
    color: #000;

    border-color: var(--orange);

    background: var(--orange);
}


.gallery-lightbox-prev svg,
.gallery-lightbox-next svg {
    width: 21px;
    height: 21px;
}


/* =========================
   INFO
========================= */

.gallery-lightbox-info {
    position: absolute;

    left: 50%;
    bottom: 18px;

    z-index: 5;

    display: flex;

    align-items: center;

    gap: 15px;

    transform: translateX(-50%);
}


.gallery-lightbox-counter {
    font-family: "Russo One", sans-serif;

    font-size: 9px;

    letter-spacing: 1px;

    color: var(--orange);
}


.gallery-lightbox-title {
    font-family: "Russo One", sans-serif;

    font-size: 9px;

    letter-spacing: 0.8px;

    color: #777;

    white-space: nowrap;
}


/* =========================
   FOCUS
========================= */

.gallery-item:focus-visible,
.gallery-lightbox-close:focus-visible,
.gallery-lightbox-prev:focus-visible,
.gallery-lightbox-next:focus-visible {
    outline: 2px solid var(--orange);

    outline-offset: 3px;
}


.podmosti-cta-inner {
    display: flex;
    margin-bottom: 100px;
    align-items: center;

    justify-content: space-between;

    gap: 40px;

    padding: 55px;

    border: 1px solid rgba(255, 255, 255, 0.12);

    border-radius: 8px;

    background:
        radial-gradient(
            circle at 80% 50%,
            rgba(241, 126, 2, 0.08),
            transparent 35%
        ),
        #0c0c0c;
}


.podmosti-cta-inner h2 {
    margin-top: 10px;

    font-family: "Russo One", sans-serif;

    font-size: clamp(38px, 4vw, 60px);

    line-height: 0.95;
}


.podmosti-cta-inner h2 strong {
    color: var(--orange);

    font-weight: inherit;
}


.podmosti-cta-actions {
    display: flex;

    gap: 10px;

    flex-shrink: 0;
}


.podmosti-cta-actions .btn {
    min-height: 52px;
}


/* =========================================================
   MAGAZIN PAGE
========================================================= */


/* =========================================================
   SHOP HERO
========================================================= */

.shop-hero {
    position: relative;

    margin-top: 86px;

    min-height: calc(100vh - 86px);

    overflow: hidden;

    background: #050505;
}


.shop-hero-inner {
    position: relative;

    z-index: 2;

    min-height: calc(100vh - 86px);

    display: grid;

    grid-template-columns: 1.05fr 0.95fr;

    align-items: center;

    gap: 60px;

    padding-top: 70px;

    padding-bottom: 70px;
}


.shop-hero-glow {
    position: absolute;

    width: 650px;
    height: 650px;

    right: 3%;
    top: 50%;

    transform: translateY(-50%);

    border-radius: 50%;

    background: var(--orange);

    opacity: 0.055;

    filter: blur(130px);

    pointer-events: none;
}


/* CONTENT */

.shop-hero-content {
    max-width: 820px;
}


.shop-hero-label {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 25px;

    padding: 9px 13px;

    border: 1px solid rgba(241, 126, 2, 0.45);

    border-radius: 4px;

    font-family: "Russo One", sans-serif;

    font-size: 9px;

    letter-spacing: 1px;

    color: var(--orange);
}


.shop-hero-label span {
    width: 6px;
    height: 6px;

    flex-shrink: 0;

    border-radius: 50%;

    background: var(--orange);
}


.shop-hero h1 {
    max-width: 800px;

    font-family: "Russo One", sans-serif;

    font-size: clamp(58px, 6vw, 96px);

    line-height: 0.93;

    text-transform: uppercase;
}


.shop-hero h1 strong {
    display: block;

    color: var(--orange);

    font-weight: inherit;
}


.shop-hero-text {
    max-width: 650px;

    margin-top: 30px;

    font-size: 17px;

    line-height: 1.6;

    color: #aaa;
}


.shop-hero-buttons {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-top: 38px;
}


.shop-hero-buttons .btn {
    min-height: 56px;
}


/* HERO STATS */

.shop-hero-stats {
    display: flex;

    flex-wrap: wrap;

    gap: 35px;

    margin-top: 55px;
}


.shop-hero-stat {
    display: flex;

    align-items: center;

    gap: 12px;
}


.shop-hero-stat > svg {
    width: 25px;
    height: 25px;

    flex-shrink: 0;

    color: var(--orange);
}


.shop-hero-stat div {
    display: flex;

    flex-direction: column;

    gap: 4px;
}


.shop-hero-stat strong {
    font-family: "Russo One", sans-serif;

    font-size: 9px;

    letter-spacing: 0.7px;
}


.shop-hero-stat span {
    font-size: 10px;

    color: #777;
}


/* HERO VISUAL */

.shop-hero-visual {
    position: relative;

    min-height: 620px;

    display: flex;

    align-items: center;

    justify-content: center;
}


.shop-hero-card {
    position: relative;

    width: min(570px, 100%);

    min-height: 600px;

    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, 0.12);

    border-radius: 8px;

    background: #0c0c0c;

    box-shadow:
        0 35px 80px rgba(0, 0, 0, 0.45);
}


.shop-hero-card::before {
    content: "";

    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle at center,
            rgba(241, 126, 2, 0.12),
            transparent 55%
        );

    pointer-events: none;
}


.shop-hero-card-top {
    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 25px 28px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);

    font-family: "Russo One", sans-serif;

    font-size: 9px;

    letter-spacing: 1px;

    color: #666;
}


.shop-hero-card-top span:first-child {
    color: var(--orange);

    font-size: 15px;
}


.shop-hero-product {
    position: relative;

    height: 430px;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 25px;
}


.shop-hero-product img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: contain;

    filter:
        drop-shadow(
            0 25px 40px rgba(0, 0, 0, 0.7)
        );

    transition: transform 0.5s ease;
}


.shop-hero-card:hover
.shop-hero-product img {
    transform: scale(1.035);
}


.shop-hero-card-bottom {
    position: absolute;

    right: 0;
    bottom: 0;
    left: 0;

    z-index: 3;

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 20px;

    padding: 25px 28px;

    border-top: 1px solid rgba(255, 255, 255, 0.08);

    background: rgba(5, 5, 5, 0.85);

    backdrop-filter: blur(10px);
}


.shop-hero-card-bottom div:first-child {
    display: flex;

    flex-direction: column;

    gap: 7px;
}


.shop-hero-card-bottom span {
    font-size: 8px;

    letter-spacing: 1px;

    color: #666;
}


.shop-hero-card-bottom strong {
    font-family: "Russo One", sans-serif;

    font-size: 11px;

    color: #fff;
}


.shop-hero-card-arrow {
    width: 43px;
    height: 43px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border: 1px solid rgba(241, 126, 2, 0.55);

    border-radius: 4px;

    color: var(--orange);
}


.shop-hero-card-arrow svg {
    width: 18px;
    height: 18px;
}


.shop-hero-number {
    position: absolute;

    right: -15px;
    bottom: 55px;

    z-index: 5;

    display: flex;

    flex-direction: column;

    align-items: flex-end;

    gap: 2px;

    padding: 13px 16px;

    border: 1px solid rgba(241, 126, 2, 0.45);

    border-radius: 4px;

    background: rgba(0, 0, 0, 0.8);

    backdrop-filter: blur(8px);
}


.shop-hero-number span {
    font-family: "Russo One", sans-serif;

    font-size: 7px;

    letter-spacing: 1px;

    color: #777;
}


.shop-hero-number strong {
    font-family: "Russo One", sans-serif;

    font-size: 20px;

    color: var(--orange);
}


.shop-hero-line {
    position: absolute;

    left: 0;
    bottom: 0;

    z-index: 4;

    width: 100%;
    height: 3px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--orange),
            transparent
        );
}



/* =========================================================
   SHOP SECTION HEAD
========================================================= */

.shop-section-head {
    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 40px;

    margin-bottom: 50px;
}


.shop-section-head h2 {
    font-family: "Russo One", sans-serif;

    font-size: clamp(38px, 4vw, 60px);

    line-height: 0.98;

    text-transform: uppercase;
}


.shop-section-head h2 strong {
    display: block;

    color: var(--orange);

    font-weight: inherit;
}


.shop-section-head > p {
    max-width: 430px;

    margin-bottom: 4px;

    font-size: 13px;

    line-height: 1.6;

    color: #777;
}


/* =========================================================
   SHOP STEPS
========================================================= */

.shop-steps {
    background: #080808;
}


.shop-steps-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    border: 1px solid rgba(255, 255, 255, 0.12);

    border-radius: 8px;

    overflow: hidden;
}


.shop-step-card {
    min-height: 310px;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    padding: 32px 28px;

    border-right: 1px solid rgba(255, 255, 255, 0.12);

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}


.shop-step-card:last-child {
    border-right: 0;
}


.shop-step-card:hover {
    background: #0d0d0d;
}


.shop-step-top {
    display: flex;

    align-items: flex-start;

    justify-content: space-between;
}


.shop-step-top span {
    font-family: "Russo One", sans-serif;

    font-size: 11px;

    color: #555;
}


.shop-step-top svg {
    width: 27px;
    height: 27px;

    color: var(--orange);
}


.shop-step-card h3 {
    max-width: 220px;

    margin-bottom: 15px;

    font-family: "Russo One", sans-serif;

    font-size: 20px;

    line-height: 1.05;
}


.shop-step-card p {
    max-width: 240px;

    font-size: 12px;

    line-height: 1.6;

    color: #777;
}



/* =========================================================
   WHY CTS
========================================================= */

.shop-why {
    background: #000;

    border-top: 1px solid rgba(255, 255, 255, 0.07);

    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}


.shop-why-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    border: 1px solid rgba(255, 255, 255, 0.12);

    border-radius: 8px;

    overflow: hidden;
}


.shop-why-card {
    position: relative;

    min-height: 350px;

    padding: 35px 28px;

    border-right: 1px solid rgba(255, 255, 255, 0.12);

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}


.shop-why-card:last-child {
    border-right: 0;
}


.shop-why-card:hover {
    background: #0b0b0b;
}


.shop-why-number {
    position: absolute;

    top: 35px;
    right: 28px;

    font-family: "Russo One", sans-serif;

    font-size: 10px;

    color: #444;
}


.shop-why-icon {
    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 60px;

    border: 1px solid rgba(241, 126, 2, 0.5);

    border-radius: 5px;

    color: var(--orange);

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}


.shop-why-card:hover
.shop-why-icon {
    background: var(--orange);

    color: #000;

    transform: translateY(-4px);
}


.shop-why-icon svg {
    width: 27px;
    height: 27px;
}


.shop-why-card h3 {
    margin-bottom: 14px;

    font-family: "Russo One", sans-serif;

    font-size: 16px;

    line-height: 1.15;
}


.shop-why-card p {
    max-width: 240px;

    font-size: 12px;

    line-height: 1.6;

    color: #777;
}



/* =========================================================
   KASPI CTA
========================================================= */

.shop-kaspi-cta {
    background: #080808;
}


.shop-kaspi-card {
    position: relative;

    min-height: 570px;

    display: grid;

    grid-template-columns: 1.05fr 0.95fr;

    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, 0.12);

    border-radius: 8px;

    background: #0c0c0c;
}


.shop-kaspi-glow {
    position: absolute;

    width: 600px;
    height: 600px;

    right: -100px;
    top: 50%;

    transform: translateY(-50%);

    border-radius: 50%;

    background: var(--orange);

    opacity: 0.09;

    filter: blur(120px);

    pointer-events: none;
}


.shop-kaspi-content {
    position: relative;

    z-index: 2;

    align-self: center;

    padding: 70px 60px;
}


.shop-kaspi-content h2 {
    max-width: 650px;

    margin-top: 15px;

    font-family: "Russo One", sans-serif;

    font-size: clamp(42px, 5vw, 72px);

    line-height: 0.95;

    text-transform: uppercase;
}


.shop-kaspi-content h2 strong {
    display: block;

    color: var(--orange);

    font-weight: inherit;
}


.shop-kaspi-content p {
    max-width: 540px;

    margin-top: 28px;

    font-size: 15px;

    line-height: 1.6;

    color: #888;
}


.shop-kaspi-content .btn {
    margin-top: 35px;
}


/* VISUAL */

.shop-kaspi-visual {
    position: relative;

    min-height: 570px;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;
}


.shop-kaspi-circle {
    position: absolute;

    width: 390px;
    height: 390px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(241, 126, 2, 0.25);

    border-radius: 50%;
}


.shop-kaspi-circle::before {
    content: "";

    position: absolute;

    inset: 35px;

    border: 1px solid rgba(241, 126, 2, 0.15);

    border-radius: 50%;
}


.shop-kaspi-circle span {
    position: relative;

    z-index: 1;

    font-family: "Russo One", sans-serif;

    font-size: 35px;

    letter-spacing: 2px;

    color: rgba(241, 126, 2, 0.14);
}


.shop-kaspi-product {
    position: relative;

    z-index: 2;

    width: 75%;

    height: 75%;

    display: flex;

    align-items: center;
    justify-content: center;
}


.shop-kaspi-product img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: contain;

    filter:
        drop-shadow(
            0 30px 40px rgba(0, 0, 0, 0.75)
        );

    transition: transform 0.5s ease;
}


.shop-kaspi-card:hover
.shop-kaspi-product img {
    transform: scale(1.04);
}


.shop-kaspi-badge {
    position: absolute;

    z-index: 4;

    right: 35px;
    bottom: 35px;

    display: flex;

    align-items: center;

    gap: 8px;

    padding: 10px 13px;

    border: 1px solid rgba(241, 126, 2, 0.45);

    border-radius: 4px;

    background: rgba(0, 0, 0, 0.75);

    backdrop-filter: blur(8px);

    font-family: "Russo One", sans-serif;

    font-size: 8px;

    letter-spacing: 0.8px;

    color: var(--orange);
}


.shop-kaspi-badge svg {
    width: 15px;
    height: 15px;
}


/* =========================================================
   VYSHKI-TURY
   HERO + CATALOG
   ========================================================= */


/* =========================================================
   HERO
   ========================================================= */

.vyshki-hero {
    position: relative;

    min-height: calc(100vh - 86px);

    margin-top: 86px;

    overflow: hidden;

    background: #050505;
}


/* мягкое свечение справа */

.vyshki-hero-bg {
    position: absolute;

    inset: 0;

    z-index: 0;

    pointer-events: none;

    background:
        radial-gradient(
            ellipse 55% 70% at 78% 52%,
            rgba(241, 126, 2, 0.055),
            transparent 65%
        );
}


/* =========================================================
   HERO INNER
   ========================================================= */

.vyshki-hero-inner {
    position: relative;

    z-index: 2;

    min-height: calc(100vh - 86px);

    display: grid;

    grid-template-columns: 44% 56%;

    align-items: center;

    padding-top: 55px;
    padding-bottom: 55px;
}


/* =========================================================
   HERO CONTENT
   ========================================================= */

.vyshki-hero-content {
    position: relative;

    z-index: 5;

    max-width: 700px;

    padding-right: 20px;
}


.vyshki-hero-label {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    margin-bottom: 27px;

    padding: 9px 13px;

    border: 1px solid rgba(241, 126, 2, 0.45);

    border-radius: 4px;

    font-family: "Russo One", sans-serif;

    font-size: 9px;

    line-height: 1;

    letter-spacing: 0.8px;

    color: #f17e02;
}


.vyshki-hero-label span {
    width: 6px;
    height: 6px;

    flex-shrink: 0;

    border-radius: 50%;

    background: #f17e02;

    box-shadow:
        0 0 12px rgba(241, 126, 2, 0.65);
}


.vyshki-hero h1 {
    margin: 0;

    font-family: "Russo One", sans-serif;

    font-size: clamp(62px, 6.3vw, 100px);

    font-weight: 400;

    line-height: 0.9;

    letter-spacing: -2px;

    text-transform: uppercase;

    color: #fff;
}


.vyshki-hero h1 strong {
    display: block;

    font-weight: inherit;

    color: #f17e02;
}


.vyshki-hero-content > p {
    max-width: 600px;

    margin: 31px 0 0;

    font-size: 16px;

    line-height: 1.65;

    color: #8d8d8d;
}


/* =========================================================
   HERO BUTTONS
   ========================================================= */

.vyshki-hero-actions {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 36px;
}


.vyshki-hero-actions .btn {
    min-height: 54px;
}


/* =========================================================
   HERO INFO
   ========================================================= */

.vyshki-hero-info {
    display: flex;

    align-items: stretch;

    margin-top: 49px;
}


.vyshki-hero-info-item {
    display: flex;

    flex-direction: column;

    gap: 6px;

    min-width: 115px;

    padding-right: 27px;

    margin-right: 27px;

    border-right: 1px solid rgba(255, 255, 255, 0.11);
}


.vyshki-hero-info-item:last-child {
    padding-right: 0;

    margin-right: 0;

    border-right: 0;
}


.vyshki-hero-info-item strong {
    font-family: "Russo One", sans-serif;

    font-size: 18px;

    font-weight: 400;

    line-height: 1;

    color: #f17e02;
}


.vyshki-hero-info-item span {
    font-family: "Russo One", sans-serif;

    font-size: 7px;

    line-height: 1.4;

    letter-spacing: 0.7px;

    color: #5f5f5f;
}


/* =========================================================
   HERO VISUAL
   ========================================================= */

.vyshki-hero-visual {
    position: relative;
    z-index: 2;

    min-width: 0;
    min-height: 620px;

    display: flex;
    align-items: center;
    justify-content: center;
}






/* =========================================================
   HERO BOTTOM LINE
   ========================================================= */

.vyshki-hero-line {
    position: absolute;

    left: 0;
    bottom: 0;

    z-index: 10;

    width: 100%;

    height: 2px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(241, 126, 2, 0.75),
            transparent
        );
}


/* =========================================================
   CATALOG
   ========================================================= */

.vyshki-catalog {
    padding: 110px 0 140px;

    background: #050505;
}


.vyshki-catalog-header {
    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 40px;

    margin-bottom: 55px;
}


.vyshki-catalog-label {
    display: block;

    margin-bottom: 15px;

    font-family: "Russo One", sans-serif;

    font-size: 9px;

    line-height: 1;

    letter-spacing: 1px;

    color: #f17e02;
}


.vyshki-catalog-header h2 {
    margin: 0;

    font-family: "Russo One", sans-serif;

    font-size: clamp(42px, 5vw, 72px);

    font-weight: 400;

    line-height: 0.93;

    letter-spacing: -1px;

    text-transform: uppercase;

    color: #fff;
}


.vyshki-catalog-header h2 strong {
    display: block;

    font-weight: inherit;

    color: #f17e02;
}


.vyshki-catalog-total {
    display: flex;

    align-items: flex-end;

    gap: 12px;
}


.vyshki-catalog-total strong {
    font-family: "Russo One", sans-serif;

    font-size: 42px;

    font-weight: 400;

    line-height: 1;

    color: #f17e02;
}


.vyshki-catalog-total span {
    font-family: "Russo One", sans-serif;

    font-size: 7px;

    line-height: 1.45;

    letter-spacing: 0.8px;

    color: #606060;
}


/* =========================================================
   PRODUCTS GRID
   ========================================================= */

.vyshki-products-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 18px;

    align-items: stretch;
}


/* =========================================================
   PRODUCT CARD
   ========================================================= */

.vyshki-card {
    position: relative;

    min-width: 0;

    display: flex;

    flex-direction: column;

    overflow: hidden;

    border: 1px solid rgba(255,255,255,0.10);

    border-radius: 7px;

    background: #0a0a0a;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}


.vyshki-card:hover {
    transform: translateY(-5px);

    border-color: rgba(241,126,2,0.55);

    box-shadow:
        0 22px 55px rgba(0,0,0,0.45);
}


/* =========================================================
   PRODUCT IMAGE
   БЕЛЫЙ ФОН ТОЛЬКО У ТОВАРОВ
   ========================================================= */

.vyshki-card-image {
    position: relative;

    width: 100%;

    aspect-ratio: 1 / 0.82;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

    background: #fff;

    border-bottom: 1px solid rgba(0,0,0,0.08);
}


.vyshki-card-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: contain;

    padding: 24px;

    transition: transform 0.45s ease;
}


.vyshki-card:hover
.vyshki-card-image img {
    transform: scale(1.035);
}


/* =========================================================
   PRODUCT NUMBER
   ========================================================= */

.vyshki-card-number {
    position: absolute;

    top: 14px;
    left: 14px;

    z-index: 3;

    min-width: 34px;
    height: 27px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 0 8px;

    border-radius: 3px;

    background: #f17e02;

    font-family: "Russo One", sans-serif;

    font-size: 9px;

    color: #000;
}


/* =========================================================
   CARD BODY
   ========================================================= */

.vyshki-card-body {
    flex: 1;

    display: flex;

    flex-direction: column;

    padding: 27px 24px 23px;
}


.vyshki-card-title {
    margin: 0;

    font-family: "Russo One", sans-serif;

    font-size: 21px;

    font-weight: 400;

    line-height: 1.08;

    text-transform: uppercase;

    color: #fff;
}


.vyshki-card-description {
    margin: 8px 0 0;

    font-size: 10px;

    line-height: 1.5;

    color: #666;
}


/* =========================================================
   CARD SPECS
   ========================================================= */

.vyshki-card-specs {
    margin-top: 24px;

    border-top: 1px solid rgba(255,255,255,0.09);
}


.vyshki-card-spec {
    display: grid;

    grid-template-columns: 43% 57%;

    align-items: center;

    gap: 8px;

    min-height: 48px;

    padding: 9px 0;

    border-bottom: 1px solid rgba(255,255,255,0.07);
}


.vyshki-card-spec span {
    min-width: 0;

    padding-right: 5px;

    font-size: 9px;

    line-height: 1.35;

    color: #555;
}


.vyshki-card-spec strong {
    min-width: 0;

    font-family: "Russo One", sans-serif;

    font-size: 9px;

    font-weight: 400;

    line-height: 1.35;

    text-align: right;

    color: #aaa;

    overflow-wrap: anywhere;
}


/* =========================================================
   CARD FOOTER
   ========================================================= */

.vyshki-card-footer {
    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 15px;

    margin-top: auto;

    padding-top: 24px;
}


.vyshki-card-price {
    display: flex;

    flex-direction: column;

    gap: 4px;
}


.vyshki-card-price span {
    font-size: 8px;

    color: #555;

    text-transform: uppercase;
}


.vyshki-card-price strong {
    font-family: "Russo One", sans-serif;

    font-size: 20px;

    font-weight: 400;

    color: #f17e02;
}


/* =========================================================
   BUY BUTTON
   ========================================================= */

.vyshki-card-buy {
    min-height: 46px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    flex-shrink: 0;

    padding: 0 16px;

    border: 1px solid #f17e02;

    border-radius: 4px;

    background: #f17e02;

    font-family: "Russo One", sans-serif;

    font-size: 8px;

    font-weight: 400;

    line-height: 1;

    color: #000;

    text-decoration: none;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}


.vyshki-card-buy:hover {
    background: transparent;

    color: #f17e02;

    transform: translateY(-2px);
}


.vyshki-card-buy svg {
    width: 15px;
    height: 15px;
}



@media (max-width: 1200px) {



        .bestseller-card {
        grid-template-columns: 1fr 1fr;
    }

    


    .bestseller-side {
        display: none;
    }


    .bestseller-image {
        min-height: 580px;
    }

    .contact-hero-inner {
        grid-template-columns: 1fr 0.9fr;

        gap: 45px;
    }

    .contact-hero-content h1 {
        font-size: clamp(54px, 6vw, 82px);
    }

    .contact-hero-content > p {
        max-width: 560px;
    }

    .contact-hero-panel {
        padding: 22px;
    }

    .contact-products-link {
        padding: 25px;
    }


     .podmosti-hero-inner {
        gap: 45px;
    }

    .podmosti-hero-mark {
        width: 300px;
        height: 300px;

        flex-basis: 300px;
    }

    .podmosti-hero-mark strong {
        font-size: 75px;
    }


    .podmosti-product-card {
        grid-template-columns: 0.9fr 1.1fr;
    }


    .podmosti-product-info {
        padding: 30px 25px;
    }


 

    
    .podmosti-products-grid {
        grid-template-columns: 1fr;
    }

        .podmosti-gallery-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 12px;
    }


    .gallery-lightbox-image-wrap {
        padding-left: 70px;
        padding-right: 70px;
    }

    .shop-hero-inner {
        grid-template-columns: 1fr 0.9fr;

        gap: 35px;
    }


    .shop-hero h1 {
        font-size: clamp(52px, 6vw, 76px);
    }


    .shop-hero-visual {
        min-height: 560px;
    }


    .shop-hero-card {
        min-height: 540px;
    }

    .shop-hero-number
    {
        display: none;
    }


    .shop-hero-product {
        height: 380px;
    }


    .shop-steps-card {
        min-height: 290px;
    }


    .shop-step-card {
        padding: 28px 22px;
    }


    .shop-why-card {
        padding: 30px 22px;
    }


    .shop-kaspi-content {
        padding: 55px 45px;
    }


    .shop-kaspi-circle {
        width: 340px;
        height: 340px;
    }


    .vyshki-hero-inner {
        gap: 35px;
    }

    .vyshki-hero-content {
        max-width: 620px;
    }

    .vyshki-hero-content h1 {
        font-size: clamp(52px, 5.5vw, 72px);
    }

    .vyshki-hero-visual {
        min-height: 560px;
    }

    .shop-hero-card {
        width: min(500px, 100%);
        min-height: 540px;
    }

    .shop-hero-product {
        height: 360px;
    }


    /* CATALOG */

    .vyshki-catalog {
        padding-top: 90px;
        padding-bottom: 110px;
    }

    .vyshki-catalog-header {
        margin-bottom: 45px;
    }

    .vyshki-catalog-header h2 {
        font-size: clamp(40px, 5vw, 64px);
    }


    /* PRODUCTS */

    .vyshki-products-grid {
        gap: 16px;
    }

    .vyshki-card-image {
        aspect-ratio: 1 / 0.78;
    }

    .vyshki-card-image img {
        padding: 20px;
    }

    .vyshki-card-body {
        padding: 24px 21px 21px;
    }

    .vyshki-card-title {
        font-size: 19px;
    }

    .vyshki-card-spec {
        grid-template-columns: 46% 54%;
    }


}


/* =========================
   MOBILE
========================= */

@media (max-width: 1100px) {

    .nav {
        gap: 20px;
    }

    .nav-link {
        font-size: 10px;
    }

    .hero-content {
        width: 60%;
    }

    .hero-visual {
        width: 40%;
    }

    .hero-features {
        gap: 20px;
    }

}


@media (max-width: 992px) {

     .products-grid {
        grid-template-columns: 1fr;
    }

    .product-card,
    .product-card-large {
        grid-column: auto;
        min-height: 430px;
    }

     .reviews-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }


    .reviews-intro > p {
        max-width: 600px;
    }


    .reviews-rating {
        margin-top: 30px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 30px;

        padding: 40px 0;
    }


    .footer-logo {
        align-items: center;
    }


    .footer-nav {
        flex-wrap: wrap;
    }


    .footer-actions {
        justify-content: center;
    }


    .footer-bottom {
        padding: 20px 0;

        flex-wrap: wrap;
        justify-content: center;

        text-align: center;
    }

       

    .advantages-grid {
        border-radius: 5px;
        overflow: hidden;
    }

    .contact-hero-inner {
        grid-template-columns: 1fr;

        gap: 45px;

        padding-top: 70px;
        padding-bottom: 100px;
    }

    .contact-hero {
        min-height: auto;
    }

    .contact-hero-inner {
        min-height: auto;
    }

    .contact-hero-content {
        max-width: 800px;
    }

    .contact-hero-content h1 {
        font-size: clamp(55px, 8vw, 78px);
    }

    .contact-hero-panel {
        max-width: 760px;
    }

    .contact-products-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-product-link:nth-child(2) {
        border-right: 0;
    }

    .contact-product-link:last-child {
        grid-column: 1 / -1;

        border-top: 1px solid rgba(255, 255, 255, 0.12);

        border-right: 0;
    }


        .podmosti-hero {
        min-height: auto;
    }


    .podmosti-hero-inner {
        min-height: auto;

        padding-top: 80px;
        padding-bottom: 110px;
    }


    .podmosti-hero-mark {
        width: 250px;
        height: 250px;

        flex-basis: 250px;
    }


    .podmosti-hero-mark strong {
        font-size: 62px;
    }


    .podmosti-hero-meta > div {
        min-width: 145px;

        padding-left: 20px;
        padding-right: 20px;
    }


    .podmosti-products-grid {
        grid-template-columns: 1fr;
    }


    .podmosti-product-card {
        grid-template-columns: 1fr 1fr;

        min-height: 500px;
    }


    .podmosti-product-image {
        min-height: 500px;
    }


    

  

    .podmosti-cta-inner {
        padding: 45px;
    }

  .podmosti-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }


    .gallery-item {
        aspect-ratio: 4 / 3;
    }


    .gallery-lightbox-content {
        width: 100%;
        height: 88vh;
    }


    .gallery-lightbox-image-wrap {
        padding:
            55px
            70px
            75px;
    }

    .shop-hero-inner {
        grid-template-columns: 1fr;

        min-height: auto;

        padding-top: 80px;
        padding-bottom: 70px;
    }


    .shop-hero-content {
        max-width: 850px;
    }


    .shop-hero h1 {
        max-width: 850px;

        font-size: clamp(55px, 8vw, 78px);
    }


    .shop-hero-text {
        max-width: 650px;
    }


    .shop-hero-visual {
        min-height: 560px;

        width: 100%;
    }


    .shop-hero-card {
        width: min(650px, 100%);
        margin-top: 50px;
        min-height: 560px;
    }


    .shop-hero-product {
        height: 410px;
    }


    .shop-hero-number {
        display: none;
    }


    .shop-steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    .shop-step-card:nth-child(2) {
        border-right: 0;
    }


    .shop-step-card:nth-child(1),
    .shop-step-card:nth-child(2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }


    .shop-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    .shop-why-card:nth-child(2) {
        border-right: 0;
    }


    .shop-why-card:nth-child(1),
    .shop-why-card:nth-child(2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }


    .shop-kaspi-card {
        grid-template-columns: 1fr 0.9fr;
    }


    .shop-kaspi-content {
        padding: 50px 35px;
    }


    .shop-kaspi-content h2 {
        font-size: clamp(38px, 5vw, 58px);
    }


    .shop-kaspi-circle {
        width: 300px;
        height: 300px;
    }


    .shop-kaspi-circle span {
        font-size: 28px;
    }


     .vyshki-hero {
        min-height: auto;
    }

    .vyshki-hero-inner {
        grid-template-columns: 1fr;
        min-height: auto;

        gap: 45px;

        padding-top: 90px;
        padding-bottom: 90px;
    }

    .vyshki-hero-content {
        max-width: 800px;
    }

    .vyshki-hero-content h1 {
        font-size: clamp(52px, 8vw, 76px);
    }

    .vyshki-hero-content > p {
        max-width: 650px;
    }

    .vyshki-hero-visual {
        width: 100%;
        min-height: 540px;
    }

    .shop-hero-card {
        width: min(620px, 100%);
        min-height: 540px;
    }

    .shop-hero-product {
        height: 370px;
    }


    /* HERO INFO */

    .vyshki-hero-info {
        max-width: 620px;
    }


    /* CATALOG HEADER */

    .vyshki-catalog-header {
        align-items: flex-start;
        gap: 25px;
    }

    .vyshki-catalog-header h2 {
        font-size: clamp(38px, 7vw, 58px);
    }


    /* 3 PRODUCTS */

    .vyshki-products-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));

        gap: 14px;
    }


    /* CARD */

    .vyshki-card-image {
        aspect-ratio: 1 / 0.76;
    }

    .vyshki-card-image img {
        padding: 16px;
    }

    .vyshki-card-body {
        padding: 22px 18px 19px;
    }

    .vyshki-card-title {
        font-size: 17px;
        line-height: 1.12;
    }

    .vyshki-card-specs {
        margin-top: 22px;
    }

    .vyshki-card-spec {
        grid-template-columns: 44% 56%;

        padding: 10px 0;
    }

    .vyshki-card-spec span,
    .vyshki-card-spec strong {
        font-size: 8px;
    }

    .vyshki-card-footer {
        gap: 10px;
        padding-top: 20px;
    }

    .vyshki-card-price strong {
        font-size: 17px;
    }

    .vyshki-card-buy {
        min-height: 42px;
        padding: 0 12px;
        gap: 6px;
        font-size: 7px;
    }

    .vyshki-card-buy svg {
        width: 13px;
        height: 13px;
    }

 

 

}




@media (max-width: 768px) {

    .container {
        padding-left: 20px;
        padding-right: 20px;
    }


  .header {
    height: 72px;
    position: fixed;
    top: 0;
    left: 0;
}


    .nav,
    .header-whatsapp {
        display: none;
    }


    .burger {
        display: flex;
        align-items: center;
        justify-content: center;
    }


    .kaspi-btn {
        min-height: 40px;
        padding: 0 12px;
    }


    .kaspi-btn span {
        display: none;
    }


    .hero {
        min-height: auto;
    }


    .hero-inner {
        min-height: auto;
        flex-direction: column;
        align-items: stretch;
    }


    .hero-content {
        width: 100%;
        padding: 70px 0 20px;
    }


    .hero h1 {
        font-size: clamp(42px, 11vw, 65px);
    }


    .hero-text {
        font-size: 15px;
    }


    .hero-buttons {
        flex-direction: column;
    }


    .btn {
        width: 100%;
    }


    .hero-features {
        flex-wrap: wrap;
        gap: 20px;
        margin-top: 35px;
    }


    .hero-visual {
        width: 100%;
        height: 430px;
    }


    .hero-height {
        right: 50%;
        bottom: 10%;
    }

     .section {
        padding: 80px 0;
    }


    .section-head {
        align-items: flex-start;
        flex-direction: column;
        margin-bottom: 30px;
    }


    .section-link {
        font-size: 10px;
    }


    .products-grid {
        grid-template-columns: 1fr;
    }


    .product-card-large {
        grid-column: auto;
    }


    .product-card {
        min-height: 400px;
    }

    .advantages-head {
        display: block;
        margin-bottom: 35px;
    }


  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
}

.advantage-card {
    min-height: 280px;
    padding: 25px 20px;

    border-right: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

/* Правая колонка */
.advantage-card:nth-child(2n) {
    border-right: 0;
}

/* Правая колонка */
.advantage-card:nth-child(3n) {
    border-right: 1px solid rgba(255, 255, 255, 0.12);
}

/* Правая колонка */
.advantage-card:nth-child(4n) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}


.advantage-card:nth-child(6) {
border-right: none;
}




    .advantage-icon {
        margin-bottom: 45px;
    }

     .bestseller-head {
        align-items: flex-start;
    }


    .bestseller-card {
        grid-template-columns: 1fr;
    }


    .bestseller-image {
        order: -1;
        min-height: 400px;
    }


    .bestseller-info {
        padding: 35px 25px 40px;
    }


    .bestseller-actions {
        flex-direction: column;
    }


    .bestseller-actions .btn {
        width: 100%;
    }

      .assembly-head {
    display: block;
}

.assembly-head p {
    margin-top: 20px;
}

.assembly-video {
    height: 60vw;
    min-height: 280px;
}

.assembly-play {
    flex-direction: column;
    gap: 15px;
}

.assembly-play span {
    width: 70px;
    height: 70px;
}

.assembly-play span svg {
    width: 24px;
    height: 24px;
}

.assembly-play strong {
    font-size: 10px;
}

.video-modal {
    padding: 20px;
}

.video-modal-content {
    width: 100%;
}

.video-modal-close {
    top: -50px;
}


    .video-modal {
        padding: 20px;
    }


    .video-modal-content {
        width: 100%;
    }


    .video-modal-close {
        top: -50px;
    }

     .contacts-card {
        grid-template-columns: 1fr;
    }


    .contacts-content {
        padding: 45px 30px;
    }


    .contacts-right {
        padding: 10px 30px 35px;

        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.10);
    }


    .contacts-buttons {
        flex-direction: column;
    }


    .contacts-buttons .btn {
        width: 100%;
    }


      .review-card {
        min-height: 350px;
        padding: 30px;
    }


    .review-card blockquote {
        font-size: 25px;
    }


    /* =========================
   MOBILE MENU
========================= */

.nav {
    position: fixed;

    top: 72px;
    left: 0;
    right: 0;

    height: calc(100vh - 72px);

    padding: 45px 20px;

    display: none;

    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;

    gap: 0;

    background: rgba(0, 0, 0, 0.98);

    border-top: 1px solid rgba(255, 255, 255, 0.08);

    overflow-y: auto;
}


body.menu-open .nav {
    display: flex;
}


.nav-link {
    width: 100%;
    height: auto;

    padding: 20px 0;

    border-bottom: 1px solid rgba(255, 255, 255, 0.10);

    font-size: 18px;
}


.nav-link::after {
    display: none;
}


.nav-link.active {
    color: var(--orange);
}


body.menu-open {
    overflow: hidden;
}


 .contact-hero {
        margin-top: 72px;

        min-height: calc(100vh - 72px);
    }

    .contact-hero-inner {
        min-height: calc(100vh - 72px);

        display: flex;

        flex-direction: column;

        align-items: stretch;

        justify-content: center;

        gap: 40px;

        padding-top: 55px;
        padding-bottom: 85px;
    }


    .contact-hero-glow {
        width: 450px;
        height: 450px;

        right: -250px;
    }


    .contact-hero-content h1 {
        font-size: clamp(48px, 10vw, 70px);
    }


    .contact-hero-content > p {
        margin-top: 22px;

        font-size: 15px;
    }


    .contact-hero-buttons {
        margin-top: 30px;
    }


    .contact-hero-number {
        margin-top: 40px;
    }


    .contact-hero-panel {
        max-width: none;

        padding: 18px;
    }


    .contact-card {
        min-height: 105px;

        grid-template-columns: 52px 1fr 18px;

        gap: 15px;

        padding: 18px 5px;
    }


    .contact-card-icon {
        width: 52px;
        height: 52px;
    }


    .contact-card-content strong {
        font-size: 14px;
    }


    .contact-products {
        padding: 80px 0;
    }


    .contact-products-head {
        margin-bottom: 30px;
    }


    .contact-products-grid {
        grid-template-columns: 1fr 1fr;
    }


    .contact-product-link {
        min-height: 220px;

        padding: 22px;

        grid-template-columns: 28px 1fr 18px;

        gap: 12px;
    }


    .contact-product-link h3 {
        font-size: 18px;
    }


    .contact-product-link p {
        font-size: 12px;
    }


    .podmosti-hero {
        margin-top: 72px;
    }


    .podmosti-hero-inner {
        display: block;

        padding-top: 65px;
        padding-bottom: 80px;
    }


    .podmosti-hero-content {
        max-width: none;
    }


    .podmosti-hero-content h1 {
        font-size: clamp(50px, 10vw, 76px);
    }


    .podmosti-hero-content > p {
        font-size: 15px;
    }


    .podmosti-hero-meta {
        width: 100%;

        grid-template-columns: repeat(3, 1fr);
    }


    .podmosti-hero-meta > div {
        min-width: 0;

        padding: 20px 15px;
    }


    .podmosti-hero-mark {
        display: none;
    }


    .podmosti-offer {
        padding: 75px 0;
    }


    .podmosti-offer-card {
        grid-template-columns: 60px 1fr;

        gap: 22px;

        padding: 35px;
    }


    .podmosti-offer-icon {
        width: 55px;
        height: 55px;
    }


    .podmosti-offer-content h2 {
        font-size: clamp(26px, 5vw, 40px);
    }


    .podmosti-products,
    .podmosti-gallery {
        padding: 80px 0;
    }


    .page-section-head {
        align-items: flex-start;

        flex-direction: column;

        gap: 15px;

        margin-bottom: 30px;
    }


    .podmosti-product-card {
        grid-template-columns: 1fr;

        min-height: auto;
    }


    .podmosti-product-image {
        height: 430px;

        min-height: 430px;
    }


    .podmosti-product-info {
        min-height: 500px;

        padding: 30px 25px;
    }


    .podmosti-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }


    .podmosti-cta {
        padding: 65px 0 80px;
    }


    .podmosti-cta-inner {
        align-items: flex-start;

        flex-direction: column;
        margin-bottom: 0px;
        padding: 35px;
    }


    .podmosti-cta-actions {
        width: 100%;
    }


    .podmosti-cta-actions .btn {
        flex: 1;
    }

    .podmosti-gallery-grid {
        gap: 10px;
    }


    .gallery-overlay {
        opacity: 1;

        padding: 16px;

        background:
            linear-gradient(
                to top,
                rgba(0, 0, 0, 0.72),
                transparent 65%
            );
    }


    .gallery-meta {
        gap: 10px;
    }


    .gallery-meta strong {
        font-size: 9px;
    }


    .gallery-lightbox {
        padding: 15px;
    }


    .gallery-lightbox-content {
        height: 90vh;
    }


    .gallery-lightbox-image-wrap {
        padding:
            60px
            55px
            65px;
    }


    .gallery-lightbox-prev,
    .gallery-lightbox-next {
        width: 44px;
        height: 44px;
    }


    .gallery-lightbox-prev {
        left: 5px;
    }


    .gallery-lightbox-next {
        right: 5px;
    }


    .shop-hero {
        margin-top: 76px;
    }


    .shop-hero-inner {
        padding-top: 65px;
        padding-bottom: 60px;
    }


    .shop-hero h1 {
        font-size: clamp(48px, 9vw, 68px);
    }


    .shop-hero-text {
        margin-top: 23px;

        font-size: 15px;
    }


    .shop-hero-buttons {
        flex-wrap: wrap;

        margin-top: 30px;
    }


    .shop-hero-buttons .btn {
        min-height: 52px;
    }


    .shop-hero-stats {
        gap: 25px;

        margin-top: 40px;
    }


    .shop-hero-visual {
        min-height: 500px;
    }


    .shop-hero-card {
        min-height: 500px;
    }


    .shop-hero-product {
        height: 350px;
    }


   .shop-hero-number {
        display: none;
    }


    .shop-section-head {
        align-items: flex-start;

        flex-direction: column;

        gap: 20px;

        margin-bottom: 35px;
    }


    .shop-section-head > p {
        max-width: 550px;
    }


    .shop-section-head h2 {
        font-size: clamp(36px, 7vw, 50px);
    }


    .shop-step-card {
        min-height: 270px;

        padding: 25px 22px;
    }


    .shop-step-card h3 {
        font-size: 18px;
    }


    .shop-why-card {
        min-height: 300px;

        padding: 28px 22px;
    }


    .shop-why-icon {
        margin-bottom: 45px;
    }


    .shop-kaspi-card {
        grid-template-columns: 1fr;

        min-height: auto;
    }


    .shop-kaspi-content {
        padding: 50px 30px 25px;
    }


    .shop-kaspi-visual {
        min-height: 430px;
    }


    .shop-kaspi-circle {
        width: 300px;
        height: 300px;
    }


    .shop-kaspi-product {
        width: 70%;
        height: 80%;
    }


    .shop-kaspi-badge {
        right: 25px;
        bottom: 25px;
    }

    .vyshki-hero-inner {
        padding-top: 75px;
        padding-bottom: 75px;

        gap: 35px;
    }

    .vyshki-hero-content {
        max-width: none;
    }

    .vyshki-hero-content h1 {
        font-size: clamp(42px, 10vw, 64px);
        line-height: 0.96;
    }

    .vyshki-hero-content > p {
        margin-top: 24px;
        font-size: 14px;
        line-height: 1.55;
    }


    /* HERO BUTTONS */

    .vyshki-hero-actions {
        flex-direction: column;
        align-items: stretch;

        margin-top: 30px;
    }

    .vyshki-hero-actions .btn {
        width: 100%;
    }


    /* HERO INFO */

    .vyshki-hero-info {
        width: 100%;
        max-width: none;

        grid-template-columns: repeat(3, 1fr);

        gap: 0;

        margin-top: 35px;
    }

    .vyshki-hero-info-item {
        min-width: 0;
        padding: 0 15px;
    }


    /* HERO CARD */

    .vyshki-hero-visual {
        min-height: 480px;
    }

    .shop-hero-card {
        width: min(560px, 100%);
        min-height: 480px;
    }

    .shop-hero-product {
        height: 320px;
    }


    /* CATALOG */

    .vyshki-catalog {
        padding-top: 75px;
        padding-bottom: 90px;
    }

    .vyshki-catalog-header {
        flex-direction: column;
        align-items: flex-start;

        gap: 25px;

        margin-bottom: 35px;
    }

    .vyshki-catalog-header h2 {
        font-size: clamp(36px, 9vw, 54px);
    }

    .vyshki-catalog-total {
        align-items: center;
    }

    .vyshki-catalog-total strong {
        font-size: 36px;
    }


    /* PRODUCTS — 2 COLUMNS */

    .vyshki-products-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 14px;
    }


    /* CARD IMAGE */

    .vyshki-card-image {
        aspect-ratio: 1 / 0.78;
    }

    .vyshki-card-image img {
        padding: 18px;
    }


    /* CARD BODY */

    .vyshki-card-body {
        padding: 24px 20px 20px;
    }

    .vyshki-card-title {
        font-size: 19px;
        line-height: 1.12;
    }

    .vyshki-card-specs {
        margin-top: 24px;
    }

    .vyshki-card-spec {
        grid-template-columns: 45% 55%;

        min-height: 0;

        padding: 11px 0;
    }

    .vyshki-card-spec span,
    .vyshki-card-spec strong {
        font-size: 9px;
        line-height: 1.4;
    }

    .vyshki-card-footer {
        margin-top: auto;

        padding-top: 22px;

        flex-wrap: wrap;
    }

    .vyshki-card-buy {
        min-height: 44px;
    }

}

@media (max-width: 576px) {
/* Последняя колонка */
.advantage-card:nth-child(6n) {
    border-right: 0;
}

.contact-hero-inner {
        padding-top: 45px;
        padding-bottom: 80px;

        gap: 30px;

}

  .contact-hero-content h1 {
        font-size: 44px;

        line-height: 0.94;
    }


    .contact-hero-content > p {
        font-size: 14px;

        line-height: 1.55;
    }


    .contact-hero-buttons {
        flex-direction: column;
    }


    .contact-hero-buttons .btn {
        width: 100%;
    }


    .contact-hero-number {
        display: block;

        margin-top: 32px;
    }


    .contact-hero-number strong {
        display: block;

        margin-top: 8px;

        font-size: 18px;
    }


    .contact-hero-panel {
        padding: 15px;
    }


    .contact-panel-heading {
        padding-bottom: 15px;
    }


    .contact-card {
        min-height: 100px;

        grid-template-columns: 48px 1fr 16px;

        gap: 12px;
    }


    .contact-card-icon {
        width: 48px;
        height: 48px;
    }


    .contact-card-content strong {
        font-size: 13px;
    }


    .contact-card-content small {
        font-size: 10px;
    }


    .contact-card-arrow {
        width: 15px;
        height: 15px;
    }


    .contact-hero-bottom {
        height: 48px;
    }


    .contact-hero-bottom-inner {
        gap: 12px;
    }


    .contact-hero-bottom-inner span {
        font-size: 7px;
    }


    .contact-products {
        padding: 65px 0;
    }


    .contact-products-grid {
        grid-template-columns: 1fr;
    }


    .contact-product-link {
        min-height: 180px;

        border-right: 0;

        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }


    .contact-product-link:nth-child(2) {
        border-right: 0;
    }


    .contact-product-link:last-child {
        grid-column: auto;

        border-top: 0;

        border-bottom: 0;
    }

     .podmosti-hero-inner {
        padding-top: 50px;
        padding-bottom: 65px;
    }


    .page-kicker {
        margin-bottom: 20px;

        font-size: 8px;
    }


    .podmosti-hero-content h1 {
        font-size: 44px;
    }


    .podmosti-hero-content > p {
        margin-top: 20px;

        font-size: 14px;
    }


    .podmosti-hero-meta {
        margin-top: 35px;

        grid-template-columns: 1fr;
    }


    .podmosti-hero-meta > div {
        display: flex;

        align-items: center;

        justify-content: space-between;

        gap: 15px;

        padding: 15px 0;

        border-right: 0;

        border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    }


    .podmosti-hero-meta > div:first-child {
        padding-left: 0;
    }


    .podmosti-hero-meta > div:last-child {
        border-bottom: 0;
    }


    .podmosti-hero-meta strong {
        font-size: 16px;
    }


    .podmosti-hero-meta span {
        margin-top: 0;

        text-align: right;
    }


    .podmosti-offer {
        padding: 60px 0;
    }


    .podmosti-offer-card {
        grid-template-columns: 1fr;

        gap: 20px;

        padding: 28px 22px;
    }


    .podmosti-offer-icon {
        width: 50px;
        height: 50px;
    }


    .podmosti-offer-content h2 {
        font-size: 26px;

        line-height: 1.05;
    }


    .podmosti-offer-content p {
        font-size: 13px;
    }


    .podmosti-offer-content .btn {
        width: 100%;
    }


    .podmosti-products,
    .podmosti-gallery {
        padding: 65px 0;
    }


    .page-section-head h2 {
        font-size: 36px;
    }


    .podmosti-product-image {
        height: 350px;

        min-height: 350px;
    }


    .podmosti-product-info {
        min-height: auto;

        padding: 25px 20px;
    }


    .podmosti-product-info h3 {
        font-size: 29px;
    }


.product-specs {
    margin-top: 25px;
}


.product-specs > div {
    grid-template-columns: 44% 56%;

    min-height: 52px;

    padding: 12px 0;
}



.product-specs span {
    padding-right: 12px;

    font-size: 9px;
}

.product-specs strong {
    padding-left: 12px;

    font-size: 9px;
}


    .product-btn {
        margin-top: 25px;
    }


    .podmosti-gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
        gap: 10px;
    }

     .gallery-item-large {
        grid-row: auto;
        grid-column: auto;
    }

    .gallery-overlay {
        opacity: 1;

        padding: 16px;

        background:
            linear-gradient(
                to top,
                rgba(0, 0, 0, 0.7),
                transparent 60%
            );
    }


    .gallery-overlay strong {
        font-size: 8px;
    }


    .podmosti-cta-inner {
        padding: 28px 22px;
    }


    .podmosti-cta-inner h2 {
        font-size: 38px;
    }


    .podmosti-cta-actions {
        flex-direction: column;

        width: 100%;
    }


    .podmosti-cta-actions .btn {
        width: 100%;
    }

       .podmosti-gallery-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }


    .gallery-item {
        aspect-ratio: 4 / 3;
    }


    .gallery-overlay {
        padding: 15px;
    }


    .gallery-lightbox {
        padding: 10px;
    }


    .gallery-lightbox-content {
        height: 92vh;
    }


    .gallery-lightbox-image-wrap {
        padding:
            60px
            42px
            70px;
    }


    .gallery-lightbox-close {
        top: 8px;
        right: 8px;

        width: 42px;
        height: 42px;
    }


    .gallery-lightbox-prev,
    .gallery-lightbox-next {
        width: 40px;
        height: 40px;
    }


    .gallery-lightbox-prev {
        left: 2px;
    }


    .gallery-lightbox-next {
        right: 2px;
    }


    .gallery-lightbox-info {
        bottom: 15px;

        gap: 10px;
    }


    .gallery-lightbox-title {
        font-size: 8px;
    }

    .shop-hero {
        margin-top: 70px;
    }


    .shop-hero-inner {
        padding-top: 55px;
        padding-bottom: 45px;
    }


    .shop-hero-label {
        max-width: 100%;

        font-size: 8px;

        line-height: 1.4;
    }


    .shop-hero h1 {
        font-size: clamp(42px, 12vw, 58px);
    }


    .shop-hero-text {
        font-size: 14px;

        line-height: 1.55;
    }


    .shop-hero-buttons {
        flex-direction: column;

        align-items: stretch;
    }


    .shop-hero-buttons .btn {
        width: 100%;
    }


    .shop-hero-stats {
        display: grid;

        grid-template-columns: 1fr;

        gap: 18px;

        margin-top: 35px;
    }


    .shop-hero-visual {
        min-height: 420px;
    }


    .shop-hero-card {
        min-height: 420px;
    }


    .shop-hero-card-top {
        padding: 18px 20px;
    }


    .shop-hero-product {
        height: 290px;

        padding: 15px;
    }


    .shop-hero-card-bottom {
        padding: 18px 20px;
    }


    .shop-hero-card-bottom strong {
        font-size: 9px;
    }


    .shop-hero-card-arrow {
        width: 38px;
        height: 38px;
    }


   .shop-hero-number {
        display: none;
    }

    .shop-steps-grid {
        grid-template-columns: 1fr;
    }


    .shop-step-card {
        min-height: 230px;

        border-right: 0;

        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }


    .shop-step-card:last-child {
        border-bottom: 0;
    }


    .shop-why-grid {
        grid-template-columns: 1fr;
    }


    .shop-why-card {
        min-height: 270px;

        border-right: 0;

        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }


    .shop-why-card:last-child {
        border-bottom: 0;
    }


    .shop-why-icon {
        margin-bottom: 40px;
    }


    .shop-kaspi-content {
        padding: 40px 22px 20px;
    }


    .shop-kaspi-content h2 {
        font-size: clamp(35px, 10vw, 48px);
    }


    .shop-kaspi-content p {
        font-size: 13px;

        margin-top: 22px;
    }


    .shop-kaspi-content .btn {
        width: 100%;

        margin-top: 28px;
    }


    .shop-kaspi-visual {
        min-height: 340px;
    }


    .shop-kaspi-circle {
        width: 250px;
        height: 250px;
    }


    .shop-kaspi-circle::before {
        inset: 25px;
    }


    .shop-kaspi-circle span {
        font-size: 22px;
    }


    .shop-kaspi-product {
        width: 75%;
        height: 85%;
    }


    .shop-kaspi-badge {
        right: 15px;
        bottom: 15px;

        padding: 8px 10px;

        font-size: 7px;
    }

     .vyshki-hero-inner {
        padding-top: 55px;
        padding-bottom: 60px;

        gap: 30px;
    }

    .vyshki-hero-label {
        margin-bottom: 20px;
        padding: 7px 10px;

        font-size: 8px;
    }

    .vyshki-hero-content h1 {
        font-size: 44px;
        line-height: 0.94;
    }

    .vyshki-hero-content > p {
        margin-top: 20px;

        font-size: 13px;
        line-height: 1.55;
    }


    /* HERO INFO */

    .vyshki-hero-info {
        grid-template-columns: 1fr;

        margin-top: 30px;
    }

    .vyshki-hero-info-item {
        display: flex;
        align-items: center;
        justify-content: space-between;

        gap: 15px;

        padding: 13px 0;

        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,0.10);
    }

    .vyshki-hero-info-item:last-child {
        border-bottom: 0;
    }


    /* HERO CARD */

    .vyshki-hero-visual {
        min-height: 400px;
    }

    .shop-hero-card {
        width: 100%;
        min-height: 400px;
    }

    .shop-hero-product {
        height: 270px;
    }

    .shop-hero-card-bottom {
        padding: 16px 18px;
    }

    .shop-hero-card-bottom span {
        font-size: 7px;
    }

    .shop-hero-card-bottom strong {
        font-size: 9px;
    }

    .shop-hero-card-arrow {
        width: 38px;
        height: 38px;
    }


    /* CATALOG */

    .vyshki-catalog {
        padding: 65px 0 75px;
    }

    .vyshki-catalog-label {
        margin-bottom: 12px;
        font-size: 8px;
    }

    .vyshki-catalog-header h2 {
        font-size: 34px;
        line-height: 0.95;
    }

    .vyshki-catalog-total strong {
        font-size: 32px;
    }


    /* PRODUCTS — 1 COLUMN */

    .vyshki-products-grid {
        grid-template-columns: 1fr;

        gap: 16px;
    }


    /* CARD IMAGE */

    .vyshki-card-image {
        aspect-ratio: 1 / 0.72;
    }

    .vyshki-card-image img {
        padding: 20px;
    }


    /* CARD */

    .vyshki-card-body {
        padding: 23px 20px 20px;
    }

    .vyshki-card-title {
        font-size: 21px;
    }

    .vyshki-card-specs {
        margin-top: 25px;
    }

    .vyshki-card-spec {
        grid-template-columns: 43% 57%;

        padding: 12px 0;
    }

    .vyshki-card-spec span,
    .vyshki-card-spec strong {
        font-size: 9px;
    }

    .vyshki-card-footer {
        padding-top: 24px;
    }


}



@media (max-width: 430px) {

       

   .hero {
    margin-top: 72px;
    min-height: auto;
}
    .logo-main {
        font-size: 25px;
    }


    .logo-sub {
        font-size: 7px;
        letter-spacing: 2px;
    }


    .hero-content {
        padding-top: 50px;
    }


    .hero h1 {
        font-size: 40px;
    }


    .hero-text {
        font-size: 14px;
    }


    .hero-features {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }


    .hero-feature span {
        font-size: 9px;
    }


    .hero-visual {
        height: 350px;
    }

     .section {
        padding: 65px 0;
    }


    .section-head h2 {
        font-size: 34px;
    }


    .product-card {
        min-height: 370px;
    }


    .product-card-content {
        padding: 22px;
        gap: 12px;
    }


    .product-card h3 {
        font-size: 23px;
    }


    .product-card p {
        font-size: 13px;
    }

     .advantages-head h2 {
        font-size: 34px;
    }


   .advantages-grid {
    grid-template-columns: 1fr;
}

.advantage-card {
    min-height: auto;

    border-left: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}


.advantage-card:nth-child(3) {
border-right: none;
}


.advantage-card:nth-child(5) {
border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.advantage-card:last-child {
    border-bottom: 0;
}




    .advantage-icon {
        margin-bottom: 30px;
    }

     .bestseller-image {
        min-height: 330px;
    }


    .bestseller-info h3 {
        font-size: 32px;
    }


    .product-specs {
        grid-template-columns: 1fr;
    }


    .product-spec:nth-child(odd) {
        margin-right: 0;
    }


    .bestseller-info {
        padding: 30px 20px;
    }

    /* =========================
   ASSEMBLY
========================= */

.assembly-head h2 {
    font-size: 34px;
}

.assembly-video {
    height: 62vw;
    min-height: 220px;
}

.assembly-duration {
    right: 12px;
    bottom: 12px;
}


/* =========================
   VIDEO MODAL
========================= */

.video-modal {
    position: fixed;
    z-index: 9999;

    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 40px;

    visibility: hidden;
    opacity: 0;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}


.video-modal.active {
    visibility: visible;
    opacity: 1;
}


.video-modal-backdrop {
    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, 0.92);

    backdrop-filter: blur(8px);
}


.video-modal-content {
    position: relative;
    z-index: 2;

    width: min(1200px, 100%);

    aspect-ratio: 16 / 9;

    background: #000;

    border: 1px solid rgba(241, 126, 2, 0.4);

    box-shadow:
        0 30px 100px rgba(0, 0, 0, 0.8);
}


.video-frame {
    width: 100%;
    height: 100%;
}


.video-frame iframe {
    display: block;

    width: 100%;
    height: 100%;

    border: 0;
}


.video-modal-close {
    position: absolute;
    z-index: 5;

    top: -55px;
    right: 0;

    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;

    background: #000;
    color: #fff;

    cursor: pointer;

    transition: 0.25s ease;
}


.video-modal-close:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: #000;
}


.video-modal-close svg {
    width: 20px;
    height: 20px;
}

.reviews-layout {
        gap: 35px;
    }


    .reviews-intro h2 {
        font-size: 34px;
    }


    .reviews-rating > strong {
        font-size: 45px;
    }


    .review-card {
        min-height: 360px;
        padding: 22px;
    }


    .review-card blockquote {
        font-size: 21px;
    }


     .contacts-content {
        padding: 35px 20px;
    }


    .contacts-content h2 {
        font-size: 45px;
    }


    .contacts-content > p {
        font-size: 14px;
    }


    .contacts-right {
        padding-left: 20px;
        padding-right: 20px;
    }


    .contact-item > a {
        font-size: 14px;
    }


    
   .footer-nav {
        gap: 18px 20px;
    }


    .footer-nav a {
        font-size: 8px;
    }


    .footer-bottom {
        flex-direction: column;
        gap: 8px;
    }


    .contact-hero {
        margin-top: 72px;
    }


    .contact-hero-inner {
        padding-top: 40px;
        padding-bottom: 75px;

        gap: 25px;
    }


    .contact-label {
        margin-bottom: 20px;

        padding: 7px 11px;

        font-size: 8px;
    }


    .contact-hero-content h1 {
        font-size: 40px;
    }


    .contact-hero-content > p {
        font-size: 13px;
    }


    .contact-hero-buttons {
        margin-top: 25px;
    }


    .contact-hero-buttons .btn {
        min-height: 52px;

        font-size: 10px;
    }


    .contact-hero-number {
        margin-top: 28px;
    }


    .contact-hero-number strong {
        font-size: 16px;
    }


    .contact-hero-panel {
        padding: 12px;
    }


    .contact-card {
        min-height: 90px;

        grid-template-columns: 44px 1fr 15px;

        gap: 10px;

        padding: 15px 3px;
    }


    .contact-card-icon {
        width: 44px;
        height: 44px;
    }


    .contact-card-icon svg {
        width: 19px;
        height: 19px;
    }


    .contact-card-content span {
        font-size: 7px;
    }


    .contact-card-content strong {
        font-size: 11px;
    }


    .contact-card-content small {
        margin-top: 5px;

        font-size: 9px;
    }


    .contact-hero-bottom-inner span:first-child {
        max-width: 160px;

        white-space: normal;
    }


    .contact-products-head h2 {
        font-size: 34px;
    }


    .contact-product-link {
        min-height: 165px;

        padding: 20px;
    }


    .contact-product-link h3 {
        font-size: 17px;
    }

     .podmosti-hero {
        margin-top: 72px;
    }


    .podmosti-hero-inner {
        padding-top: 42px;
        padding-bottom: 55px;
    }


    .podmosti-hero-content h1 {
        font-size: 39px;
    }


    .podmosti-hero-content > p {
        font-size: 13px;

        line-height: 1.55;
    }


    .podmosti-hero-meta {
        margin-top: 28px;
    }


    .podmosti-hero-meta strong {
        font-size: 14px;
    }


    .podmosti-hero-meta span {
        font-size: 8px;
    }


    .podmosti-offer-content h2 {
        font-size: 23px;
    }


    .podmosti-offer-content p {
        font-size: 12px;
    }


    .page-section-head h2 {
        font-size: 32px;
    }


    .podmosti-product-image {
        height: 300px;

        min-height: 300px;
    }


    .podmosti-product-info h3 {
        font-size: 27px;
    }


    .product-specs > div {
        grid-template-columns: 1fr;

        gap: 4px;
    }

    .product-specs strong {
        padding-left: 0;

        text-align: left;
    }



    .gallery-item {
        min-height: 200px;
    }


    .podmosti-cta-inner h2 {
        font-size: 34px;
    }

      .podmosti-gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
        gap: 10px;
    }

     .gallery-item {
        aspect-ratio: 4 / 3;
    }


    .gallery-meta strong {
        font-size: 8px;
    }


    .gallery-lightbox-image-wrap {
        padding:
            55px
            35px
            65px;
    }


    .gallery-lightbox-prev,
    .gallery-lightbox-next {
        width: 38px;
        height: 38px;
    }


    .gallery-lightbox-prev svg,
    .gallery-lightbox-next svg {
        width: 18px;
        height: 18px;
    }


    .gallery-lightbox-title {
        display: none;
    }

     .shop-hero h1 {
        font-size: 43px;
    }


    .shop-hero-label {
        padding: 8px 10px;
    }


    .shop-hero-stats {
        gap: 15px;
    }


    .shop-hero-stat > svg {
        width: 22px;
        height: 22px;
    }


    .shop-hero-visual {
        min-height: 350px;
    }


    .shop-hero-card {
        min-height: 350px;
    }


    .shop-hero-product {
        height: 240px;
    }


    .shop-hero-card-bottom {
        padding: 14px 16px;
    }


    .shop-hero-card-bottom span {
        font-size: 7px;
    }


    .shop-hero-card-bottom strong {
        font-size: 8px;
    }


    .shop-hero-number {
        display: none;
    }


    .shop-section-head h2 {
        font-size: 34px;
    }


    .shop-step-card {
        min-height: 220px;

        padding: 22px 20px;
    }


    .shop-why-card {
        min-height: 260px;

        padding: 25px 20px;
    }


    .shop-kaspi-content {
        padding: 35px 20px 15px;
    }


    .shop-kaspi-content h2 {
        font-size: 34px;
    }


    .shop-kaspi-visual {
        min-height: 300px;
    }


    .shop-kaspi-circle {
        width: 220px;
        height: 220px;
    }


    .shop-kaspi-circle span {
        font-size: 19px;
    }


    .shop-kaspi-product {
        width: 78%;
        height: 85%;
    }

    .container {
        padding-left: 18px;
        padding-right: 18px;
    }


    /* HERO */

    .vyshki-hero-inner {
        padding-top: 45px;
        padding-bottom: 50px;
    }

    .vyshki-hero-content h1 {
        font-size: 40px;
    }

    .vyshki-hero-content > p {
        font-size: 12px;
    }


    /* HERO CARD */

    .vyshki-hero-visual {
        min-height: 340px;
    }

    .shop-hero-card {
        min-height: 340px;
    }

    .shop-hero-product {
        height: 225px;
    }

    .shop-hero-card-bottom {
        padding: 13px 15px;
    }

    .shop-hero-card-bottom strong {
        font-size: 8px;
    }


    /* CATALOG */

    .vyshki-catalog {
        padding-top: 55px;
        padding-bottom: 65px;
    }

    .vyshki-catalog-header {
        margin-bottom: 28px;
    }

    .vyshki-catalog-header h2 {
        font-size: 31px;
    }

    .vyshki-catalog-total {
        gap: 9px;
    }

    .vyshki-catalog-total strong {
        font-size: 29px;
    }


    /* CARD */

    .vyshki-card-image {
        aspect-ratio: 1 / 0.70;
    }

    .vyshki-card-image img {
        padding: 18px;
    }

    .vyshki-card-body {
        padding: 21px 18px 18px;
    }

    .vyshki-card-title {
        font-size: 19px;
    }

    .vyshki-card-specs {
        margin-top: 22px;
    }

    .vyshki-card-spec {
        grid-template-columns: 44% 56%;
        padding: 11px 0;
    }

    .vyshki-card-spec span,
    .vyshki-card-spec strong {
        font-size: 8px;
    }

    .vyshki-card-footer {
        gap: 10px;
        padding-top: 21px;
    }

    .vyshki-card-price strong {
        font-size: 18px;
    }

    .vyshki-card-buy {
        min-height: 42px;
        padding: 0 12px;
    }

}

/* =========================
   390px
========================= */

@media (max-width: 390px) {

    .contact-hero-content h1 {
        font-size: 36px;
    }


    .contact-hero-content > p {
        font-size: 12px;
    }


    .contact-hero-number strong {
        font-size: 15px;
    }


    .contact-card {
        grid-template-columns: 40px 1fr 14px;

        gap: 9px;
    }


    .contact-card-icon {
        width: 40px;
        height: 40px;
    }


    .contact-card-content strong {
        font-size: 10px;
    }


    .contact-card-content small {
        font-size: 8px;
    }


    .contact-products-head h2 {
        font-size: 31px;
    }

    .podmosti-hero-content h1 {
        font-size: 35px;
    }


    .podmosti-hero-content > p {
        font-size: 12px;
    }


    .podmosti-offer-card {
        padding: 24px 18px;
    }


    .podmosti-offer-content h2 {
        font-size: 21px;
    }


    .page-section-head h2 {
        font-size: 29px;
    }


    .podmosti-product-image {
        height: 270px;

        min-height: 270px;
    }


    .podmosti-product-info {
        padding: 22px 18px;
    }


    .podmosti-product-info h3 {
        font-size: 25px;
    }


    .product-title-row span {
        font-size: 7px;
    }


    .podmosti-cta-inner h2 {
        font-size: 31px;
    }

      .podmosti-gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
        gap: 10px;
    }

        .gallery-item {
        aspect-ratio: 4 / 3;
    }


    .gallery-overlay {
        padding: 12px;
    }


    .gallery-lightbox-image-wrap {
        padding:
            55px
            30px
            65px;
    }

    .shop-hero h1 {
        font-size: 39px;
    }


    .shop-hero-text {
        font-size: 13px;
    }


    .shop-hero-visual {
        min-height: 310px;
    }


    .shop-hero-card {
        min-height: 310px;
    }


    .shop-hero-product {
        height: 205px;
    }


    .shop-hero-card-top {
        padding: 15px 16px;
    }


    .shop-hero-card-top span:first-child {
        font-size: 13px;
    }


    .shop-hero-card-bottom {
        padding: 12px 15px;
    }


    .shop-hero-card-arrow {
        width: 34px;
        height: 34px;
    }


    .shop-section-head h2 {
        font-size: 31px;
    }


    .shop-step-card {
        min-height: 210px;
    }


    .shop-why-card {
        min-height: 250px;
    }


    .shop-kaspi-content h2 {
        font-size: 31px;
    }


    .shop-kaspi-visual {
        min-height: 275px;
    }


    .shop-kaspi-circle {
        width: 195px;
        height: 195px;
    }


    .shop-kaspi-circle::before {
        inset: 20px;
    }


    .shop-kaspi-circle span {
        font-size: 16px;
    }

    .container {
        padding-left: 16px;
        padding-right: 16px;
    }


    /* HERO */

    .vyshki-hero-inner {
        padding-top: 40px;
        padding-bottom: 45px;
    }

    .vyshki-hero-content h1 {
        font-size: 36px;
    }

    .vyshki-hero-content > p {
        font-size: 12px;
        line-height: 1.5;
    }


    /* HERO BUTTONS */

    .vyshki-hero-actions {
        gap: 9px;
    }


    /* HERO CARD */

    .vyshki-hero-visual {
        min-height: 310px;
    }

    .shop-hero-card {
        min-height: 310px;
    }

    .shop-hero-product {
        height: 205px;
    }

    .shop-hero-card-bottom {
        padding: 12px 14px;
    }

    .shop-hero-card-bottom span {
        font-size: 6px;
    }

    .shop-hero-card-bottom strong {
        font-size: 7px;
    }

    .shop-hero-card-arrow {
        width: 34px;
        height: 34px;
    }

    .shop-hero-card-arrow svg {
        width: 15px;
        height: 15px;
    }


    /* CATALOG */

    .vyshki-catalog {
        padding-top: 50px;
        padding-bottom: 60px;
    }

    .vyshki-catalog-header h2 {
        font-size: 29px;
    }

    .vyshki-catalog-total strong {
        font-size: 27px;
    }

    .vyshki-catalog-total span {
        font-size: 6px;
    }


    /* PRODUCT CARD */

    .vyshki-products-grid {
        gap: 14px;
    }

    .vyshki-card-image {
        aspect-ratio: 1 / 0.68;
    }

    .vyshki-card-image img {
        padding: 16px;
    }

    .vyshki-card-body {
        padding: 20px 16px 17px;
    }

    .vyshki-card-title {
        font-size: 18px;
        line-height: 1.12;
    }

    .vyshki-card-specs {
        margin-top: 20px;
    }

    .vyshki-card-spec {
        grid-template-columns: 43% 57%;
        padding: 10px 0;
    }

    .vyshki-card-spec span,
    .vyshki-card-spec strong {
        font-size: 8px;
        line-height: 1.35;
    }

    .vyshki-card-footer {
        gap: 8px;
        padding-top: 20px;
    }

    .vyshki-card-price {
        gap: 3px;
    }

    .vyshki-card-price span {
        font-size: 7px;
    }

    .vyshki-card-price strong {
        font-size: 16px;
    }

    .vyshki-card-buy {
        min-height: 40px;
        padding: 0 10px;
        gap: 5px;
        font-size: 7px;
    }

    .vyshki-card-buy svg {
        width: 12px;
        height: 12px;
    }

    .vyshki-card-number {
        top: 11px;
        left: 11px;
        min-width: 30px;
        height: 24px;
        font-size: 8px;
    }


}