:root {
    --dk-bg: #ffffff;
    --dk-surface: #f6f8f5;
    --dk-text: #121417;
    --dk-muted: #6f7680;

    --dk-green: #aaff25;
    --dk-green-dark: #58a915;
    --dk-mint: #68f7c2;

    --dk-orange: #ff7a00;
    --dk-orange-hover: #e96500;
    --dk-orange-light: #ff9a3d;

    --dk-line: rgba(16, 20, 24, .10);
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--dk-bg);
    color: var(--dk-text);
}


/* =========================================================
   HEADER — LIGHT
========================================================= */

.dk-header {
    position: sticky;
    top: 0;
    z-index: 9999;

    padding: 12px 22px;

    background: rgba(255, 255, 255, .88);

    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);

    border-bottom: 1px solid rgba(16, 20, 24, .08);

    box-shadow:
        0 8px 30px rgba(16, 20, 24, .04);
}

.admin-bar .dk-header {
    top: 32px;
}

.dk-header__inner {
    max-width: 1380px;
    min-height: 66px;

    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}


/* =========================================================
   LOGO
========================================================= */

.dk-logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;

    gap: 12px;

    color: #111315;
    text-decoration: none;

    font-size: 23px;
    font-weight: 800;

    letter-spacing: -.04em;
}

.dk-logo:hover {
    color: #111315;
}

.dk-logo__image {
    display: block;

    width: auto;
    height: 54px;
    max-width: 260px;

    object-fit: contain;
}

.dk-logo__fallback {
    color: #111111;

    font-size: 24px;
    font-weight: 800;
}


/* Старый декоративный логотип — оставлен как запасной */

.dk-logo__mark {
    width: 34px;
    height: 34px;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 2px;

    transform: rotate(-10deg);
}

.dk-logo__mark i {
    border-radius: 5px;

    background: var(--dk-green);
}

.dk-logo__mark i:nth-child(2) {
    background: var(--dk-mint);

    transform: translateY(5px);
}

.dk-logo__mark i:nth-child(3) {
    background: #1a1e22;

    transform: translateY(10px);
}


/* =========================================================
   NAVIGATION
========================================================= */

.dk-nav {
    display: flex;
    align-items: center;

    gap: 28px;
}

.dk-nav a {
    position: relative;

    color: rgba(20, 24, 28, .74);
    text-decoration: none;

    font-size: 14px;
    font-weight: 650;

    transition:
        color .2s ease;
}

.dk-nav a::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: -8px;

    height: 2px;

    border-radius: 999px;

    background: var(--dk-green-dark);

    transform: scaleX(0);
    transform-origin: center;

    transition:
        transform .2s ease;
}

.dk-nav a:hover {
    color: #111315;
}

.dk-nav a:hover::after {
    transform: scaleX(1);
}


/* =========================================================
   HEADER ACTIONS
========================================================= */

.dk-header__actions {
    display: flex;
    align-items: center;

    gap: 10px;
}

.dk-shop-link {
    height: 42px;

    display: inline-flex;
    align-items: center;

    padding: 0 18px;

    border: 1px solid rgba(255, 122, 0, .28);
    border-radius: 999px;

    background:
        linear-gradient(
            135deg,
            var(--dk-orange-light),
            var(--dk-orange)
        );

    color: #ffffff;
    text-decoration: none;

    font-size: 14px;
    font-weight: 850;

    box-shadow:
        0 8px 22px rgba(255, 122, 0, .18);

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        background .25s ease;
}

.dk-shop-link:hover {
    color: #ffffff;

    transform: translateY(-2px);

    background:
        linear-gradient(
            135deg,
            #ffad61,
            var(--dk-orange-hover)
        );

    box-shadow:
        0 12px 30px rgba(255, 122, 0, .30);
}


/* =========================================================
   CART
========================================================= */

.dk-cart {
    position: relative;

    width: 44px;
    height: 44px;

    display: grid;
    place-items: center;

    border: 1px solid var(--dk-line);
    border-radius: 50%;

    color: #16191d;
    text-decoration: none;

    background: rgba(248, 249, 247, .94);

    transition:
        transform .2s ease,
        border-color .2s ease,
        background .2s ease;
}

