:root {
    --gk-header-height: 82px;
}

html {
    scroll-padding-top: var(--gk-header-height);
}

.gk-site-header,
.gk-site-header * {
    box-sizing: border-box;
}

.gk-site-header {
    --gk-header-opacity: 0;
    position: fixed;
    z-index: 990;
    top: 0;
    right: 0;
    left: 0;
    height: var(--gk-header-height);
    color: #000;
    font-family: var(--t-text-font, Arial), Arial, sans-serif;
    transition: background-color .2s ease, box-shadow .2s ease, color .2s ease;
}

.gk-site-header::before {
    position: absolute;
    z-index: -1;
    inset: 0;
    background: #f5f5f5;
    content: "";
    opacity: 1;
    transition: background-color .2s ease;
}

.gk-site-header.is-overlay {
    color: #fff;
}

.gk-site-header.is-overlay::before {
    background: #000;
    opacity: var(--gk-header-opacity);
}

.gk-site-header.is-scrolled {
    box-shadow: 0 8px 28px rgba(0, 0, 0, calc(.18 * var(--gk-header-opacity)));
}

.gk-site-header__inner {
    display: flex;
    align-items: center;
    width: min(1200px, 100%);
    height: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.gk-site-header__brand {
    display: block;
    flex: 0 0 auto;
    width: 188px;
    line-height: 0;
}

.gk-site-header__brand img {
    display: block;
    width: 184px;
    height: 41px;
}

.gk-site-header__slogan {
    position: relative;
    display: block;
    flex: 0 0 auto;
    width: 219px;
    height: 29px;
    margin-left: 21px;
}

.gk-site-header__slogan img {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 169px;
    height: 29px;
    transition: opacity .2s ease;
}

.gk-site-header__slogan-light,
.gk-site-header.is-overlay .gk-site-header__slogan-dark {
    opacity: 0;
}

.gk-site-header.is-overlay .gk-site-header__slogan-light {
    opacity: 1;
}

.gk-site-header__nav {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-left: auto;
    font-size: 14px;
    line-height: 1.2;
    white-space: nowrap;
}

.gk-site-header__nav a {
    color: inherit !important;
    text-decoration: none;
    transition: color .2s ease;
}

.gk-site-header__nav a:hover,
.gk-site-header__nav a[aria-current="page"] {
    color: #dedd26 !important;
}

.gk-site-header__phone {
    display: flex;
    flex: 0 0 200px;
    height: 42px;
    margin-left: auto;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: #000;
    color: #fff !important;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.1;
    text-decoration: none;
    transition: background-color .2s ease, color .2s ease;
}

.gk-site-header__phone small {
    display: block;
    margin-top: 3px;
    font-size: 9px;
    font-weight: 400;
    line-height: 1;
}

.gk-site-header.is-overlay .gk-site-header__phone {
    background: #fff;
    color: #000 !important;
}

.gk-site-header__phone:hover {
    color: #dedd26 !important;
}

.gk-site-header__mobile-phone,
.gk-site-header__menu-toggle {
    display: none;
}

.gk-mobile-menu {
    position: fixed;
    z-index: 1100;
    inset: 0;
    display: flex;
    flex-direction: column;
    padding: 20px;
    background: #f5f5f5;
    color: #000;
    font-family: var(--t-text-font, Arial), Arial, sans-serif;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

.gk-mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.gk-mobile-menu__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.gk-mobile-menu__top img {
    display: block;
    width: 136px;
    height: auto;
}

.gk-mobile-menu__top button {
    width: 42px;
    height: 42px;
    border: 0;
    background: transparent;
    color: #000;
    font: 300 36px/1 Arial, sans-serif;
    cursor: pointer;
}

.gk-mobile-menu nav {
    display: grid;
    gap: 4px;
    margin: 54px 0 auto;
}

.gk-mobile-menu nav a {
    padding: 12px 0;
    border-bottom: 1px solid #d8d8d8;
    color: #000 !important;
    font-size: 26px;
    font-weight: 500;
    line-height: 1.1;
    text-decoration: none;
}

.gk-mobile-menu__phone {
    display: block;
    margin-top: 32px;
    padding: 15px;
    background: #000;
    color: #fff !important;
    font-size: 18px;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
}

.gk-mobile-menu__phone small {
    display: block;
    margin-top: 4px;
    font-size: 11px;
    font-weight: 400;
}

body.gk-menu-open {
    overflow: hidden;
}

#t-footer .t396__artboard {
    position: relative;
}

.gk-product-page,
.gk-product-page * {
    box-sizing: border-box;
}

.gk-product-page {
    min-height: 720px;
    padding: 132px 20px 80px;
    background: #f5f5f5;
    color: #000;
    font-family: var(--t-text-font, Arial), Arial, sans-serif;
}

.gk-product-page__inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(320px, 1fr) minmax(320px, 1fr);
    gap: 56px;
    width: min(1040px, 100%);
    margin: 0 auto;
    padding: 54px 52px 48px;
    border-radius: 5px;
    background: #fff;
}

