@import url('https://fonts.googleapis.com/css2?family=Dela+Gothic+One&display=swap');

@font-face {
    font-family: 'Gilroy';
    src: url('/wp-content/uploads/2024/04/gilroy-regular.woff2') format('woff2'),
         url('/wp-content/uploads/2024/04/gilroy-regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('/wp-content/uploads/2024/08/gilroy-medium.woff2') format('woff2'),
         url('/wp-content/uploads/2024/08/gilroy-medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('/wp-content/uploads/2024/08/gilroy-semibold.woff2') format('woff2'),
         url('/wp-content/uploads/2024/08/gilroy-semibold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('/wp-content/uploads/2024/08/gilroy-bold.woff2') format('woff2'),
         url('/wp-content/uploads/2024/08/gilroy-bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('/wp-content/uploads/2024/08/gilroy-extrabold.woff2') format('woff2'),
         url('/wp-content/uploads/2024/08/gilroy-extrabold.woff') format('woff');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('/wp-content/uploads/2024/08/gilroy-black.woff2') format('woff2'),
         url('/wp-content/uploads/2024/08/gilroy-black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

:root {
    --bp-ink: #122d4c;
    --bp-text: #2d2d2d;
    --bp-muted: #f7f7f7;
    --bp-line: #e5e5e5;
    --bp-blue: #122d4c;
    --bp-slate: #566e89;
    --bp-gold: #e3ae7e;
    --bp-dark: #071828;
    --bp-white: #fff;
    --bp-radius: 12px;
    --bp-shell: 1280px;
    --bp-header-box-width: 97%;
    --bp-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--bp-text);
    background: var(--bp-white);
    font-family: 'Gilroy', Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.55;
    letter-spacing: 0;
    overflow-x: hidden;
}

body.menu-open,
body.modal-open {
    overflow: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

h1,
h2,
h3,
h4 {
    margin: 0;
    color: #242424;
    line-height: 1.08;
    letter-spacing: 0;
    font-family: 'Gilroy', Arial, Helvetica, sans-serif;
    font-weight: 700;
}

h1 {
    font-size: clamp(36px, 5vw, 72px);
    font-family: 'Dela Gothic One', 'Gilroy', Arial, Helvetica, sans-serif;
    font-weight: 400;
}

h2 {
    font-size: clamp(28px, 3.5vw, 48px);
}

h3 {
    font-size: 22px;
}

p {
    margin: 0;
}

.site-shell {
    width: min(calc(100% - 32px), var(--bp-shell));
    margin-inline: auto;
}

/* =============================================
   HEADER — точно як оригінал whb-boxed
   - початковий стан: пігулка 95% ширини, відступ зверху
   - після скролу (.is-sticked): full-width, без відступу
   ============================================= */

.site-header-wrap {
    position: relative;
    z-index: 200;
}

/* Сам <header> — завжди fixed */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    pointer-events: none;
    transition: transform 0.3s ease, padding 0.3s ease;
}

/* ---- Головна: пігулка (floating pill) ---- */
body.home .site-header {
    padding: 20px 16px 0;
}

/* ---- Всі інші сторінки: плаский full-width хедер ---- */
body:not(.home) .site-header {
    padding: 0;
    background: #ffffff;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}

.site-header.is-hidden {
    transform: translateY(-110%);
}

.site-header > .site-shell {
    pointer-events: auto;
}

/* Пігулка — початковий стан як в оригіналі */
.header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 24px;
    align-items: center;
    background: #ffffff;
    border-radius: 50px;
    padding: 8px 20px 8px 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: width 0.4s ease, border-radius 0.4s ease, padding 0.3s ease, box-shadow 0.3s ease;
    width: var(--bp-header-box-width);
    margin: 0 auto;
}

/* Внутрішні сторінки: хедер розтягнутий на всю ширину одразу */
body:not(.home) .header-inner {
    width: 100%;
    border-radius: 0;
    box-shadow: none;
    padding: 10px 24px 10px 16px;
    margin: 0;
    background: transparent;
}

/* Sticky стан (головна): пігулка розширюється */
body.home .site-header.is-sticked {
    padding: 0 16px;
}

body.home .site-header.is-sticked .header-inner {
    width: 100%;
    border-radius: 50px;
    padding: 10px 24px 10px 16px;
    box-shadow: 0 4px 28px rgba(0, 0, 0, 0.12);
}

/* Sticky стан (внутрішні): тіні залишається без змін */
body:not(.home) .site-header.is-sticked {
    padding: 0;
}

body:not(.home) .site-header.is-sticked .header-inner {
    width: 100%;
    border-radius: 0;
    box-shadow: none;
    padding: 10px 24px 10px 16px;
}

/* Компенсація висоти фіксованого хедера:
   Головна — хедер floating, немає потреби в padding-top
   Внутрішні — хедер 64px (без top-padding) */
body:not(.home) .site-main {
    padding-top: 68px;
}

body.admin-bar:not(.home) .site-main {
    padding-top: 100px;
}

/* Product page */
body.single-product .site-main {
    padding-top: 68px;
}

body.admin-bar.single-product .site-main {
    padding-top: 100px;
}

body.single-product .page-section.product-detail-section {
    padding-top: 0;
}

/* Make inner-page first section offset consistent with cooperation page (desktop). */
@media (min-width: 1024px) {
    body:not(.home) .site-main > section:first-child,
    body:not(.home) .site-main > article > section:first-child {
        margin-top: 50px;
        padding-top: 0 !important;
    }
}

.site-logo {
    display: inline-flex;
    align-items: center;
    min-width: 140px;
}

.site-logo img {
    width: auto;
    max-width: 160px;
    max-height: 40px;
    object-fit: contain;
}

.primary-menu,
.footer-menu {
    display: flex;
    gap: 26px;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Desktop nav — inside header */
.desktop-primary-nav {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Mobile drawer nav — at body level, hidden on desktop */
.primary-nav {
    display: none;
}

.primary-menu a {
    color: #333333;
    font-weight: 400;
}

.footer-menu a {
    color: rgba(255,255,255,0.8);
    font-weight: 400;
}

.primary-menu a:hover {
    color: var(--bp-ink);
}

.footer-menu a:hover {
    color: #ffffff;
}

.header-actions {
    display: flex;
    gap: 14px;
    align-items: center;
}

.header-search-btn {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    color: #233a54;
    background: transparent;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.header-search-btn:hover {
    color: var(--bp-ink);
    background: var(--bp-muted);
}

.language-switcher {
    position: relative;
}

.language-switcher-toggle {
    display: inline-flex;
    min-width: 42px;
    height: 32px;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 0 10px;
    border: 1px solid var(--bp-ink);
    border-radius: 999px;
    background: var(--bp-ink);
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    text-transform: lowercase;
    cursor: pointer;
}

.language-switcher-caret {
    font-size: 10px;
    line-height: 1;
    opacity: 0.9;
}

.language-switcher-list {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    margin: 0;
    padding: 6px;
    list-style: none;
    min-width: 86px;
    border: 1px solid var(--bp-line);
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    z-index: 220;
}

.language-switcher-list li {
    margin: 0;
    padding: 0;
}

.language-switcher-list a {
    display: block;
    padding: 7px 10px;
    border-radius: 8px;
    color: #1f2b3c;
    font-size: 13px;
    font-weight: 500;
    text-transform: lowercase;
    text-decoration: none;
}

.language-switcher-list a:hover {
    background: var(--bp-muted);
}

.language-switcher--desktop.is-open .language-switcher-caret {
    transform: rotate(180deg);
}

.button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border: 1px solid transparent;
    border-radius: 35px;
    font-weight: 400;
    font-size: 16px;
    text-transform: lowercase;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    cursor: pointer;
    text-decoration: none;
}

.button-dark {
    color: var(--bp-white);
    background: var(--bp-ink);
    border-color: var(--bp-ink);
}

.button-dark:hover {
    background: var(--bp-slate);
    border-color: var(--bp-slate);
    color: var(--bp-white);
}

@media (min-width: 1024px) {
    .site-header .header-actions .header-cta {
        width: clamp(164px, 11vw, 180px) !important;
        min-width: clamp(164px, 11vw, 180px) !important;
        height: 48px !important;
        min-height: 48px !important;
        padding: 0 16px !important;
        flex: 0 0 clamp(164px, 11vw, 180px) !important;
        justify-content: center !important;
        text-align: center !important;
        white-space: nowrap !important;
    }
}

.button-light {
    color: var(--bp-ink);
    background: var(--bp-white);
    border: 1px solid rgba(255,255,255,0.6);
}

.button-light:hover {
    background: rgba(255,255,255,0.15);
}

.button-bordered {
    color: var(--bp-ink);
    background: transparent;
    border: 1px solid var(--bp-ink);
    border-radius: 35px;
}

.button-bordered:hover {
    background: var(--bp-ink);
    color: #fff;
}

.button-outline {
    color: var(--bp-ink);
    background: transparent;
    border: 1px solid var(--bp-ink);
    border-radius: 35px;
    font-size: 17px;
    padding: 14px 36px;
    text-transform: none;
}

.button-outline:hover {
    background: var(--bp-ink);
    color: var(--bp-white);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: none;
    border-radius: 50%;
    background: var(--bp-ink);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: #fff;
}

.hero-section {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    background: var(--bp-dark);
    overflow: hidden;
}

.home-hero {
    color: var(--bp-white);
    background: var(--bp-dark);
    align-items: flex-start;
}

/* YouTube iframe background */
.hero-yt-wrap {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.hero-yt-iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw; /* 16:9 */
    min-height: 100vh;
    min-width: 177.78vh;
    transform: translate(-50%, -50%);
    border: 0;
    pointer-events: none;
}

/* Poster fallback — під iframe */
.hero-poster {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-size: cover;
    background-position: center;
    background-color: var(--bp-dark);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 15, 15, 0.55);
    z-index: 2;
}

.hero-grid {
    position: relative;
    z-index: 3; /* вище overlay */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    /* .site-shell геометрія успадковується — width:min(calc(100%-32px),1280px), margin-inline:auto */
    padding: 180px 0 50px;
    text-align: left;
}

.hero-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
    /* Вирівнювання тексту по лівому краю пігулки хедера:
       (100% - 97%) / 2  = 1.5%  зміщення пігулки від краю site-shell
       + 12px             = ліво-padding всередині пігулки (header-inner)  */
    padding-left: calc((100% - var(--bp-header-box-width)) / 2 + 12px);
    padding-right: 0;
    text-align: left;
}

.home-hero .hero-copy p {
    color: var(--bp-white);
}

/* Hero eyebrow — в оригіналі це ВЕЛИКИЙ 50px заголовок */
.home-hero .eyebrow {
    font-size: 50px;
    line-height: 60px;
    font-weight: 800;
    color: #ffffff;
    text-transform: none;
    letter-spacing: 0;
    font-family: 'Gilroy', Arial, Helvetica, sans-serif;
    margin: 0 0 20px 0; /* WPBakery типовий p-gap перед vc_custom_-20 */
    padding-top: 150px; /* як оригінал vc_custom_1733921850030 */
    display: block;
}

/* Hero підзаголовок (тепер .hero-sub, не h1) */
.home-hero .hero-sub {
    font-family: 'Gilroy', Arial, Helvetica, sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 34px;
    color: #ffffff;
    margin: -20px 0 0 0; /* як оригінал margin-top: -20px */
    padding: 0;
    text-align: left;
    display: block;
}

.hero-copy p:not(.eyebrow):not(.hero-sub),
.section-heading p,
.page-hero p {
    max-width: 680px;
    font-size: 19px;
}

/* Global eyebrow (не в hero) */
.eyebrow {
    color: var(--bp-gold);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-media {
    display: flex;
    min-height: 420px;
    align-items: center;
    justify-content: center;
}

.hero-media img {
    width: min(100%, 560px);
    filter: drop-shadow(0 26px 34px rgba(23, 34, 50, 0.16));
}

.scroll-cue {
    position: absolute;
    left: 50%;
    bottom: 34px;
    z-index: 3;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    transform: translateX(-50%);
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 999px;
    animation: bp-bob 1.8s ease-in-out infinite;
}

.scroll-cue img {
    width: 28px;
    height: 28px;
    filter: brightness(0) invert(1);
}

@keyframes bp-bob {
    0%, 100% {
        translate: 0 0;
    }

    50% {
        translate: 0 8px;
    }
}

.scroll-top-btn {
    position: fixed;
    right: 16px;
    bottom: 16px;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #d8d8d8;
    border-radius: 50%;
    background: #fff;
    color: #4b4b4b;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease, background 0.2s ease;
    z-index: 260;
}

.scroll-top-btn.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    background: #f8f8f8;
}

@media (min-width: 1024px) {
    .scroll-top-btn {
        right: 20px;
        bottom: 20px;
    }
}

.page-section {
    padding: 80px 0;
}

.overlap-section {
    position: relative;
    z-index: 4;
    margin-top: 0;
    padding-top: 80px;
}

/* =============================================
   HOME SLIDER — як оригінал WoodMart slider-607
   Секція: padding 100px 0
   Слайд: фото зліва (41.6%), текст справа (41.6%), gap 80px
   Стрілки: по боках (absolute), крапки: по центру внизу
   ============================================= */
.home-slider {
    background: #fff;
    padding: 100px 0;
}

.home-slider-inner {
    position: relative;
}

/* Viewport-кліп окремо від стрілок */
.slide-overflow {
    overflow: hidden;
}

.slide-track {
    display: flex;
    transition: transform 0.7s ease;
}

.slide-item {
    min-width: 100%;
    display: grid;
    /* 5/12 фото + gap + 5/12 текст (vc_col-sm-5 x2) */
    grid-template-columns: 5fr 5fr;
    gap: 80px;
    align-items: center;
    box-sizing: border-box;
}

.slide-item img {
    width: 100%;
    /* оригінальний аспект 608×519 ≈ 1.17 */
    aspect-ratio: 608 / 519;
    object-fit: cover;
    border-radius: var(--bp-radius);
    display: block;
}

.slide-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* h4 в оригіналі: font-size:24px; line-height:34px (wd-fontsize-l) */
.slide-content h2 {
    font-size: 24px;
    line-height: 34px;
    font-weight: 700;
    color: var(--bp-ink);
    margin: 0;
}

.slide-content p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--bp-text);
    margin: 0;
}

.slide-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border: 1px solid var(--bp-ink);
    border-radius: 35px;
    color: var(--bp-ink);
    font-size: 15px;
    font-weight: 400;
    transition: background 0.2s ease, color 0.2s ease;
    width: fit-content;
}

.slide-btn:hover {
    background: var(--bp-ink);
    color: #fff;
}

.slide-btn svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    flex-shrink: 0;
}

/* Стрілки — по боках слайдера, вертикально по центру */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border: 1px solid var(--bp-line);
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    z-index: 2;
}