.dk-cart:hover {
    color: #111315;

    transform: translateY(-2px);

    border-color: rgba(255, 122, 0, .30);

    background: #ffffff;
}

.dk-cart svg {
    width: 20px;

    fill: none;

    stroke: currentColor;
    stroke-width: 1.8;

    stroke-linecap: round;
    stroke-linejoin: round;
}

.dk-cart__count {
    position: absolute;

    width: 19px;
    height: 19px;

    right: -5px;
    top: -5px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: var(--dk-green);

    color: #070809;

    font-size: 10px;
    font-weight: 900;

    box-shadow:
        0 4px 12px rgba(122, 195, 26, .20);
}


/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.dk-menu-toggle {
    width: 44px;
    height: 44px;

    display: none;

    position: relative;

    border: 1px solid rgba(16, 20, 24, .08);
    border-radius: 50%;

    background: #f4f6f3;

    cursor: pointer;

    transition:
        background .2s ease,
        transform .2s ease;
}

.dk-menu-toggle:hover {
    background: #eef1ec;

    transform: translateY(-1px);
}

.dk-menu-toggle span {
    position: absolute;

    width: 18px;
    height: 2px;

    left: 13px;

    border-radius: 999px;

    background: #171a1e;

    transition: .25s;
}

.dk-menu-toggle span:first-child {
    top: 17px;
}

.dk-menu-toggle span:last-child {
    top: 25px;
}


/* =========================================================
   SCROLL REVEAL
========================================================= */

.dk-reveal {
    opacity: 0;

    transform: translateY(35px);

    transition:
        opacity .7s ease,
        transform .7s cubic-bezier(.2, .7, .2, 1);
}

.dk-reveal.dk-visible {
    opacity: 1;

    transform: translateY(0);
}


/* =========================================================
   GLOBAL ORANGE CTA BUTTONS
========================================================= */

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce a.added_to_cart,
.woocommerce .single_add_to_cart_button,
.woocommerce .checkout-button,
.woocommerce #place_order,
.wc-block-components-button:not(.is-link),
.wp-block-button__link {
    border: 1px solid rgba(255, 122, 0, .28) !important;
    border-radius: 10px !important;

    background:
        linear-gradient(
            135deg,
            var(--dk-orange-light),
            var(--dk-orange)
        ) !important;

    color: #ffffff !important;

    font-weight: 800 !important;
    text-decoration: none !important;

    box-shadow:
        0 8px 22px rgba(255, 122, 0, .18) !important;

    transition:
        transform .22s ease,
        box-shadow .22s ease,
        background .22s ease !important;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce a.added_to_cart:hover,
.woocommerce .single_add_to_cart_button:hover,
.woocommerce .checkout-button:hover,
.woocommerce #place_order:hover,
.wc-block-components-button:not(.is-link):hover,
.wp-block-button__link:hover {
    background:
        linear-gradient(
            135deg,
            #ffad61,
            var(--dk-orange-hover)
        ) !important;

    color: #ffffff !important;

    transform: translateY(-2px);

    box-shadow:
        0 12px 30px rgba(255, 122, 0, .30) !important;
}


/* =========================================================
   DISABLED BUTTONS
========================================================= */

.woocommerce button.button:disabled,
.woocommerce button.button:disabled[disabled],
.woocommerce input.button:disabled,
.woocommerce input.button:disabled[disabled],
.wc-block-components-button:disabled {
    opacity: .55 !important;

    cursor: not-allowed !important;

    transform: none !important;

    box-shadow: none !important;
}


/* =========================================================
   QUANTITY
========================================================= */

.woocommerce .quantity .qty {
    border: 1px solid rgba(16, 20, 24, .14);
    border-radius: 9px;

    background: #ffffff;

    color: var(--dk-text);
}


/* =========================================================
   REMOVE BUTTON
========================================================= */

.woocommerce a.remove {
    background: transparent !important;

    color: #d63638 !important;

    box-shadow: none !important;
}

.woocommerce a.remove:hover {
    background: rgba(214, 54, 56, .10) !important;

    color: #b32d2e !important;

    transform: none;
}


/* =========================================================
   WOOCOMMERCE NOTICES
========================================================= */

.woocommerce-message,
.woocommerce-info {
    border-top-color: var(--dk-orange) !important;
}

.woocommerce-message::before,
.woocommerce-info::before {
    color: var(--dk-orange) !important;
}


/* =========================================================
   WOOCOMMERCE LINKS
========================================================= */

.woocommerce div.product p.price,
.woocommerce div.product span.price,
.woocommerce ul.products li.product .price {
    color: var(--dk-orange);
}


/* =========================================================
   TABLET / MOBILE NAV
========================================================= */

@media (max-width: 1050px) {

    .dk-nav {
        position: fixed;

        left: 18px;
        right: 18px;
        top: 90px;

        padding: 16px;

        border: 1px solid rgba(16, 20, 24, .09);
        border-radius: 24px;

        background: rgba(255, 255, 255, .97);

        box-shadow:
            0 24px 60px rgba(18, 24, 30, .12);

        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);

        flex-direction: column;
        align-items: stretch;

        gap: 4px;

        opacity: 0;
        visibility: hidden;

        transform: translateY(-12px);

        transition: .25s ease;
    }

    .dk-nav.dk-open {
        opacity: 1;
        visibility: visible;

        transform: translateY(0);
    }

    .dk-nav a {
        padding: 14px 12px;

        border-radius: 12px;

        color: #22262b;

        font-size: 16px;
    }

    .dk-nav a::after {
        display: none;
    }

    .dk-nav a:hover {
        color: #111315;

        background: #f3f6f0;
    }

    .dk-menu-toggle {
        display: block;
    }
}