.gk-product-page__back {
    position: absolute;
    top: 22px;
    left: 52px;
    color: #000 !important;
    font-size: 13px;
    line-height: 1.2;
    text-decoration: none;
}

.gk-product-page__media {
    display: grid;
    min-height: 410px;
    place-items: center;
    background: #f5f5f5;
}

.gk-product-page__media img {
    display: block;
    width: 100%;
    max-height: 430px;
    object-fit: contain;
}

.gk-product-page__info {
    align-self: center;
}

.gk-product-page__kicker {
    margin: 0 0 12px;
    color: #4f4f4f;
    font-size: 12px;
    line-height: 1.2;
    text-transform: uppercase;
}

.gk-product-page h1 {
    margin: 0 0 20px;
    font-family: var(--t-headline-font, var(--t-text-font, Arial)), Arial, sans-serif;
    font-size: 38px;
    line-height: 1.08;
}

.gk-product-page__description {
    margin: 0 0 24px;
    color: #303030;
    font-size: 14px;
    line-height: 1.55;
}

.gk-product-page__description p {
    margin: 0 0 14px;
}

.gk-product-page__description ul {
    margin: 14px 0;
    padding-left: 22px;
}

.gk-product-page__description li {
    margin-bottom: 6px;
}

.gk-product-page__description em {
    display: block;
    margin-top: 14px;
    color: #606060;
}

.gk-product-page__price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin: 0 0 26px;
    font-size: 22px;
    line-height: 1.2;
}

.gk-product-page__price strong {
    font-weight: 400;
}

.gk-product-page__price s {
    color: #777;
    font-size: 16px;
}

.gk-product-page__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.gk-product-page__actions button,
.gk-product-page__actions a {
    display: inline-flex;
    min-height: 54px;
    padding: 0 24px;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 4px;
    background: #dedd26;
    color: #000 !important;
    font: 500 14px/1.2 var(--t-text-font, Arial), Arial, sans-serif;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
}

.gk-product-page__actions a {
    border: 1px solid #000;
    background: #fff;
}

.gk-product-page__actions button:hover,
.gk-product-page__actions a:hover {
    background: #000;
    color: #dedd26 !important;
}

@font-face {
    font-family: "Gk Bebas";
    src: url("/wp-content/themes/glavkorob/assets/fonts/Bebas-Neue-Cyrillic.woff") format("woff");
    font-display: swap;
    font-style: normal;
    font-weight: 400;
}

body.gk-blog-article-page {
    margin: 0;
    background: #fff;
}

body.gk-blog-article-page .gk-cart-button {
    display: none !important;
}

.gk-blog-article,
.gk-blog-article * {
    box-sizing: border-box;
}

.gk-blog-article {
    min-height: 100vh;
    padding: 166px 20px 100px;
    background: #fff;
    color: #191919;
    font-family: Arial, sans-serif;
    text-align: left;
}