.slider-arrow:hover {
    border-color: var(--bp-ink);
    box-shadow: 0 2px 12px rgba(18,45,76,0.12);
}

.slider-arrow svg {
    width: 18px;
    height: 18px;
    stroke: var(--bp-ink);
    fill: none;
    stroke-width: 2;
}

.slider-prev {
    left: -23px;
}

.slider-next {
    right: -23px;
}

/* Крапки — горизонтально по центру під слайдом */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--bp-line);
    border: none;
    cursor: pointer;
    transition: background 0.2s ease, width 0.2s ease;
    padding: 0;
}

.slider-dot.active {
    background: var(--bp-ink);
    width: 24px;
    border-radius: 4px;
}

/* Feature grid (kept for compatibility) */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.feature-card {
    display: grid;
    gap: 20px;
    overflow: hidden;
    border-radius: var(--bp-radius);
    background: var(--bp-white);
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

.feature-card > img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    border-radius: var(--bp-radius) var(--bp-radius) 0 0;
}

.feature-card > div {
    display: grid;
    gap: 14px;
    align-content: start;
    padding: 0 24px 24px;
}

.feature-card h2 {
    font-size: 20px;
    color: #242424;
}

.feature-card a,
.process-card a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border: 1px solid var(--bp-ink);
    border-radius: 35px;
    color: var(--bp-ink);
    font-size: 14px;
    text-transform: lowercase;
    transition: background 0.2s ease, color 0.2s ease;
    width: fit-content;
}

.feature-card a:hover,
.process-card a:hover {
    background: var(--bp-ink);
    color: #fff;
}

.dark-section {
    color: rgba(255,255,255,0.85);
    background: var(--bp-dark);
}

.light-heading h2,
.dark-section h2,
.dark-section h3,
.dark-section h4 {
    color: var(--bp-white);
}

.process-section {
    overflow: hidden;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.process-card {
    display: grid;
    gap: 14px;
    align-content: start;
    border-radius: var(--bp-radius);
    background: var(--bp-white);
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    overflow: hidden;
}

.process-card img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
}

.process-card-body {
    display: grid;
    gap: 10px;
    padding: 0 20px 24px;
}

.process-card h3 {
    font-size: 18px;
    color: #242424;
}

.process-card p {
    font-size: 14px;
    color: var(--bp-text);
    line-height: 1.5;
}

.quality-band {
    padding: 200px 16px;
    color: var(--bp-white);
    background-image: url(/wp-content/uploads/quality-band-bg.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.quality-band .eyebrow {
    color: var(--bp-white);
    font-size: 13px;
}

.quality-band .site-shell {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    justify-items: center;
    text-align: center;
}

.quality-title {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
    color: var(--bp-white);
    line-height: 1.15;
    margin: 0;
}

.quality-sub {
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 400;
    color: var(--bp-white);
    margin: -8px 0 8px;
    opacity: 0.9;
}

.button-white {
    color: var(--bp-ink);
    background: var(--bp-white);
    border: 1px solid var(--bp-white);
}

.button-white:hover {
    background: transparent;
    color: var(--bp-white);
}

.quality-grid,
.youtube-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    justify-items: center;
    text-align: center;
}

.center-action {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.muted-section {
    background: var(--bp-muted);
}

.white-section {
    background: var(--bp-white);
}

.section-heading {
    display: grid;
    gap: 12px;
    margin-top: 50px;
    margin-bottom: 50px;
}

.section-heading h2 {
    color: #242424;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

/* ADVANTAGES SECTION — 2-col: video left + grid right */
.advantages-section {
    padding: 80px 0;
}

.advantages-outer {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 60px;
    align-items: start;
}

.advantages-video-col video.advantages-video {
    width: 100%;
    display: block;
    border-radius: 12px;
}

.advantages-heading {
    font-size: 48px;
    font-weight: 700;
    color: #242424;
    margin: 0 0 36px;
    line-height: 1.1;
}

.advantages-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px 40px;
}

.feat-item {}

.feat-title {
    margin: 0 0 10px;
    font-size: 17px;
    font-weight: 700;
    color: #242424;
    line-height: 1.3;
}

.advantages-content-col {
    color: #2d2d2d;
}

.advantages-grid .feat-item .feat-text {
    margin: 0;
    padding: 0 0 0 16px;
    border-left: 2px solid var(--bp-line);
    font-size: 15px;
    color: #2d2d2d !important;
    line-height: 1.65;
    display: block !important;
    font-style: normal;
    visibility: visible !important;
    opacity: 1 !important;
}

/* ADV CTA BAND */
.cta-band {
    position: relative;
    padding: 300px 0;
    margin: 50px 0;
    text-align: left;
    background-image: url('/wp-content/uploads/2024/08/banner02.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.cta-band::before {
    display: none;
}

.cta-inner {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.cta-heading {
    margin: 0;
    font-size: 40px;
    font-weight: 800;
    color: #000;
    line-height: 1.25;
}

.cta-sub {
    margin: 0;
    font-size: 24px;
    font-weight: 500;
    color: #000;
    line-height: 1.45;
}

.cta-btn {
    display: inline-block;
    margin-top: 12px;
    padding: 16px 44px;
    background: var(--bp-blue);
    color: var(--bp-white);
    border-radius: 35px;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
}

.cta-btn:hover {
    background: var(--bp-slate);
}

.partners-section {
    overflow: hidden;
}

.logos-marquee {
    width: 100%;
    overflow: hidden;
}

.logos-track {
    width: max-content;
    display: flex;
    gap: 30px;
    padding: 30px 0;
    animation: bp-marquee 32s linear infinite;
}

.logos-track span {
    width: 160px;
    height: 70px;
    display: grid;
    place-items: center;
    padding: 10px;
}

.logos-track img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    opacity: 0.9;
    transition: opacity 0.2s ease, filter 0.2s ease;
    filter: drop-shadow(0 0 4px rgba(255,255,255,0.7)) brightness(1.15);
}

.logos-track span:hover img {
    opacity: 1;
    filter: drop-shadow(0 0 5px rgba(255,255,255,0.9)) brightness(1.35);
}

@keyframes bp-marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* YOUTUBE SECTION */
.youtube-section {
    margin: 100px 0;
    padding: 0;
    background: transparent;
}

.youtube-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 0;
    align-items: start;
    justify-items: stretch;
}

.youtube-embed-col {
    width: 100%;
}

.youtube-video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--bp-radius);
}

.youtube-poster {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 3;
    cursor: pointer;
    transition: opacity 0.5s cubic-bezier(0, 0, 0.44, 1.18), transform 0.5s cubic-bezier(0, 0, 0.44, 1.18);
}