/* =========================================================
   MOBILE LOGO
========================================================= */

@media (max-width: 768px) {

    .dk-logo__image {
        height: 42px;
        max-width: 190px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 600px) {

    .dk-header {
        padding: 8px 12px;
    }

    .dk-header__inner {
        min-height: 58px;

        gap: 12px;
    }

    .dk-logo {
        font-size: 20px;
    }

    .dk-logo__mark {
        width: 28px;
        height: 28px;
    }

    .dk-logo__image {
        height: 40px;
        max-width: 175px;
    }

    .dk-shop-link {
        display: none;
    }

    .admin-bar .dk-header {
        top: 46px;
    }

    .dk-nav {
        top: 76px;

        left: 12px;
        right: 12px;
    }

    .woocommerce a.button,
    .woocommerce button.button,
    .woocommerce input.button,
    .woocommerce .single_add_to_cart_button,
    .woocommerce .checkout-button,
    .woocommerce #place_order,
    .wc-block-components-button:not(.is-link) {
        min-height: 44px;

        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
}
/* =========================================================
   WOOCOMMERCE CART / CHECKOUT — TEXT WRAP FIX
========================================================= */

/* Контейнер описания товара */
.wc-block-components-product-metadata,
.wc-block-components-order-summary-item__description,
.wc-block-cart-item__product {
    min-width: 0 !important;
    max-width: 100% !important;

    overflow: hidden !important;
}


/* Сам текст описания */
.wc-block-components-product-metadata,
.wc-block-components-product-metadata p,
.wc-block-components-product-metadata pre,
.wc-block-components-product-metadata code,
.wc-block-components-product-metadata span,

.wc-block-components-order-summary-item__description,
.wc-block-components-order-summary-item__description p,
.wc-block-components-order-summary-item__description pre,
.wc-block-components-order-summary-item__description code,

.wc-block-cart-item__product p,
.wc-block-cart-item__product pre,
.wc-block-cart-item__product code {

    max-width: 100% !important;

    white-space: normal !important;

    overflow-wrap: anywhere !important;
    word-wrap: break-word !important;
    word-break: break-word !important;

    font-family: inherit !important;

    line-height: 1.55 !important;
}


/* Серый блок описания не должен выходить наружу */
.wc-block-components-product-metadata {
    box-sizing: border-box !important;

    width: 100% !important;

    padding: 12px 14px !important;

    border-radius: 10px !important;

    background: #f5f7f4 !important;

    color: #626a73 !important;

    font-size: 13px !important;
}


/* CHECKOUT — правая колонка */
.wc-block-components-order-summary-item {
    min-width: 0 !important;
}

.wc-block-components-order-summary-item__description {
    min-width: 0 !important;
    width: 100% !important;
}


/* MOBILE */
@media (max-width: 767px) {

    .wc-block-components-product-metadata {
        padding: 10px 11px !important;

        font-size: 12px !important;

        line-height: 1.5 !important;
    }

    .wc-block-components-order-summary-item__description {
        overflow: hidden !important;
    }
}

/* =========================================================
   MOBILE CHECKOUT / CART — HARD TEXT WRAP FIX
========================================================= */

@media (max-width: 767px) {

    .wc-block-checkout,
    .wc-block-cart,
    .wc-block-components-sidebar-layout,
    .wc-block-components-main,
    .wc-block-components-sidebar,
    .wc-block-components-order-summary,
    .wc-block-components-order-summary-item,
    .wc-block-components-order-summary-item__description,
    .wc-block-components-product-metadata,
    .wc-block-cart-items,
    .wc-block-cart-item__product {
        min-width: 0 !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .wc-block-components-order-summary-item {
        overflow: hidden !important;
    }

    .wc-block-components-order-summary-item__description {
        width: auto !important;
        min-width: 0 !important;
        max-width: 100% !important;
        overflow: hidden !important;
    }

    .wc-block-components-order-summary-item__description *,
    .wc-block-components-product-metadata *,
    .wc-block-cart-item__product * {
        min-width: 0 !important;
        max-width: 100% !important;

        white-space: normal !important;

        overflow-wrap: anywhere !important;
        word-break: break-word !important;
        word-wrap: break-word !important;
    }

    .wc-block-components-order-summary-item__description pre,
    .wc-block-components-order-summary-item__description code,
    .wc-block-components-product-metadata pre,
    .wc-block-components-product-metadata code,
    .wc-block-cart-item__product pre,
    .wc-block-cart-item__product code {
        display: block !important;

        width: 100% !important;
        max-width: 100% !important;

        margin: 0 !important;
        padding: 0 !important;

        white-space: normal !important;

        overflow: hidden !important;
        overflow-wrap: anywhere !important;
        word-break: break-word !important;

        font-family: inherit !important;
    }

    .wc-block-components-product-metadata {
        width: 100% !important;
        max-width: 100% !important;

        margin-top: 8px !important;
        padding: 9px 10px !important;

        overflow: hidden !important;

        border-radius: 9px !important;

        font-size: 11px !important;
        line-height: 1.45 !important;
    }

    .wc-block-components-order-summary-item__individual-prices,
    .wc-block-components-order-summary-item__total-price,
    .wc-block-components-order-summary-item__image {
        flex-shrink: 0 !important;
    }

    .wp-block-woocommerce-checkout,
    .wp-block-woocommerce-cart {
        max-width: 100% !important;
        overflow-x: hidden !important;
    }
}
/* =========================================================
   THANK YOU PAGE
========================================================= */

.dk-thankyou {
    padding: 80px 20px 110px;

    background:
        radial-gradient(
            circle at 80% 10%,
            rgba(170,255,37,.12),
            transparent 30%
        ),
        #f8faf6;
}

.dk-thankyou__inner {
    width: 100%;
    max-width: 980px;

    margin: 0 auto;
}

.dk-thankyou__success-icon {
    width: 68px;
    height: 68px;

    display: grid;
    place-items: center;

    margin-bottom: 22px;

    border-radius: 50%;

    background: #aaff25;

    color: #10130d;

    font-size: 32px;
    font-weight: 900;
}

.dk-thankyou__eyebrow {
    color: #58a915;

    font-size: 12px;
    font-weight: 900;

    letter-spacing: .18em;
}

.dk-thankyou h1 {
    margin: 12px 0 16px;

    color: #121417;

    font-size: clamp(40px, 6vw, 68px);

    line-height: 1;
    letter-spacing: -.045em;
}

.dk-thankyou__intro {
    max-width: 650px;

    margin: 0 0 38px;

    color: #6c737d;

    font-size: 18px;
    line-height: 1.6;
}

.dk-thankyou__overview {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0,1fr));

    gap: 12px;

    margin-bottom: 50px;
}

.dk-thankyou__overview-item {
    padding: 20px;

    border:
        1px solid rgba(16,20,24,.08);

    border-radius: 18px;

    background: #ffffff;

    box-shadow:
        0 10px 28px rgba(20,28,34,.05);
}

.dk-thankyou__overview-item span {
    display: block;

    margin-bottom: 7px;

    color: #858c95;

    font-size: 12px;
}

.dk-thankyou__overview-item strong {
    color: #15181b;

    font-size: 16px;
}

.dk-thankyou__next {
    margin-bottom: 50px;
}

.dk-thankyou__next h2,
.dk-thankyou__products h2 {
    margin:
        0 0 22px;

    color: #15181b;

    font-size: 28px;

    letter-spacing: -.025em;
}

.dk-thankyou__steps {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0,1fr));

    gap: 14px;
}