.gk-blog-article__back {
    display: inline-block;
    margin: 0 0 28px;
    color: #606060 !important;
    font-size: 13px;
    line-height: 1.3;
    text-decoration: none;
}

.gk-blog-article__inner {
    width: min(760px, 100%);
    margin: 0 auto;
}

.gk-blog-article h1 {
    margin: 0;
    font-family: "Gk Bebas", Arial, sans-serif;
    font-size: 36px;
    font-weight: 400;
    line-height: 1.23;
    text-transform: uppercase;
}

.gk-blog-article__header {
    margin: 0 0 30px;
}

.gk-blog-article__header time {
    display: block;
    margin-top: 24px;
    color: #6a6a6a;
    font-size: 10px;
    line-height: 1.2;
    letter-spacing: .14em;
}

.gk-blog-article__content h2 {
    margin: 36px 0 12px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.55;
}

.gk-blog-article__content p,
.gk-blog-article__content li {
    margin: 0 0 22px;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.55;
}

.gk-blog-article__content ul,
.gk-blog-article__content ol {
    margin: 0 0 24px;
    padding-left: 28px;
}

.gk-blog-article__content li {
    margin-bottom: 8px;
}

.gk-blog-article__image {
    display: block;
    width: 100%;
    height: auto;
    margin: 20px 0 34px;
}

/* Blog cards keep their title, description and date rows aligned. */
#rec1818347511 .t-feed__col-grid__post-wrapper {
    display: flex;
    flex-direction: column;
}

#rec1818347511 .t-feed__col-grid__wrapper {
    display: flex;
    flex: 1 1 auto !important;
    flex-direction: column;
}

#rec1818347511 .t-feed__post-parts-date-row {
    margin-top: auto !important;
}

@media (max-width: 1199px) {
    :root {
        --gk-header-height: 70px;
    }

    .gk-site-header__inner {
        padding: 0 10px;
    }

    .gk-site-header__brand {
        width: 136px;
    }

    .gk-site-header__brand img {
        width: 136px;
        height: auto;
    }

    .gk-site-header__slogan,
    .gk-site-header__nav,
    .gk-site-header__phone {
        display: none;
    }

    .gk-site-header__mobile-phone {
        display: grid;
        width: 70px;
        height: 30px;
        margin-left: auto;
        place-items: center;
        background: #000;
        color: #fff !important;
        text-decoration: none;
    }

    .gk-site-header__mobile-phone svg {
        width: 18px;
        height: 18px;
    }

    .gk-site-header.is-overlay .gk-site-header__mobile-phone {
        background: #fff;
        color: #000 !important;
    }

    .gk-site-header__menu-toggle {
        display: grid;
        width: 35px;
        height: 34px;
        margin-left: 10px;
        padding: 7px 5px;
        align-content: space-between;
        border: 0;
        background: transparent;
        color: inherit;
        cursor: pointer;
    }

    .gk-site-header__menu-toggle span {
        display: block;
        width: 25px;
        height: 2px;
        background: currentColor;
    }

    .gk-product-page {
        min-height: 0;
        padding: 94px 10px 48px;
    }

    .gk-product-page__inner {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 52px 20px 24px;
    }

    .gk-product-page__back {
        top: 20px;
        left: 20px;
    }

    .gk-product-page__media {
        min-height: 280px;
    }

    .gk-product-page h1 {
        font-size: 28px;
    }

    .gk-product-page__actions {
        display: grid;
    }

    .gk-blog-article {
        padding: 112px 16px 64px;
    }

    .gk-blog-article h1 {
        font-size: 30px;
    }

    .gk-blog-article__content h2 {
        margin: 30px 0 10px;
        font-size: 18px;
    }

    .gk-blog-article__content p,
    .gk-blog-article__content li {
        margin-bottom: 18px;
        font-size: 17px;
        line-height: 1.55;
    }

    .gk-blog-article__image {
        margin: 18px 0 28px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .gk-site-header,
    .gk-site-header::before,
    .gk-site-header__slogan img,
    .gk-mobile-menu {
        transition: none;
    }
}