.youtube-poster::after {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.15);
    transition: background-color 0.5s cubic-bezier(0, 0, 0.44, 1.18);
}

.youtube-poster.is-hidden {
    opacity: 0;
    pointer-events: none;
}

.youtube-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 4;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: min(4px, 2px) solid rgba(255,255,255,0.4);
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: opacity 0.5s cubic-bezier(0, 0, 0.44, 1.18), border-color 0.5s cubic-bezier(0, 0, 0.44, 1.18);
}

.youtube-play-btn.is-hidden {
    opacity: 0;
}

.youtube-play-btn::after {
    content: '';
    display: block;
    width: 48px;
    height: 48px;
    margin-left: 0;
    background-color: currentColor;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'%3E%3Cpath fill='black' d='M16 10.5v27L36 24z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'%3E%3Cpath fill='black' d='M16 10.5v27L36 24z'/%3E%3C/svg%3E");
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
    transition: transform 0.5s cubic-bezier(0, 0, 0.44, 1.18);
}

.js-poster-video:hover .youtube-play-btn {
    border-color: rgba(255,255,255,0.6);
}

.js-poster-video:hover .youtube-play-btn::after {
    transform: scale(0.8);
}

.js-poster-video:hover .youtube-poster {
    transform: scale(1.09);
}

.js-poster-video:hover .youtube-poster::after {
    background-color: rgba(0, 0, 0, 0.3);
}

.youtube-embed {
    position: absolute;
    inset: 0;
    overflow: hidden;
    border-radius: 0;
}

.youtube-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.youtube-text-col {
    margin-top: 70px;
    margin-left: -240px;
    position: relative;
    z-index: 5;
    text-align: left;
}

.youtube-heading {
    position: relative;
    margin: 0;
    font-size: 35px;
    font-weight: 700;
    line-height: 1.2857;
    height: 90px;
}

.youtube-heading__part {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
}

.youtube-heading__part--white {
    color: #fff;
    clip-path: inset(0 calc(100% - 240px) 0 0);
    pointer-events: none;
}

.youtube-heading__part--dark {
    color: #000;
    clip-path: inset(0 0 0 240px);
}

.youtube-link {
    display: block;
    text-align: right;
    margin: 22px 30px 0 0;
    padding-left: 245px;
}

.youtube-link img {
    width: 81px;
    height: 40px;
}

.youtube-sub {
    margin: 50px 0 0;
    padding-left: 245px;
    font-size: 24px;
    font-weight: 500;
    color: #000;
    line-height: 1.4167;
}

.youtube-cta-grid {
    display: none;
}

.attributes-box,
.contact-list,
.contact-form {
    border: 1px solid var(--bp-line);
    border-radius: var(--bp-radius);
    background: var(--bp-white);
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
}

.benefit-card {
    min-height: 174px;
    display: grid;
    align-content: space-between;
    padding: 22px;
    border: 1px solid var(--bp-line);
    border-radius: var(--bp-radius);
    background: var(--bp-white);
}

.benefit-card span {
    color: var(--bp-gold);
    font-weight: 900;
}

.page-hero {
    padding: 80px 0;
    background: var(--bp-muted);
}

.compact-hero {
    padding: 56px 0;
}

.page-hero-grid {
    display: grid;
    grid-template-columns: 1fr 0.75fr;
    gap: 42px;
    align-items: center;
}

.page-hero-grid > div {
    display: grid;
    gap: 18px;
}

.page-hero-grid img {
    aspect-ratio: 4 / 3;
    width: 100%;
    object-fit: cover;
    border-radius: var(--bp-radius);
}

.content-narrow {
    max-width: 880px;
}

.entry-content > * + * {
    margin-top: 18px;
}

.shop-layout {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 32px;
    align-items: start;
}

.shop-content {
    min-width: 0;
}

.shop-section {
    padding-top: 36px;
    padding-bottom: 60px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.shop-sidebar {
    position: sticky;
    top: 106px;
    display: grid;
    gap: 22px;
}

.shop-sidebar h2 {
    font-size: 13px;
    font-weight: 400;
    color: var(--bp-text);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.shop-sidebar h3 {
    margin-bottom: 12px;
    font-size: 18px;
    font-weight: 700;
}

.shop-sidebar ul {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.shop-sidebar a {
    color: var(--bp-text);
}

.shop-sidebar a:hover,
.clear-filter {
    color: var(--bp-ink);
}

.filter-group {
    padding-bottom: 22px;
    border-bottom: 1px solid var(--bp-line);
}

/* Active filters bar */
.active-filters-bar {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.active-filters-bar--top {
    margin-bottom: 24px;
}

.active-filters-clear {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--bp-text);
    text-decoration: none;
    cursor: pointer;
}

.active-filters-clear:hover {
    color: var(--bp-ink);
}

.active-filters-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.shop-mobile-toolbar,
.shop-sidebar-close,
.shop-sidebar-overlay {
    display: none;
}

.active-filter-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 10px 5px 12px;
    background: #edf1f5;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    color: var(--bp-text);
    line-height: 1.3;
}

.active-filter-tag__remove {
    display: inline-flex;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #e07070;
    flex-shrink: 0;
    text-decoration: none;
    transition: background 0.15s;
}

.active-filter-tag__remove:hover {
    background: #c0392b;
}

.shop-toolbar {
    display: flex;
    gap: 16px;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.shop-toolbar select {
    min-height: 42px;
    padding: 0 12px;
    border: 1px solid var(--bp-line);
    border-radius: var(--bp-radius);
    background: var(--bp-white);
}

/* ========== PRODUCT CAROUSEL ========== */
.bp-carousel-wrap {
    position: relative;
    padding: 0 46px;
}

.bp-carousel {
    overflow: hidden;
}

.bp-carousel-nav {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: calc(100% - 64px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    pointer-events: none;
}

.bp-carousel-track {
    display: flex;
    gap: 20px;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.bp-product-item {
    flex: 0 0 calc(25% - 15px);
    min-width: 0;
}

/* Navigation arrows */
.bp-arr {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--bp-line);
    background: var(--bp-white);
    color: var(--bp-ink);
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
    pointer-events: auto;
    flex-shrink: 0;
}

.bp-arr:hover {
    background: var(--bp-ink);
    border-color: var(--bp-ink);
    color: var(--bp-white);
}

.bp-arr:disabled {
    opacity: 0.35;
    pointer-events: none;
}

/* Product card — clean, no border, no shadow, no price, no hover button */
.bp-product-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.bp-product-img {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 10px;
}

.product-grid .bp-product-img {
    background: var(--bp-muted);
}

.bp-product-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.bp-product-name {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 4px;
    margin: 10px 0 0;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.35;
    color: #242424;
}

.bp-product-title {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    white-space: normal;
}

.bp-product-arrow {
    display: inline-flex;
    flex-shrink: 0;
    opacity: 0.65;
    line-height: 1;
}

/* ====== Product swatches ====== */
.bp-product-swatches {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 10px 0 6px;
    flex-wrap: nowrap;
}

.bp-swatch {
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    flex-shrink: 0;
}

.bp-swatch--bordered {
    border: 1.5px solid #d0d0d0;
}

.bp-swatch--active {
    outline: 2px solid #242424;
    outline-offset: 2px;
}

.bp-swatch--hidden {
    display: none;
}

.bp-product-swatches.is-expanded .bp-swatch--hidden {
    display: inline-block;
}

.bp-product-swatches.is-expanded {
    flex-wrap: wrap;
    align-items: flex-start;
    row-gap: 8px;
}

.bp-product-swatches.is-expanded .bp-swatches-more {
    display: none;
}

.bp-swatches-more {
    font-size: 13px;
    font-weight: 500;
    color: #424242;
    white-space: nowrap;
    cursor: pointer;
    user-select: none;
}


/* Catalog button — same style as original */
.btn-catalog {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 30px;
    border: 1px solid var(--bp-ink);
    border-radius: 35px;
    color: var(--bp-ink);
    background: transparent;
    font-size: 17px;
    font-weight: 400;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.btn-catalog:hover {
    background: var(--bp-ink);
    color: var(--bp-white);
}

.btn-catalog:hover .btn-catalog-icon img {
    filter: invert(1);
}

.btn-catalog-icon {
    display: flex;
    align-items: center;
}

.catalog-pagination {
    margin-top: 42px;
}

.latest-products-block {
    margin-top: 62px;
}

.latest-products-title {
    margin: 0 0 28px;
    font-size: clamp(34px, 3.1vw, 46px);
    line-height: 1.08;
    font-weight: 700;
    color: #242424;
    letter-spacing: -0.01em;
}

.latest-products-grid {
    margin-top: 0;
}

.catalog-pagination .nav-links {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.catalog-pagination {
    text-align: center;
}

.catalog-pagination a,
.catalog-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 37px;
    height: 37px;
    border: 0;
    border-radius: 50%;
    padding: 5px;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.6;
    color: #242424;
    background: transparent;
}

.catalog-pagination .current {
    color: #000;
    background: #b3c1cf;
}

.catalog-pagination a:hover {
    background: #e8eef4;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 30px;
    align-items: start;
}

.product-gallery {
    display: grid;
    gap: 14px;
}

.product-gallery-main {
    margin: 0;
    display: grid;
    place-items: center;
    position: relative;
    aspect-ratio: 1.08 / 1;
    overflow: hidden;
    border-radius: var(--bp-radius);
    background: #f7faf9;
    cursor: pointer;
}

.product-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    cursor: pointer;
}

.product-gallery-thumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.product-gallery-thumb {
    border: 1px solid #d6dde3;
    border-radius: 10px;
    background: #fff;
    padding: 6px;
    width: 84px;
    height: 84px;
    cursor: pointer;
}

.product-gallery-thumb.is-active {
    border-color: #1f3a65;
}

.product-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.product-gallery-thumb-360 {
    position: relative;
    overflow: hidden;
    color: #0f223f;
    position: relative;
    background: #f5f7fa;
}

.product-gallery-thumb-360:hover {
    border-color: #1f3a65;
}

.product-gallery-thumb-360::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.46);
}

.product-gallery-thumb-360 img {
    object-fit: cover;
    opacity: 0.75;
}

.product-gallery-360-icon {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    border: 2px solid #141414;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    line-height: 1;
    font-weight: 700;
    color: #141414;
    z-index: 1;
}

.product-gallery-360-icon::after {
    content: "\21BB";
    position: absolute;
    left: 50%;
    top: calc(100% - 8px);
    transform: translateX(-50%);
    font-size: 14px;
    line-height: 1;
}

body.product-360-open {
    overflow: hidden;
}

.product-360-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
}

.product-360-modal.is-open {
    display: block;
}

.product-360-modal-backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    width: 100%;
    background: transparent;
    cursor: pointer;
}