.dk-thankyou__step {
    display: flex;

    gap: 14px;

    padding: 22px;

    border:
        1px solid rgba(16,20,24,.08);

    border-radius: 18px;

    background: #ffffff;
}

.dk-thankyou__step > span {
    color: #58a915;

    font-size: 12px;
    font-weight: 900;
}

.dk-thankyou__step strong {
    display: block;

    margin-bottom: 7px;

    color: #17191c;
}

.dk-thankyou__step p {
    margin: 0;

    color: #747b84;

    font-size: 13px;
    line-height: 1.5;
}

.dk-thankyou__products {
    margin-bottom: 38px;
}

.dk-thankyou-product {
    display: grid;

    grid-template-columns:
        72px minmax(0,1fr) auto;

    align-items: center;

    gap: 16px;

    padding: 16px 0;

    border-bottom:
        1px solid rgba(16,20,24,.08);
}

.dk-thankyou-product__image img {
    width: 72px;
    height: 72px;

    display: block;

    object-fit: cover;

    border-radius: 12px;

    background: #f0f2ee;
}

.dk-thankyou-product__info strong {
    display: block;

    margin-bottom: 5px;

    color: #17191c;
}

.dk-thankyou-product__info span {
    color: #858c95;

    font-size: 13px;
}

.dk-thankyou-product__price {
    color: #2f7f10;

    font-size: 16px;
    font-weight: 850;
}

.dk-thankyou__actions {
    display: flex;

    gap: 12px;

    flex-wrap: wrap;
}

.dk-thankyou-btn {
    min-height: 50px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding:
        0 24px;

    border-radius: 999px;

    text-decoration: none;

    font-weight: 800;
}

.dk-thankyou-btn--primary {
    background: #aaff25;

    color: #11140d;
}

.dk-thankyou-btn--secondary {
    border:
        1px solid rgba(16,20,24,.10);

    background: #ffffff;

    color: #17191c;
}

@media (max-width: 800px) {

    .dk-thankyou {
        padding:
            50px 16px 80px;
    }

    .dk-thankyou__overview {
        grid-template-columns:
            repeat(2,minmax(0,1fr));
    }

    .dk-thankyou__steps {
        grid-template-columns:
            1fr;
    }
}

@media (max-width: 500px) {

    .dk-thankyou__overview {
        grid-template-columns:
            1fr;
    }

    .dk-thankyou-product {
        grid-template-columns:
            58px minmax(0,1fr);
    }

    .dk-thankyou-product__image img {
        width: 58px;
        height: 58px;
    }

    .dk-thankyou-product__price {
        grid-column:
            2;

        margin-top:
            -6px;
    }

    .dk-thankyou__actions {
        display: grid;

        grid-template-columns:
            1fr;
    }

    .dk-thankyou-btn {
        width: 100%;
    }
}

/* =========================================================
   LEGAL PAGES
========================================================= */

.legal-page {
    max-width: 900px;
    margin: 24px auto 90px;
    padding: 44px 50px;

    background: #ffffff;
    border: 1px solid rgba(18, 20, 23, .07);
    border-radius: 24px;

    box-shadow:
        0 18px 55px rgba(18, 20, 23, .08);

    position: relative;
    overflow: hidden;
}