.product-360-modal-dialog {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    max-width: calc(100vw - 28px);
    max-height: calc(100vh - 28px);
    border-radius: 20px;
    background: #fff;
    padding: 12px;
    box-shadow: 0 22px 50px rgba(15, 25, 40, 0.2);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-360-modal-body {
    max-height: calc(100vh - 52px);
    overflow: hidden;
}

.product-360-viewer {
    position: relative;
    width: auto;
    min-height: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    overflow: hidden;
    background: transparent;
    cursor: grab;
    user-select: none;
    touch-action: pan-y;
}

.product-360-viewer:active {
    cursor: grabbing;
}

.product-360-frame {
    width: auto;
    height: auto;
    max-width: min(calc(100vw - 70px), 900px);
    max-height: calc(100vh - 96px);
    object-fit: contain;
    object-position: center center;
    display: block;
    background: transparent;
}

.product-360-controls {
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    z-index: 3;
    border: 1px solid #e5e8ee;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 14px rgba(15, 25, 40, 0.12);
}

.product-360-control {
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    color: #2b3a4d;
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
}

.product-360-control + .product-360-control {
    border-left: 1px solid #edf1f6;
}

.product-360-control:hover {
    background: #f6f8fb;
}

.product-360-modal-body .product-video-frame {
    border-radius: 10px;
    background: #000;
}

.product-summary {
    display: grid;
    gap: 16px;
}

.catalog-breadcrumb {
    color: #64748b;
    font-size: 14px;
}

.catalog-breadcrumb--top {
    margin: 0 0 22px;
}

.product-summary h1 {
    margin: 0;
    font-family: Gilroy, Arial, Helvetica, sans-serif;
    font-size: 40px;
    line-height: 48px;
    font-weight: 700;
    margin-bottom: 28px;
}

.product-volume {
    margin: 0;
    color: #3a4e69;
    font-size: 17px;
    font-weight: 600;
}

.single-product-swatches {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: -8px 0 20px;
    gap: 7px;
}

.single-product-swatches .bp-swatch {
    width: 35px;
    height: 35px;
}

.product-tabs-wrap {
    display: grid;
    gap: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.product-tabs-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    border-bottom: 1px solid #dde4ea;
    background: transparent;
    padding-bottom: 8px;
}

.product-tab-btn {
    min-height: auto;
    padding: 0;
    border: 0;
    background: transparent;
    font-family: Gilroy, Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    text-transform: none;
    color: #1e2f45;
    cursor: pointer;
    position: relative;
}

.product-tab-btn.is-active {
    color: #0f223f;
}

.product-tab-btn.is-active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -9px;
    height: 2px;
    background: #12284a;
}

.product-tab-panel {
    padding: 18px 0 0;
}

.brandplast-caps-block {
    margin-bottom: 28px;
}

.brandplast-caps-title {
    margin: 0 0 12px;
}

.brandplast-caps-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(110px, 110px));
    gap: 12px;
    align-items: start;
}

.brandplast-caps-gallery__item {
    display: block;
    width: 110px;
    height: 110px;
    overflow: hidden;
    border-radius: 12px;
    background: #f5f7fb;
    box-shadow: inset 0 0 0 1px rgba(18, 40, 74, 0.08);
}

.brandplast-caps-gallery__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.product-tab-table {
    width: 100%;
    border-collapse: collapse;
}

.product-tab-table th,
.product-tab-table td {
    padding: 11px 0;
    border-bottom: 1px solid #eef2f6;
    text-align: left;
    vertical-align: top;
    font-size: 15px;
}

.product-tab-table th {
    width: 38%;
    color: #1d2f49;
    font-weight: 700;
}

.catalog-seo-content {
    margin-top: 56px;
    display: grid;
    gap: 14px;
}

.catalog-seo-content h2 {
    margin: 0 0 6px;
    font-size: clamp(28px, 2.6vw, 40px);
    line-height: 1.18;
    color: #1d3146;
}

.catalog-seo-content p {
    margin: 0;
    font-size: 16px;
    line-height: 1.72;
    color: #334155;
}

.catalog-seo-content table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    margin: 0;
}

.catalog-seo-content th,
.catalog-seo-content td {
    padding: 15px 12px;
    font-size: 16px;
    line-height: 1.4;
    color: #2d2d2d;
    vertical-align: middle;
    border-bottom: 1px solid rgba(0, 0, 0, 0.11);
}

.catalog-seo-content th {
    font-weight: 700;
    text-align: left;
    color: #242424;
}

.product-tab-table td {
    color: #2f3a47;
}

.product-video-wrap {
    margin-top: 14px;
}

.product-3d-preview-card {
    display: grid;
    max-width: 560px;
}

.product-3d-preview-link {
    position: relative;
    display: block;
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
}

.product-3d-preview-link img {
    width: 100%;
    height: auto;
    display: block;
}

.product-3d-preview-fallback {
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1f314d;
    font-size: 22px;
    font-weight: 700;
}

.product-3d-preview-btn {
    position: absolute;
    right: 16px;
    bottom: 16px;
    padding: 11px 18px;
    border-radius: 999px;
    border: 1px solid #12284a;
    background: #fff;
    color: #12284a;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    transition: all .2s ease;
}

.product-3d-preview-link:hover .product-3d-preview-btn {
    background: #12284a;
    color: #fff;
}

.latest-products-title--product {
    font-size: clamp(30px, 3vw, 42px);
    margin-bottom: 24px;
}

.product-extra-content {
    display: grid;
    gap: 22px;
}

.product-extra-block {
    padding: 24px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid #e3e7ec;
}

.product-extra-block h2 {
    margin: 0 0 14px;
    font-size: 26px;
    line-height: 1.2;
}

.attributes-box {
    padding: 24px;
}

.attributes-box h2 {
    margin-bottom: 18px;
    font-size: 24px;
}

.attributes-box dl {
    display: grid;
    gap: 12px;
    margin: 0;
}

.attributes-box dl div {
    display: grid;
    grid-template-columns: 0.8fr 1fr;
    gap: 16px;
    padding-top: 12px;
    border-top: 1px solid var(--bp-line);
}

.attributes-box dt {
    color: var(--bp-ink);
    font-weight: 800;
}

.attributes-box dd {
    margin: 0;
}

.product-video-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
}