.legal-page::before {
    content: "";
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 5px;

    background: linear-gradient(
        90deg,
        var(--dk-orange, #ff7a00),
        var(--dk-orange-light, #ff9a3d)
    );
}

/* Blocksy page title */
body.page-id-50 .hero-section {
    width: 100% !important;
    text-align: center !important;
}

body.page-id-50 .entry-header {
    width: 100% !important;
    max-width: 100% !important;

    margin-left: auto !important;
    margin-right: auto !important;

    text-align: center !important;
}

body.page-id-50 h1.page-title {
    display: block !important;

    width: 100% !important;
    max-width: 100% !important;

    margin: 58px auto 18px !important;

    text-align: center !important;

    color: var(--dk-text, #121417);

    font-size: clamp(38px, 5vw, 54px);
    font-weight: 850;
    line-height: 1.05;
    letter-spacing: -.035em;
}

/* Headings inside legal cards */
.legal-page h2,
.legal-page h3 {
    color: var(--dk-text, #121417);

    font-weight: 800;
    letter-spacing: -.015em;
}

.legal-page h2 {
    margin: 36px 0 14px;

    font-size: 26px;
}

.legal-page h3 {
    margin: 30px 0 10px;

    font-size: 19px;
}

/* Main legal text */
.legal-page p {
    margin: 0 0 14px;

    color: #343a40;

    font-size: 17px;
    line-height: 1.7;
}

.legal-page > p:first-child {
    margin-bottom: 30px;

    color: var(--dk-muted, #6f7680);

    font-size: 15px;
}

.legal-page strong {
    color: var(--dk-text, #121417);
    font-weight: 800;
}

.legal-page a {
    color: var(--dk-orange, #ff7a00);

    font-weight: 750;
    text-decoration: none;

    transition:
        color .2s ease,
        opacity .2s ease;
}

.legal-page a:hover {
    color: var(--dk-orange-hover, #e96500);
    text-decoration: underline;
}

.legal-page p + p {
    margin-top: 2px;
}


/* =========================================================
   LEGAL PAGES — MOBILE
========================================================= */

@media (max-width: 768px) {

    body.page-id-50 h1.page-title {
        margin: 34px auto 18px !important;
        padding: 0 18px;

        font-size: 36px;
    }

    .legal-page {
        margin: 18px 16px 60px;
        padding: 32px 22px;

        border-radius: 18px;
    }

    .legal-page h2 {
        font-size: 23px;
    }

    .legal-page h3 {
        font-size: 18px;
    }

    .legal-page p {
        font-size: 16px;
        line-height: 1.65;
    }
}

/* =========================================================
   ALL LEGAL PAGE TITLES — CENTER
========================================================= */

/* Если на странице есть legal-page, центрируем заголовок страницы */
body:has(.legal-page) .hero-section,
body:has(.legal-page) .entry-header {
    width: 100% !important;
    max-width: 100% !important;

    margin-left: auto !important;
    margin-right: auto !important;

    text-align: center !important;
}

body:has(.legal-page) h1.page-title {
    display: block !important;

    width: 100% !important;
    max-width: 100% !important;

    margin: 58px auto 18px !important;

    text-align: center !important;

    color: var(--dk-text, #121417);

    font-size: clamp(38px, 5vw, 54px);
    font-weight: 850;
    line-height: 1.05;
    letter-spacing: -.035em;
}

@media (max-width: 768px) {

    body:has(.legal-page) h1.page-title {
        margin: 34px auto 18px !important;
        padding: 0 18px;

        font-size: 36px;
    }
}
/* =========================================================
   FOOTER — 3 COLUMNS
========================================================= */

.ct-footer [data-row="middle"] .ct-container {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 50px !important;
    align-items: start !important;
}

.ct-footer [data-row="middle"] .ct-container > * {
    width: 100% !important;
    min-width: 0 !important;
}

/* Заголовки */
.ct-footer [data-row="middle"] h3 {
    margin: 0 0 18px !important;

    color: #121417 !important;

    font-size: 20px !important;
    font-weight: 800 !important;
}

/* Ссылки */
.ct-footer [data-row="middle"] p {
    margin: 0 0 10px !important;
}

.ct-footer [data-row="middle"] a {
    color: #5f6670 !important;
    text-decoration: none !important;

    font-size: 15px !important;
    font-weight: 550 !important;

    transition: color .2s ease !important;
}

.ct-footer [data-row="middle"] a:hover {
    color: var(--dk-orange, #ff7a00) !important;
}

/* Мобильная версия */
@media (max-width: 768px) {

    .ct-footer [data-row="middle"] .ct-container {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
    }
}	