.product-video-frame iframe,
.product-video-frame video {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.contacts-grid {
    display: grid;
    grid-template-columns: 0.8fr 1fr;
    gap: 28px;
}

.contact-list,
.contact-form {
    padding: 26px;
}

.contact-list {
    display: grid;
    gap: 26px;
}

.contact-list div {
    display: grid;
    gap: 6px;
}

.contact-list span {
    color: var(--bp-slate);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.contact-list a {
    color: var(--bp-ink);
    font-size: 19px;
    font-weight: 700;
}

.contact-form form {
    display: grid;
    gap: 14px;
}

.contact-form label {
    display: grid;
    gap: 6px;
    color: var(--bp-ink);
    font-weight: 700;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    border: 1px solid var(--bp-line);
    border-radius: var(--bp-radius);
    font: inherit;
}

.contact-form textarea {
    min-height: 138px;
}

.contact-form button {
    width: auto;
    min-width: 180px;
    cursor: pointer;
}

.form-notice {
    margin-bottom: 16px;
    padding: 12px 14px;
    border-radius: var(--bp-radius);
    font-weight: 700;
}

.contacts-hero {
    padding-top: 12px;
    padding-bottom: 0;
}

.contacts-hero-banner {
    position: relative;
    min-height: 0;
    overflow: hidden;
    border-radius: var(--bp-radius);
    background: #e9eef2;
}

.contacts-hero-banner__media {
    position: relative;
}

.contacts-hero-banner__media img {
    width: 100%;
    height: auto;
    object-fit: initial;
    display: block;
}

.contacts-hero-banner__content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 30px;
    color: #fff;
}

.contacts-hero-banner__content h1 {
    margin: 0;
    color: #fff;
    font-size: 27px;
    line-height: 35px;
    font-weight: 800;
    font-family: Gilroy, Arial, Helvetica, sans-serif;
    max-width: 680px;
}

.contacts-hero-banner__content p {
    margin: 14px 0 0;
    font-size: 16px;
    line-height: 25.6px;
    font-weight: 400;
    color: #fff;
}

@media (min-width: 1440px) {
    .contacts-hero-banner__content h1 {
        font-size: 40px;
        line-height: 55px;
    }
}

.contacts-intro {
    width: calc(100% + 32px);
    margin: 30px -16px 20px;
    padding: 17.5px 16px;
    box-sizing: border-box;
}

.contacts-intro p {
    margin: 0;
    color: var(--bp-text);
    font-size: 16px;
    line-height: 25.6px;
    font-weight: 400;
}

.contacts-intro a {
    color: var(--bp-ink);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.contacts-info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 60px;
    row-gap: 32px;
}

.contacts-main-grid {
    width: calc(100% + 32px);
    margin: 0 -16px;
    padding: 0;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: minmax(0, 8fr) minmax(0, 4fr);
    gap: 0;
    align-items: stretch;
}

.contacts-main-left {
    display: grid;
    gap: 56px;
}

.contacts-info-card {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.contacts-info-card__icon img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    display: block;
}

.contacts-info-card__body h2 {
    margin: 0 0 8px;
    font-size: 18px;
    line-height: 23.4px;
    font-weight: 700;
    color: #12264b;
}

.contacts-info-card__body p {
    margin: 0;
    color: #000;
    font-size: 16px;
    line-height: 25px;
}

.contacts-info-card__body a {
    color: inherit;
    font-weight: 400;
    text-decoration: none;
}

.contacts-info-card__body a:hover {
    text-decoration: underline;
    text-underline-offset: 2px;
}

.contacts-form-panel,
.contacts-map-panel {
    border-radius: 18px;
    overflow: hidden;
}

.contacts-form-panel {
    width: 66.6667%;
    padding: 0;
    padding-bottom: 46.4px;
    background: transparent;
    color: #12264b;
}

.contacts-form-panel h2 {
    margin: 0;
    font-size: 22px;
    line-height: 30.8px;
    color: #12264b;
}

.contacts-form-panel p {
    margin: 10px 0 18px;
    color: #2d2d2d;
    line-height: 22.4px;
    font-size: 14px;
}

.contacts-form {
    display: grid;
    gap: 12px;
}

.contacts-form input,
.contacts-form textarea {
    width: 100%;
    border: 1px solid #d6dde3;
    border-radius: 10px;
    background: #fff;
    color: #12264b;
    padding: 14px 16px;
    font: inherit;
}

.contacts-form input::placeholder,
.contacts-form textarea::placeholder {
    color: #7f8a94;
}

.contacts-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contacts-form .button-dark {
    width: fit-content;
    margin-top: 4px;
    background: #12264b;
    border-color: #12264b;
    color: #fff;
}

.contacts-form .button-dark:hover {
    background: #0a1a35;
    color: #fff;
    border-color: #0a1a35;
}

.contacts-map-wrap {
    height: 100%;
    min-height: 0;
    background: #e8eef3;
}

.contacts-map-panel {
    margin-top: 275.8px;
    height: 520.4px;
    align-self: start;
}

.contacts-map-panel,
.contacts-map-wrap {
    height: 520.4px;
}

.contacts-map-wrap iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

@media (max-width: 1023px) {
    .contacts-hero-banner__content {
        padding: 0 32px;
    }

    .contacts-hero-banner,
    .contacts-intro,
    .contacts-main-grid,
    .contacts-main-left,
    .contacts-form-panel,
    .contacts-map-panel {
        width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .contacts-intro,
    .contacts-main-grid {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .contacts-main-grid {
        grid-template-columns: 1fr !important;
        align-items: start;
    }

    .contacts-main-left {
        gap: 24px;
    }

    .contacts-form-panel {
        padding-bottom: 0;
    }

    .contacts-map-wrap {
        min-height: 320px;
    }

    .contacts-map-wrap iframe {
        height: 320px;
    }

    .contacts-map-panel {
        height: 320px;
    }
}

@media (max-width: 767px) {
    .contacts-hero {
        padding-top: 4px !important;
    }

    .contacts-hero-banner {
        min-height: 220px;
        height: 220px;
        width: 100% !important;
    }

    .contacts-hero-banner__media {
        position: absolute;
        inset: 0;
    }

    .contacts-hero-banner__media img {
        height: 100%;
        width: 100%;
        object-fit: cover;
        object-position: center;
    }

    .contacts-hero-banner__content {
        inset: 0;
        justify-content: flex-start;
        padding: 18px 18px 16px;
        background: linear-gradient(90deg, rgba(18, 38, 75, 0.58) 0%, rgba(18, 38, 75, 0.34) 48%, rgba(18, 38, 75, 0.12) 100%);
    }

    .contacts-hero-banner__content h1 {
        font-size: 28px;
        line-height: 36px;
        max-width: 100%;
    }

    .contacts-hero-banner__content p {
        font-size: 16px;
        line-height: 22px;
        margin-top: 12px;
    }

    .contacts-intro {
        margin: 18px 0 20px;
        padding: 0 !important;
        width: 100% !important;
    }

    .contacts-intro p {
        font-size: 15px;
        line-height: 1.6;
    }

    .contacts-info-grid {
        grid-template-columns: 1fr !important;
        column-gap: 0;
        row-gap: 18px;
        width: 100% !important;
    }

    .contacts-info-card {
        padding: 18px;
        grid-template-columns: 52px minmax(0, 1fr);
    }

    .contacts-info-card__icon img {
        width: 52px;
        height: 52px;
    }

    .contacts-info-card__body h2 {
        font-size: 17px;
    }

    .contacts-info-card__body p {
        font-size: 15px;
    }

    .contacts-form-panel {
        width: 100% !important;
        padding: 0 !important;
    }

    .contacts-form {
        gap: 10px;
    }

    .contacts-form-panel h2 {
        font-size: 24px;
    }

    .contacts-map-panel {
        margin-top: 0 !important;
        height: auto;
        width: 100% !important;
    }

    .contacts-map-wrap {
        min-height: 260px;
        width: 100% !important;
    }

    .contacts-map-wrap iframe {
        height: 260px;
    }

    .contacts-map-panel {
        height: 260px;
    }
}

.form-notice.success {
    color: #14532d;
    background: #dcfce7;
}

.form-notice.error {
    color: #7f1d1d;
    background: #fee2e2;
}

.site-footer {
    color: rgba(255,255,255,0.75);
    background: var(--bp-dark);
}

/* Pre-footer: contacts + nav + map */
.prefooter {
    padding: 80px 0 60px;
}

.prefooter-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1.4fr;
    gap: 50px;
    align-items: start;
}

.prefooter-contacts {
    display: grid;
    gap: 14px;
}

.prefooter-phones {
    display: grid;
    gap: 6px;
}

.prefooter-phones a {
    display: block;
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.3;
}

.prefooter-phones a:hover {
    color: var(--bp-gold);
}

.prefooter-email {
    display: block;
    color: rgba(255,255,255,0.7);
    font-size: 15px;
}

.prefooter-email:hover {
    color: #fff;
}

.prefooter-social {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 6px;
}

.prefooter-social a {
    display: inline-flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    color: rgba(255,255,255,0.7);
    transition: border-color 0.2s ease, color 0.2s ease;
}

.prefooter-social a:hover {
    border-color: var(--bp-gold);
    color: var(--bp-gold);
}

.prefooter-nav-col {
    display: grid;
    gap: 20px;
    align-content: start;
}

.prefooter-nav {
    display: grid;
    gap: 8px;
}

.prefooter-nav a {
    display: block;
    color: rgba(255,255,255,0.75);
    font-size: 15px;
    line-height: 1.4;
}

.prefooter-nav a:hover {
    color: #fff;
}

/* Contact form 7 in footer */
.prefooter-nav-col .wpcf7 .row-subscribe {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}

.prefooter-nav-col .wpcf7 input[type="email"] {
    min-height: 42px;
    padding: 8px 14px;
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 35px;
    background: rgba(255,255,255,0.08);
    color: #fff;
    font-size: 14px;
    outline: none;
    flex: 1;
}

.prefooter-nav-col .wpcf7 input[type="email"]::placeholder {
    color: rgba(255,255,255,0.4);
}

.prefooter-nav-col .wpcf7 input[type="submit"] {
    min-height: 42px;
    padding: 0 20px;
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 35px;
    background: transparent;
    color: rgba(255,255,255,0.85);
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.prefooter-nav-col .wpcf7 input[type="submit"]:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.7);
}

.prefooter-nav-col .wpcf7 br {
    display: none;
}

.prefooter-nav-col .wpcf7 p {
    margin: 0;
    max-width: none;
}

.prefooter-map iframe {
    width: 100%;
    border-radius: 8px;
    border: none;
    display: block;
}

.site-footer a {
    color: rgba(255,255,255,0.8);
}

.site-footer a:hover {
    color: #ffffff;
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.4);
    font-size: 13px;
}

.brandplast-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
}

.brandplast-modal.is-open {
    display: block;
}

.brandplast-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.brandplast-modal-panel {
    position: relative;
    width: min(calc(100% - 32px), 420px);
    display: grid;
    gap: 12px;
    margin: 8vh auto 0;
    padding: 28px;
    border-radius: var(--bp-radius);
    background: var(--bp-white);
    box-shadow: var(--bp-shadow);
}

.brandplast-modal-panel:not(.brandplast-contact-modal-panel) a {
    color: var(--bp-ink);
    font-weight: 700;
    font-size: 18px;
    display: block;
    padding: 8px 0;
}

.brandplast-modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 999px;
    background: var(--bp-muted);
    color: var(--bp-ink);
    font-size: 24px;
    cursor: pointer;
}

.brandplast-search-modal-panel {
    width: min(calc(100% - 32px), 620px);
    margin-top: 10vh;
    padding: 22px;
    border-radius: 14px;
}

.brandplast-search-modal-title {
    margin: 0 0 14px;
    font-size: 28px;
    line-height: 1.1;
    color: #243f58;
}

.brandplast-search-form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    align-items: center;
}

.brandplast-search-input {
    width: 100%;
    height: 48px;
    border: 1px solid #d7dce3;
    border-radius: 28px;
    padding: 0 18px;
    font-size: 16px;
    color: #1b2f46;
    outline: none;
}

.brandplast-search-input:focus {
    border-color: #243f58;
}

.brandplast-search-submit {
    height: 48px;
    padding: 0 24px;
    border: 1px solid #243f58;
    border-radius: 28px;
    background: #243f58;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

.brandplast-search-submit:hover {
    background: #1d3247;
    border-color: #1d3247;
}

.brandplast-contact-modal-panel {
    max-width: 420px;
    margin: 6vh auto 0;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    padding: 20px;
    gap: 0;
}

.brandplast-contact-modal-title {
    margin: 0 0 20px;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    color: #2d2d2d;
}

.brandplast-contact-modal-close {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #f5f5f5;
    color: #2d2d2d;
    font-size: 18px;
    line-height: 1;
}

.brandplast-contact-modal-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.brandplast-contact-modal-panel .brandplast-contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.2;
    padding: 6px 0;
}

.brandplast-contact-modal-panel .brandplast-contact-link:hover {
    color: #1a1a1a;
}

.brandplast-contact-link-icon-wrap {
    width: 45px;
    height: 45px;
    flex: 0 0 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brandplast-contact-link-icon-wrap svg,
.brandplast-contact-link-icon-wrap img {
    width: 28px;
    height: 28px;
    display: block;
    object-fit: contain;
    object-position: center;
    filter: brightness(0) saturate(100%) invert(17%) sepia(14%) saturate(2000%) hue-rotate(165deg) brightness(90%) contrast(85%);
    fill: currentColor;
    color: #243f58;
}

.brandplast-contact-modal-panel .brandplast-contact-link > span:last-child {
    display: inline-block;
    transform: translateY(1px);
}

.brandplast-contact-link-icon-wrap--whatsapp {
    background: #243f58;
    border-radius: 50%;
}

.brandplast-contact-link-icon-wrap--whatsapp svg {
    width: 20px;
    height: 20px;
    fill: #fff;
    color: #fff;
    filter: none;
}

.brandplast-image-modal-panel {
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brandplast-image-modal-counter {
    position: absolute;
    top: 6px;
    left: 8px;
    z-index: 2;
    font-size: 22px;
    font-weight: 600;
    line-height: 1;
    color: #fff;
    background: transparent;
}

.brandplast-image-modal-nav {
    position: absolute;
    inset: 50% 0 auto;
    transform: translateY(-50%);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.brandplast-image-modal:hover .brandplast-image-modal-nav {
    opacity: 1;
}

.brandplast-image-modal-nav-btn {
    width: 56px;
    height: 56px;
    border: 0;
    border-radius: 999px;
    font-size: 52px;
    line-height: 1;
    color: #fff;
    background: transparent;
    cursor: pointer;
    pointer-events: auto;
    opacity: 0.82;
    transition: opacity 0.2s ease;
}

.brandplast-image-modal-nav-btn:hover {
    opacity: 1;
}

.brandplast-image-modal-img {
    display: block;
    width: auto;
    max-width: 100vw;
    max-height: 100vh;
    object-fit: contain;
    border-radius: 0;
    background: transparent;
}

.brandplast-image-modal .brandplast-modal-backdrop {
    background: rgba(0, 0, 0, 0.97);
}

.brandplast-image-modal .brandplast-modal-close {
    top: 4px;
    right: 6px;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    color: #fff;
    background: transparent;
    font-size: 40px;
    line-height: 1;
    opacity: 0.88;
}

.brandplast-image-modal .brandplast-modal-close:hover {
    opacity: 1;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    [data-reveal] {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 767px) {
    .header-search-btn {
        width: 36px;
        height: 36px;
    }

    .brandplast-search-modal-panel {
        margin-top: 6vh;
        padding: 18px;
    }

    .brandplast-search-modal-title {
        font-size: 22px;
    }

    .brandplast-search-form {
        grid-template-columns: 1fr;
    }

    .brandplast-search-submit {
        width: 100%;
    }

    .brandplast-contact-modal-panel {
        width: min(calc(100% - 24px), 420px);
        margin-top: 4vh;
        padding: 18px;
    }

    .brandplast-contact-modal-title {
        font-size: 22px;
    }

    .brandplast-contact-link {
        font-size: 16px;
        gap: 10px;
    }

    .brandplast-contact-link-icon-wrap {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
    }

    .brandplast-contact-link-icon-wrap svg,
    .brandplast-contact-link-icon-wrap img {
        width: 24px;
        height: 24px;
    }

    .brandplast-contact-link-icon-wrap--whatsapp svg {
        width: 22px;
        height: 22px;
    }
}

@media (max-width: 1080px) {
    .feature-grid,
    .process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .bp-product-item {
        flex: 0 0 calc(50% - 10px);
    }

    .brandplast-image-modal-nav {
        inset: 50% 0 auto;
    }

    .brandplast-image-modal-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 34px;
    }

    .brandplast-image-modal-counter {
        top: 6px;
        left: 6px;
        font-size: 16px;
    }

    .brandplast-image-modal-panel {
        padding: 0;
    }

    .brandplast-image-modal .brandplast-modal-close {
        top: 2px;
        right: 2px;
        font-size: 34px;
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 1023px) {
    /* ---- Header ---- */
    .site-header,
    .site-header.is-sticked,
    body.home .site-header,
    body.home .site-header.is-sticked {
        padding-top: 0;
        padding-left: 0;
        padding-right: 0;
    }

    /* Home page only: remove all side gutters in mobile header */
    body.home .site-header > .site-shell {
        width: 100%;
    }

    .header-inner {
        grid-template-columns: auto 1fr auto;
        align-items: center;
        border-radius: 50px;
        padding: 8px 12px;
        width: 100%;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .header-actions {
        display: flex;
        gap: 8px;
    }

    .header-search-btn {
        display: none;
    }

    .header-cta {
        display: none !important;
    }

    .language-switcher {
        display: none;
    }

    /* Hide desktop nav on mobile */
    .desktop-primary-nav {
        display: none;
    }

    /* Mobile drawer nav */
    .primary-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: min(300px, 84vw);
        height: 100dvh;
        display: flex;
        flex-direction: column;
        background: #fff;
        border-radius: 0;
        padding: 0;
        margin: 0;
        overflow-y: auto;
        transform: translateX(-100%);
        transition: transform 0.28s ease;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
        z-index: 350;
        pointer-events: none;
    }

    .primary-nav.is-open {
        transform: translateX(0);
        pointer-events: auto;
    }

    .primary-nav .primary-menu {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        width: 100%;
        gap: 0;
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .primary-nav .primary-menu > li {
        width: 100%;
        margin: 0;
        border-bottom: 1px solid #e9e9e9;
    }

    .primary-nav .primary-menu a {
        display: block;
        width: 100%;
        padding: 22px 24px;
        border-radius: 0;
        font-size: 13px;
        line-height: 1.2;
        font-weight: 600;
        letter-spacing: 0.02em;
        text-transform: uppercase;
        color: #1f2b3c;
    }

    .primary-nav .primary-menu a:hover {
        background: var(--bp-muted);
    }

    .mobile-menu-lang {
        border-bottom: 1px solid #e9e9e9;
    }

    .mobile-menu-search {
        border-bottom: 1px solid #e9e9e9;
    }

    .mobile-menu-search-link {
        display: flex;
        align-items: center;
        gap: 8px;
        width: 100%;
        padding: 20px 24px;
        color: #1f2b3c;
        text-decoration: none;
        font-size: 13px;
        line-height: 1.2;
        font-weight: 600;
        letter-spacing: 0.02em;
        text-transform: uppercase;
    }

    .mobile-menu-search-link:hover {
        background: var(--bp-muted);
    }

    .mobile-menu-lang-toggle,
    .mobile-menu-lang-option {
        display: flex;
        align-items: center;
        gap: 8px;
        width: 100%;
        padding: 20px 24px;
        border: 0;
        background: transparent;
        color: #1f2b3c;
        text-decoration: none;
        font-size: 13px;
        line-height: 1.2;
        font-weight: 600;
        letter-spacing: 0.02em;
        text-transform: uppercase;
        text-align: left;
        cursor: pointer;
    }

    .mobile-menu-lang-toggle {
        justify-content: flex-start;
    }

    .mobile-menu-lang-toggle:hover,
    .mobile-menu-lang-option:hover {
        background: var(--bp-muted);
    }

    .mobile-menu-lang-toggle img,
    .mobile-menu-lang-option img {
        width: 18px;
        height: 12px;
        border-radius: 1px;
        box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
        display: block;
        flex-shrink: 0;
    }

    .mobile-menu-lang-name {
        flex: 1;
    }

    .mobile-menu-lang-opener {
        font-size: 22px;
        line-height: 1;
        opacity: 0.7;
        transition: transform 0.2s ease;
    }

    .mobile-menu-lang.is-open .mobile-menu-lang-opener {
        transform: rotate(90deg);
    }

    .mobile-menu-lang-list {
        border-top: 1px solid #e9e9e9;
        background: #fff;
    }

    .mobile-menu-lang-option {
        padding-left: 24px;
    }

    .mobile-menu-lang-option + .mobile-menu-lang-option {
        border-top: 1px solid #e9e9e9;
    }

    body.menu-open {
        overflow: hidden;
    }

    body.menu-open::before {
        content: "";
        position: fixed;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.58);
        z-index: 340;
    }

    /* ---- Content sections ---- */
    .hero-grid,
    .page-hero-grid,
    .product-detail-grid,
    .contacts-grid,
    .prefooter-grid,
    .quality-grid,
    .advantages-outer,
    .advantages-grid,
    .youtube-grid {
        grid-template-columns: 1fr;
    }

    .advantages-heading {
        font-size: 36px;
        margin-bottom: 24px;
    }

    .cta-heading {
        font-size: 32px;
    }

    .cta-band {
        padding: 100px 0;
        margin: 60px 0;
    }

    /* Header: прибираємо горизонтальний padding (16px→0), залишаємо тільки shell margin 16px ≈ оригінал 15px */
    .site-header {
        padding-left: 0;
        padding-right: 0;
    }

    .hero-section {
        min-height: 100svh;
    }

    /* Hero grid: зменшуємо top padding як у vc_row оригіналу (40px) */
    .hero-grid {
        padding: 40px 0 50px;
    }

    /* Hero copy: прибираємо desktop-формулу вирівнювання по пігулці хедера */
    .hero-copy {
        padding-left: 0;
    }

    /* Eyebrow: пропорційний до оригіналу (50px при 426px → 11.74vw)
       clamp(50px, 11.74vw, 120px): на реальному телефоні 390px = 50px,
       на тест-вьюпорті 878px ≈ 103px — заголовок переносить рядки як оригінал */
    .home-hero .eyebrow {
        font-size: clamp(50px, 11.74vw, 120px);
        line-height: 1.2;
    }

    /* Sub теж масштабуємо пропорційно (24px / 426px = 5.63vw) */
    .home-hero .hero-sub {
        font-size: clamp(20px, 5.63vw, 30px);
        line-height: 1.42;
    }

    .slide-item {
        grid-template-columns: 1fr;
        gap: 24px;
        align-items: start;
    }

    .slider-arrow {
        display: none;
    }

    .shop-sidebar {
        position: fixed;
        top: 0;
        left: 0;
        width: min(320px, 86vw);
        height: 100dvh;
        overflow-y: auto;
        padding: 16px;
        background: #fff;
        box-shadow: 0 10px 34px rgba(0, 0, 0, 0.22);
        transform: translateX(-100%);
        transition: transform 0.25s ease;
        z-index: 360;
    }

    body.shop-filters-open .shop-sidebar {
        transform: translateX(0);
    }

    .shop-sidebar-close {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        margin-left: auto;
        border: 0;
        border-radius: 50%;
        font-size: 30px;
        line-height: 1;
        color: #2f2f2f;
        background: #eef2f5;
    }

    .shop-sidebar-overlay {
        display: block;
        position: fixed;
        inset: 0;
        border: 0;
        background: rgba(0, 0, 0, 0.46);
        opacity: 0;
        pointer-events: none;
        z-index: 350;
        transition: opacity 0.25s ease;
    }

    body.shop-filters-open .shop-sidebar-overlay {
        opacity: 1;
        pointer-events: auto;
    }

    .shop-layout {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .shop-mobile-toolbar {
        display: flex;
        margin-bottom: 14px;
    }

    .shop-mobile-filter-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 38px;
        padding: 0 18px;
        border: 1px solid #d3dae2;
        border-radius: 999px;
        background: #fff;
        color: #1f2b3c;
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        cursor: pointer;
    }

    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .latest-products-title {
        margin-bottom: 18px;
        font-size: clamp(26px, 7vw, 34px);
    }

    .feature-grid,
    .process-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .youtube-section {
        margin: 0;
    }

    .youtube-text-col {
        margin-top: 24px;
        margin-left: 0;
        z-index: 1;
    }

    .youtube-heading {
        font-size: 35px;
        line-height: 1.2857;
    }

    .youtube-emph {
        color: #000;
    }

    .youtube-link {
        margin: 18px 0 0;
        text-align: left;
        padding-left: 0;
    }

    .youtube-sub {
        padding-left: 0;
    }

    .youtube-heading__part--white {
        display: none;
    }

    .youtube-heading__part--dark {
        clip-path: none;
        position: static;
    }

    .youtube-heading {
        position: static;
        height: auto;
    }

    .bp-product-item {
        flex: 0 0 calc(50% - 10px);
    }

    .bp-product-title {
        white-space: normal;
    }

    .products-section .bp-product-arrow {
        display: none;
    }

    .products-section .section-heading {
        margin-bottom: 24px;
    }

    .products-section .bp-carousel-wrap {
        padding: 0;
    }

    .products-section .bp-carousel {
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 8px;
    }

    .products-section .bp-carousel-track {
        transform: none !important;
        transition: none;
        width: 100%;
        gap: 16px;
    }

    .products-section .bp-carousel-nav {
        display: none;
    }

    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .product-gallery-thumbs {
        gap: 8px;
    }

    .product-extra-block {
        padding: 18px;
    }

    .product-extra-block h2 {
        font-size: 22px;
    }

    .product-tabs-nav {
        gap: 10px 16px;
        padding-bottom: 10px;
        overflow-x: auto;
    }

    .product-tab-btn {
        text-align: left;
        font-size: 15px;
        font-weight: 400;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .product-tab-panel {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}


@media (max-width: 767px) {
    .cta-band {
        padding: 80px 0;
        margin: 40px 0;
    }

    .cta-heading {
        font-size: 26px;
    }

    .cta-sub {
        font-size: 17px;
    }

    .youtube-heading {
        font-size: 28px;
        line-height: 1.35;
    }

    .youtube-sub {
        margin-top: 26px;
        font-size: 18px;
        line-height: 1.5;
    }

    .youtube-link {
        margin-top: 14px;
    }
}

@media (max-width: 620px) {
    .site-shell {
        width: min(calc(100% - 24px), var(--bp-shell));
    }

    h1 {
        font-size: 34px;
    }

    .home-hero .eyebrow {
        font-size: clamp(44px, 11.74vw, 120px);
        line-height: 1.2;
        padding-top: 150px;
    }

    .home-hero .hero-sub {
        font-size: clamp(18px, 5.63vw, 36px);
        line-height: 1.4;
    }

    .page-section {
        padding: 56px 0;
    }

    .shop-section {
        padding-top: 24px;
    }

    .bp-product-item {
        flex: 0 0 calc(50% - 10px);
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .shop-toolbar {
        align-items: stretch;
        flex-direction: column;
    }

    .active-filters-bar {
        align-items: flex-start;
        gap: 8px;
        margin-bottom: 16px;
    }

    .active-filter-tag {
        font-size: 12px;
        padding: 5px 9px 5px 10px;
    }

    .attributes-box dl div {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .youtube-cta-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding-bottom: 40px;
    }

    .youtube-embed {
        margin-top: 0;
    }

    /* Mobile hero section */
    .inner-hero {
        padding-top: 0;
        padding-bottom: 56px;
        background: transparent;
    }

    .inner-hero .site-shell {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .inner-hero-grid {
        display: flex !important;
        flex-direction: column;
        grid-template-columns: unset !important;
        gap: 16px;
        width: 100%;
        margin: 0 !important;
        padding: 0 12px;
    }

    .inner-hero-copy {
        min-height: 0 !important;
        padding: 0 !important;
        display: block;
        position: static !important;
    }

    .inner-hero-heading {
        display: block !important;
        position: static !important;
        width: 100% !important;
        max-width: none !important;
        font-size: clamp(14px, 5.2vw, 18px) !important;
        line-height: 1.12 !important;
        margin: 0 !important;
        top: auto !important;
        left: auto !important;
        color: #111 !important;
    }

    .inner-hero-heading__dark,
    .inner-hero-heading__white {
        color: #111 !important;
    }

    .inner-hero .inner-hero-subtitle {
        display: block !important;
        position: static !important;
        width: 100% !important;
        max-width: none !important;
        margin: 6px 0 0 !important;
        font-size: 16px !important;
        line-height: 1.4 !important;
        top: auto !important;
        left: auto !important;
    }

    .inner-hero-copy > p:not(.eyebrow):not(.inner-hero-subtitle) {
        margin: 0 !important;
        width: auto !important;
        font-size: 16px;
        line-height: 1.5;
        color: #000;
    }

    .inner-hero-grid > .inner-hero-media {
        width: 100% !important;
        max-width: none !important;
        height: auto !important;
        padding-bottom: 56.25%;
        min-height: 0 !important;
        order: 2;
    }

    .inner-hero-copy {
        order: 1;
    }

    .inner-hero .youtube-video-wrapper {
        width: calc(100% - 32px) !important;
        height: auto !important;
        aspect-ratio: 16 / 9;
        margin: 0 16px !important;
        padding-bottom: 0 !important;
    }

    .inner-hero .eyebrow {
        display: none;
    }

    .product-gallery-thumbs {
        gap: 8px;
    }

    .product-gallery-thumb {
        width: 72px;
        height: 72px;
    }

    .product-gallery-thumb-360 {
        width: 72px;
        height: 72px;
    }

    .product-gallery-360-icon {
        width: 40px;
        height: 40px;
        font-size: 12px;
    }

    .product-gallery-360-icon::after {
        top: calc(100% - 7px);
        font-size: 12px;
    }

    .product-360-modal-dialog {
        width: auto;
        max-width: calc(100vw - 12px);
        max-height: calc(100vh - 12px);
        border-radius: 14px;
        padding: 8px;
    }

    .product-360-frame {
        max-width: calc(100vw - 28px);
        max-height: calc(100vh - 112px);
    }

    .product-360-controls {
        top: 10px;
    }

    .product-360-control {
        width: 38px;
        height: 38px;
        font-size: 28px;
    }

    .product-summary h1 {
        font-size: 32px;
        line-height: 38px;
        margin-bottom: 18px;
    }

    .attributes-box dl div {
        grid-template-columns: 1fr;
        gap: 6px;
    }
}

/* ===================================
   HEADER — additional elements
   =================================== */

/* Outer header wrapper */
.site-header-wrap {
    position: relative;
}

/* Desktop logo wrapper */
.header-logo-wrap {
    display: flex;
    align-items: center;
}

/* Mobile logo: hidden on desktop */
.header-mobile-logo {
    display: none;
}

/* Mobile phone icon button: hidden on desktop */
.header-phone-btn {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 50%;
    background: var(--bp-ink);
    cursor: pointer;
    flex-shrink: 0;
}

.header-phone-btn svg {
    width: 18px;
    height: 18px;
    stroke: #fff;
}

/* ===================================
   FOOTER — responsive
   =================================== */

/* Mobile: show mobile logo + phone btn, hide desktop logo */
@media (max-width: 1023px) {
    .header-logo-wrap {
        display: none;
    }

    .header-mobile-logo {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .header-mobile-logo img {
        max-width: 150px;
        max-height: 36px;
    }

    .header-phone-btn {
        display: inline-flex;
    }

    .prefooter-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* ===================================
   ABOUT PAGE
   =================================== */

.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-quotes-section {
    padding: 0 0 50px;
    background: transparent;
}

.about-quotes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 30px;
    row-gap: 50px;
}

.about-quote-card {
    margin: 0;
    padding: 0 0 0 17px;
    border-left: 2px solid #12274b;
}

.about-quote-card p {
    margin: 0 0 10px;
    color: #000;
    font-size: 16.5px;
    line-height: 25px;
    font-weight: 400;
}

.about-quote-card p:last-child {
    margin-bottom: 0;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 60px;
    align-items: center;
}

.about-stat-num {
    display: block;
    font-size: clamp(22px, 3vw, 36px);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    white-space: nowrap;
}

.about-stat-label {
    display: block;
    color: var(--bp-gold);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 8px;
}

.about-feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-feature-grid--reversed {
    direction: rtl;
}

.about-feature-grid--reversed > * {
    direction: ltr;
}

.about-feature-text {
    display: grid;
    gap: 18px;
}

.about-feature-text h2 {
    font-size: clamp(24px, 3vw, 38px);
}

.about-feature-text p {
    font-size: 15px;
    color: var(--bp-text);
    line-height: 1.65;
}

.about-feature-text ul {
    margin: 4px 0 0;
    padding-left: 20px;
    color: var(--bp-text);
    line-height: 1.65;
}

.about-feature-text li + li {
    margin-top: 4px;
}

.about-feature-media {
    display: block;
}

.about-feature-media img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: var(--bp-radius);
}

.about-feature-media--double {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-items: start;
}

.cooperation-hero {
    margin-top: 50px;
    padding-top: 0;
    padding-bottom: 0;
}


.cooperation-hero > .site-shell {
    width: min(calc(100% - 32px), var(--bp-shell));
}

.cooperation-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 721px;
    align-items: start;
    gap: 0;
    min-height: 443px;
    width: var(--bp-header-box-width);
    margin-left: auto;
    margin-right: auto;
}

.cooperation-hero-copy {
    position: relative;
    z-index: 3;
    padding-top: 89px;
    margin-left: 0;
}

.cooperation-hero-copy h1 {
    margin: 0;
    width: 528px;
    max-width: none;
    font-family: 'Gilroy', Arial, Helvetica, sans-serif;
    font-size: 39px;
    line-height: 49px;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
}

.cooperation-hero-line {
    display: inline-block;
    white-space: nowrap;
}

.cooperation-hero-line--overlay {
    position: relative;
    color: #000;
    background: none;
    -webkit-text-fill-color: currentColor;
}

.cooperation-hero-line--overlay::after {
    content: attr(data-text);
    position: absolute;
    inset: 0;
    color: #fff;
    white-space: inherit;
    pointer-events: none;
    clip-path: inset(0 0 0 var(--overlay-cut, 200%));
}

.cooperation-hero-tagline {
    margin: 34px 0 0;
    width: 822px;
    max-width: none;
    font-size: 22px;
    line-height: 32px;
    font-weight: 500;
    color: #000;
}

.cooperation-hero-media {
    position: relative;
    z-index: 1;
    width: 721px;
    max-width: none;
    height: 408px;
    margin-left: 0;
    margin-top: 0;
    margin-bottom: 0;
    justify-self: start;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.cooperation-hero-media.youtube-video-wrapper {
    position: relative;
    padding-bottom: 0;
    height: 408px;
    overflow: hidden;
    border-radius: 12px;
}

.cooperation-hero-media .youtube-poster,
.cooperation-hero-media .youtube-embed,
.cooperation-hero-media .youtube-embed iframe {
    border-radius: 12px;
}

.cooperation-hero-media .youtube-play-btn {
    width: 110px;
    height: 110px;
    border-width: 2px;
}

.cooperation-hero-media .youtube-play-btn::after {
    width: 34px;
    height: 34px;
}

@media (min-width: 1024px) {
    .cooperation-hero-grid {
        grid-template-columns: minmax(0, 1fr) 825px;
        min-height: 500px;
    }

    .cooperation-hero-media {
        width: 825px;
        height: 465px;
    }

    .cooperation-hero-media.youtube-video-wrapper {
        height: 465px;
    }
}

.cooperation-hero-intro {
    margin-top: 24px;
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
}

.cooperation-hero-intro-block {
    padding-top: 0;
    padding-bottom: 115px;
}

.cooperation-hero-intro p {
    margin: 0;
    font-size: 16px;
    line-height: 26px;
    font-weight: 700;
    color: #2d2d2d;
    text-align: left;
    width: 100%;
}

.cooperation-text-card {
    border: 0.8px solid #071828;
    border-radius: 24px;
    padding: 30px;
    align-self: center;
}

.cooperation-step-section {
    padding-top: 70px;
    padding-bottom: 70px;
}

.cooperation-step-section .site-shell {
    width: min(calc(100% - 32px), 1117px);
}

.cooperation-step-section .about-feature-grid,
.cooperation-step-section .about-feature-grid--reversed {
    grid-template-columns: 1fr 385px;
    gap: 40px;
    align-items: start;
}

.cooperation-step-section .about-feature-media img {
    width: 385px;
    max-width: 100%;
    height: auto;
}

.cooperation-step-section .about-feature-text h2 {
    font-size: 36px;
    line-height: 50.4px;
}

@media (min-width: 1024px) {
    .cooperation-step-section .about-feature-grid,
    .cooperation-step-section .about-feature-grid--reversed {
        align-items: stretch;
    }

    .cooperation-step-section .cooperation-text-card {
        height: 100%;
        align-self: stretch;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}

.cooperation-final-cta {
    padding: 80px 0;
}

.cooperation-final-cta .quality-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 16px;
    text-align: center;
}

.cooperation-final-cta-title {
    margin: 0;
    color: #fff;
    font-size: clamp(30px, 3.5vw, 52px);
    line-height: 1.15;
}

.cooperation-final-cta .button-light {
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.cooperation-final-cta .button-light:hover,
.cooperation-final-cta .button-light:focus-visible {
    background: #fff;
    border-color: #fff;
    color: #071828;
}

.cooperation-final-cta .button-light:hover {
    transform: scale(1.04);
}

.inner-hero-grid {
    align-items: start;
    grid-template-columns: 306.984px 613.984px;
    gap: 0;
}

.inner-hero .site-shell {
    width: 100%;
    margin-inline: auto;
}

.inner-hero-copy {
    display: block;
    position: relative;
    z-index: 7;
    min-height: 363.484px;
    padding-left: 15px;
    box-sizing: border-box;
}

.inner-hero-heading {
    position: absolute;
    top: 5.734px;
    left: 15px;
    margin: 0 -240px 30px 0;
    width: 531.984px;
    max-width: none;
    font-family: 'Gilroy', Arial, Helvetica, sans-serif;
    font-size: 38px;
    line-height: 48px;
    letter-spacing: 0;
    font-weight: 700;
    transform: none;
}

.inner-hero-heading__dark {
    display: inline;
    color: #111;
}

.inner-hero-heading__white {
    display: inline;
    color: #fff;
    text-shadow: none;
}

.inner-hero-line {
    display: inline-block;
    white-space: nowrap;
}

.inner-hero-line--overlay {
    position: relative;
    color: #000;
    background: none;
    -webkit-text-fill-color: currentColor;
}

.inner-hero-line--overlay::after {
    content: attr(data-text);
    position: absolute;
    inset: 0;
    color: #fff;
    white-space: inherit;
    pointer-events: none;
    clip-path: inset(0 0 0 var(--overlay-cut, 200%));
}

.inner-hero-grid > .inner-hero-media {
    display: block;
    align-self: start;
    width: 613.984px;
    max-width: none;
    min-height: 0;
    height: 363.484px;
    padding: 0;
    box-sizing: border-box;
    margin-left: 0;
}

.inner-hero .youtube-video-wrapper {
    cursor: pointer;
    z-index: 3;
    border-radius: var(--bp-radius);
    width: 583.984px;
    height: 328.484px;
    margin-left: 15px;
    padding-bottom: 0;
}

.inner-hero .youtube-poster {
    margin: -1px;
    width: calc(100% + 6px);
    height: calc(100% + 6px);
}

.inner-hero .youtube-embed iframe {
    top: 1px;
    left: 1px;
    width: calc(100% - 2px);
    height: calc(100% - 2px);
}

.inner-hero .youtube-poster,
.inner-hero .youtube-embed,
.inner-hero .youtube-embed iframe {
    border-radius: 0;
}

.inner-hero .eyebrow {
    display: none;
}

.inner-hero-copy > p:not(.eyebrow):not(.inner-hero-subtitle) {
    margin: 254px -240px 30px 0;
    width: 876.662px;
    max-width: none;
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
    color: #000;
}

.inner-hero .inner-hero-subtitle {
    position: absolute;
    top: 187px;
    left: 15px;
    width: calc(100% - 30px);
    max-width: 320px;
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
    color: #000;
    font-family: 'Gilroy', Arial, Helvetica, sans-serif;
    white-space: normal;
    overflow-wrap: normal;
    word-break: normal;
}

.inner-hero {
    padding-top: 0;
    padding-bottom: 100px;
    background: transparent;
}

.inner-hero .youtube-play-btn {
    pointer-events: none;
}

@media (min-width: 1100px) {
    .inner-hero {
        padding-inline: 16px;
    }

    .inner-hero .site-shell {
        width: min(calc(100% - 32px), var(--bp-shell));
        margin-inline: auto;
    }

    .inner-hero-grid {
        grid-template-columns: 33.333333% 66.666667%;
        width: var(--bp-header-box-width);
        margin: 0 auto 100px;
        min-height: 0;
    }

    .inner-hero-copy {
        min-height: 0;
    }

    .inner-hero-heading {
        top: 77.562px;
        left: 15px;
        margin: 0 -240px 30px 0;
        transform: none;
        width: 617px;
    }

    .inner-hero .inner-hero-subtitle {
        position: absolute;
        top: 234.562px;
        margin: 0;
        width: calc(100% - 30px);
        max-width: 320px;
    }

    .inner-hero-grid > .inner-hero-media {
        width: auto;
        height: auto;
        box-sizing: border-box;
    }

    .inner-hero .youtube-video-wrapper {
        width: calc(100% - 30px);
        height: auto;
        aspect-ratio: 16 / 9;
        margin-left: 15px;
    }
}

@media (max-width: 1023px) {
    .about-intro-grid,
    .about-quotes-grid,
    .about-stats-grid,
    .about-feature-grid,
    .about-feature-grid--reversed {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 30px;
    }

    .about-quotes-section {
        padding: 0 0 32px;
    }

    .about-quotes-grid {
        gap: 24px;
    }

    .about-quote-card p {
        font-size: 16px;
        line-height: 24px;
    }

    .about-feature-media--double {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .cooperation-hero-grid {
        grid-template-columns: 34.5% 65.5%;
        gap: 0;
        min-height: 437px;
    }

    .cooperation-hero-copy h1 {
        font-size: 39px;
        line-height: 49px;
    }

    .cooperation-hero-tagline {
        font-size: 22px;
        line-height: 32px;
    }
}

@media (max-width: 767px) {
    body:not(.home) .site-main {
        padding-top: 68px;
    }

    body.admin-bar:not(.home) .site-main {
        padding-top: 100px;
    }

    body.single-product .site-main {
        padding-top: 68px;
    }

    body.admin-bar.single-product .site-main {
        padding-top: 100px;
    }

    body.single-product .page-section.product-detail-section {
        padding-top: 0;
    }

    /* Match cooperation page top rhythm on mobile for all inner pages. */
    body:not(.home) .site-main > section:first-child,
    body:not(.home) .site-main > article > section:first-child {
        margin-top: 0;
        padding-top: 24px !important;
    }

    .cooperation-hero {
        margin-top: 0;
        padding-top: 24px;
        padding-bottom: 0;
    }

    .cooperation-hero-grid {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .cooperation-hero-copy {
        padding-top: 0;
    }

    .cooperation-hero-copy h1 {
        font-size: clamp(30px, 8.5vw, 39px);
        line-height: 1.1;
        width: 100%;
        max-width: 100%;
    }

    .cooperation-hero-line {
        white-space: normal;
    }

    .inner-hero-line {
        white-space: normal;
    }

    .cooperation-hero-line--overlay {
        color: #071828;
        background: none;
        -webkit-background-clip: border-box;
        background-clip: border-box;
        -webkit-text-fill-color: #071828;
    }

    .cooperation-hero-line--overlay::after {
        display: none;
    }

    .inner-hero-line--overlay::after {
        display: none;
    }

    .cooperation-hero-tagline {
        font-size: clamp(18px, 5.3vw, 22px);
        line-height: 1.35;
        width: 100%;
        max-width: 100%;
        margin-top: 12px;
    }

    .cooperation-hero-media {
        aspect-ratio: 7 / 4;
        margin-top: 16px;
        margin-bottom: 0;
        width: 100%;
        max-width: 100%;
        height: auto;
        margin-left: 0;
    }

    .cooperation-hero-media.youtube-video-wrapper {
        padding-bottom: 56.25%;
        height: 0;
        border-radius: var(--bp-radius);
    }

    .cooperation-hero-media .youtube-poster,
    .cooperation-hero-media .youtube-embed,
    .cooperation-hero-media .youtube-embed iframe {
        border-radius: var(--bp-radius);
    }

    .cooperation-hero-intro {
        margin-top: 16px;
    }

    .cooperation-hero-intro-block {
        padding-bottom: 24px;
    }

    .cooperation-hero-intro p {
        font-size: 15px;
        line-height: 24px;
        font-weight: 600;
    }

    .cooperation-step-section {
        padding-top: 36px;
        padding-bottom: 36px;
    }

    .cooperation-step-section .site-shell {
        width: min(calc(100% - 24px), 1117px);
    }

    .cooperation-step-section .about-feature-grid,
    .cooperation-step-section .about-feature-grid--reversed {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cooperation-text-card {
        padding: 20px 16px;
        border-radius: 16px;
    }

    .cooperation-step-section .about-feature-text h2 {
        font-size: clamp(24px, 7.2vw, 32px);
        line-height: 1.2;
        margin-bottom: 12px;
    }

    .cooperation-step-section .about-feature-text p,
    .cooperation-step-section .about-feature-text li {
        font-size: 15px;
        line-height: 1.55;
    }

    .cooperation-step-section .about-feature-text ul {
        padding-left: 18px;
        margin: 8px 0 10px;
    }

    .cooperation-step-section .about-feature-media img {
        width: 100%;
        max-width: 460px;
        margin: 0 auto;
        display: block;
    }

    .cooperation-final-cta {
        padding: 48px 0;
    }

    .cooperation-final-cta .quality-grid {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 16px;
        text-align: center;
    }

    .cooperation-final-cta-title {
        font-size: clamp(26px, 8vw, 34px);
    }
}
