/* ==========================================================================
   Design tokens

   For another project, start here: replace font file/family, colors, shell
   width, radii, and the main button color variables.
   ========================================================================== */

@font-face {
    font-family: "quantum";
    src: url("/wp-content/uploads/2025/09/bahnschrift.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

:root {
    --qp-bg: #080808;
    --qp-surface: #181818;
    --qp-surface-soft: #202020;
    --qp-text: #ffffff;
    --qp-muted: #d7d7d7;
    --qp-line: rgba(255, 255, 255, .08);
    --qp-accent: #a70f12;
    --qp-accent-strong: #c01618;
    --qp-select-chevron: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 7.5L10 12.5L15 7.5' stroke='white' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    --qp-radius: 8px;
    --qp-radius-block: 30px;
    --qp-shadow: 0 14px 36px rgba(15, 23, 42, .08);
    --qp-shell: 1280px;
    --qp-font-fallback: Arial, sans-serif;
    --qp-font-primary: "quantum", var(--qp-font-fallback);
    --qp-font-body: var(--qp-font-primary);
    --qp-font-heading: var(--qp-font-primary);
    --qp-font-weight-quantum-regular: 400;
    --qp-font-weight-quantum-bold: 900;
    --qp-home-quantum-copy-size: 20px;
}

* {
    box-sizing: border-box;
}

html {
    font-size: 16px;
    overflow-x: hidden;
    background: var(--qp-bg);
}

body {
    margin: 0;
    overflow-x: hidden;
    background: var(--qp-bg);
    color: var(--qp-text);
    font-family: var(--qp-font-body);
    line-height: 1.5;
}

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

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

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

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

.qp-site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, .92);
    border-bottom: 1px solid rgba(216, 224, 234, .9);
    backdrop-filter: blur(14px);
}

.qp-site-header__inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 24px;
    align-items: center;
    min-height: 76px;
}

.qp-brand img {
    width: 148px;
    height: auto;
}

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

.qp-primary-nav__list a {
    color: #172033;
    font-size: 15px;
    font-weight: 600;
}

.qp-primary-nav__list a:hover {
    color: var(--qp-accent);
}

.qp-header-action,
.qp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border: 1px solid transparent;
    border-radius: var(--qp-radius);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
}

.qp-header-action,
.qp-button--primary,
.qp-button--card {
    background: var(--qp-accent);
    color: #fff;
}

.qp-header-action:hover,
.qp-button--primary:hover,
.qp-button--card:hover {
    background: var(--qp-accent-strong);
}

.qp-button--ghost {
    background: #fff;
    border-color: var(--qp-line);
    color: var(--qp-text);
}

.qp-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--qp-line);
    border-radius: var(--qp-radius);
    background: #fff;
}

.qp-menu-toggle__bar {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: var(--qp-text);
}

.qp-hero {
    padding: 52px 0 34px;
    background: linear-gradient(180deg, #fff 0%, var(--qp-bg) 100%);
}

.qp-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
    gap: 40px;
    align-items: center;
}

.qp-kicker {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--qp-accent);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.qp-hero h1,
.qp-shop-hero h1,
.qp-section-head h2 {
    margin: 0;
    color: var(--qp-text);
    line-height: 1.08;
}

.qp-hero h1 {
    max-width: 650px;
    font-size: 56px;
}

.qp-hero p,
.qp-shop-hero p {
    max-width: 610px;
    margin: 18px 0 0;
    color: var(--qp-muted);
    font-size: 19px;
}

.qp-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.qp-hero__media {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: var(--qp-shadow);
}

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

.qp-section {
    padding: 44px 0;
}

.qp-section--muted {
    background: var(--qp-surface-soft);
}

.qp-section-head {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 16px;
    align-items: end;
    margin-bottom: 22px;
}

.qp-section-head h2 {
    font-size: 32px;
}

.qp-section-head a {
    color: var(--qp-accent);
    font-weight: 700;
}

.qp-product-grid,
.products.qp-product-grid,
.woocommerce ul.products {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.qp-product-grid--dynamic.products.qp-product-grid {
    grid-template-columns: repeat(var(--qp-grid-columns-desktop, 3), minmax(0, 1fr));
    width: 100%;
}

.qp-product-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
    background: var(--qp-surface);
    border: 1px solid var(--qp-line);
    border-radius: var(--qp-radius);
    box-shadow: 0 10px 24px rgba(15, 23, 42, .05);
}

.qp-product-card__media {
    display: block;
    padding: 14px;
    background: #f8fafc;
}

.qp-product-card__image,
.qp-product-card__media img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
}

.qp-product-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 16px;
}

.qp-product-card__title {
    min-height: 48px;
    color: var(--qp-text);
    font-size: 18px;
    font-weight: 800;
    line-height: 1.25;
}

.qp-product-card__specs {
    display: grid;
    gap: 8px;
    margin: 14px 0 18px;
}

.qp-product-card__specs div {
    display: grid;
    grid-template-columns: 82px 1fr;
    gap: 8px;
}

.qp-product-card__specs dt,
.qp-product-card__specs dd {
    margin: 0;
    font-size: 13px;
}

.qp-product-card__specs dt {
    color: var(--qp-muted);
}

.qp-product-card__specs dd {
    color: #1d2939;
    font-weight: 650;
}

.qp-product-card__footer {
    display: grid;
    gap: 12px;
    margin-top: auto;
}

.qp-product-card__price {
    min-height: 32px;
    color: var(--qp-text);
    font-size: 22px;
    font-weight: 850;
}

.qp-product-card__price .woocommerce-Price-currencySymbol {
    font-size: .82em;
}

.qp-button--card {
    width: 100%;
}

.qp-shop-hero {
    padding: 42px 0 28px;
    background: #fff;
    border-bottom: 1px solid var(--qp-line);
}

.qp-shop-hero h1 {
    font-size: 42px;
}

.qp-configurator-page {
    background: #0b1220;
}

.qp-configurator-page .qp-shell {
    max-width: 1320px;
}

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

.qp-shop-toolbar .woocommerce-result-count,
.qp-shop-toolbar form {
    margin: 0;
}

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

.woocommerce-pagination {
    margin-top: 28px;
}

.woocommerce-pagination ul {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

.woocommerce-pagination a,
.woocommerce-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    border: 1px solid var(--qp-line);
    border-radius: var(--qp-radius);
    background: #fff;
}

.woocommerce-pagination .current {
    background: var(--qp-accent);
    color: #fff;
    border-color: var(--qp-accent);
}

.woocommerce-breadcrumb {
    margin: 20px 0 18px;
    color: var(--qp-muted);
    font-size: 14px;
}

.woocommerce-breadcrumb a {
    color: var(--qp-accent);
    font-weight: 650;
}

.qp-product-detail {
    padding-bottom: 52px;
}

.qp-product-detail__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(380px, .95fr);
    gap: 34px;
    align-items: start;
}

.qp-product-detail__media,
.qp-product-detail__summary,
.qp-product-detail__content {
    background: #fff;
    border: 1px solid var(--qp-line);
    border-radius: var(--qp-radius);
}

.qp-product-detail__media {
    overflow: hidden;
}

.qp-product-detail__image {
    display: grid;
    min-height: 460px;
    place-items: center;
    background: #f8fafc;
}

.qp-product-detail__image img {
    width: 100%;
    height: 100%;
    max-height: 620px;
    object-fit: cover;
}

.qp-product-detail__image--empty img {
    width: auto;
    height: auto;
    object-fit: contain;
}

.qp-product-detail__thumbs {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 10px;
    padding: 12px;
    border-top: 1px solid var(--qp-line);
}

.qp-product-detail__thumbs img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border: 1px solid var(--qp-line);
    border-radius: 6px;
}

.qp-product-detail__summary {
    padding: 28px;
}

.qp-product-detail__summary h1 {
    margin: 0;
    font-size: 42px;
    line-height: 1.08;
}

.qp-product-detail__price {
    margin-top: 14px;
    color: var(--qp-text);
    font-size: 28px;
    font-weight: 850;
}

.qp-product-detail__price p {
    margin: 0;
}

.qp-product-detail__excerpt {
    margin-top: 18px;
    color: var(--qp-muted);
}

.qp-product-detail__excerpt p {
    margin: 0 0 10px;
}

.qp-product-detail__buy {
    margin-top: 24px;
}

.qp-build-selectors {
    display: grid;
    gap: 14px;
}

.qp-build-select-row {
    display: grid;
    gap: 7px;
}

.qp-build-select-row label {
    color: var(--qp-muted);
    font-size: 13px;
    font-weight: 750;
}

.qp-build-select-row select,
.cart .quantity input {
    width: 100%;
    min-height: 44px;
    border: 1px solid var(--qp-line);
    border-radius: var(--qp-radius);
    background: #fff;
    padding: 0 12px;
    color: var(--qp-text);
    font: inherit;
}

.qp-build-price {
    margin-top: 4px;
    font-size: 28px;
    font-weight: 850;
}

.qp-build-specs {
    display: grid;
    gap: 8px;
    padding: 14px;
    background: var(--qp-surface-soft);
    border-radius: var(--qp-radius);
}

.qp-build-specs__row {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 10px;
    font-size: 14px;
}

.qp-build-specs__label {
    color: var(--qp-muted);
}

.qp-build-specs__value {
    font-weight: 700;
}

.qp-color-toggle {
    display: flex;
    gap: 10px;
    align-items: center;
    color: var(--qp-muted);
    font-size: 14px;
    font-weight: 700;
}

.qp-color-toggle__dots {
    display: flex;
    gap: 8px;
}

.qp-color-dot {
    width: 28px;
    height: 28px;
    border: 2px solid var(--qp-line);
    border-radius: 50%;
    cursor: pointer;
}

.qp-color-dot--black {
    background: #111827;
}

.qp-color-dot--white {
    background: #fff;
}

.qp-color-dot.active {
    border-color: var(--qp-accent);
    box-shadow: 0 0 0 3px rgba(8, 132, 255, .16);
}

.qp-build-configure-btn,
.qp-line-order-btn,
.single_add_to_cart_button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    border: 1px solid transparent;
    border-radius: var(--qp-radius);
    background: var(--qp-accent);
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    text-align: center;
    cursor: pointer;
}

.qp-build-configure-btn {
    background: #fff;
    color: var(--qp-accent);
    border-color: rgba(8, 132, 255, .35);
}

.cart {
    display: grid;
    gap: 14px;
    margin-top: 14px;
}

.cart .quantity {
    max-width: 120px;
}

.single_add_to_cart_button {
    width: 100%;
}

.qp-product-detail__meta {
    margin-top: 18px;
    color: var(--qp-muted);
    font-size: 13px;
}

.qp-product-detail__meta a {
    color: var(--qp-accent);
    font-weight: 700;
}

.qp-product-detail__content {
    margin-top: 28px;
    padding: 28px;
}

.qp-content {
    max-width: 900px;
}

.qp-page {
    background: #fff;
    border: 1px solid var(--qp-line);
    border-radius: var(--qp-radius);
    padding: 28px;
}

.qp-legal-page {
    padding: 32px 0 96px;
    background: var(--qp-bg);
    color: #fff;
}

.qp-legal-page__article {
    max-width: 980px;
}

.qp-legal-page h1 {
    margin: 0 0 34px;
    color: #fff;
    font-size: clamp(24px, 2.1vw, 34px);
    font-weight: var(--qp-font-weight-quantum-bold);
    line-height: 1.08;
    letter-spacing: 0;
    text-transform: uppercase;
}

.qp-legal-page__content {
    display: flow-root;
    color: var(--qp-muted);
    font-size: 18px;
    line-height: 1.62;
}

.qp-legal-page__content > *:first-child {
    margin-top: 0;
}

.qp-legal-page__content > *:last-child {
    margin-bottom: 0;
}

.qp-legal-page__content p,
.qp-legal-page__content ul,
.qp-legal-page__content ol {
    margin: 0 0 18px;
}

.qp-legal-page__content strong,
.qp-legal-page__content b {
    color: #fff;
    font-weight: var(--qp-font-weight-quantum-bold);
}

.qp-legal-page__content a {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.qp-site-footer {
    padding: 40px 0;
    background: #101828;
    color: #fff;
}

.qp-site-footer__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(220px, .8fr) minmax(180px, .6fr);
    gap: 32px;
}

.qp-site-footer__brand img {
    width: 150px;
}

.qp-site-footer__brand p,
.qp-site-footer__contacts span {
    color: #cbd5e1;
}

.qp-footer-nav__list {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
}

.qp-site-footer__contacts {
    display: grid;
    gap: 8px;
    align-content: start;
    font-weight: 700;
}

@media (max-width: 1100px) {
    .qp-product-grid,
    .products.qp-product-grid,
    .woocommerce ul.products {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .qp-product-grid--dynamic.products.qp-product-grid {
        grid-template-columns: repeat(var(--qp-grid-columns-tablet, 2), minmax(0, 1fr));
    }

    .qp-image-gallery {
        grid-template-columns: repeat(var(--qp-gallery-columns-tablet, 2), minmax(0, 1fr));
    }

    .qp-stats-row {
        grid-template-columns: repeat(var(--qp-stats-columns-tablet, 3), minmax(0, 1fr));
    }

    .qp-hero h1 {
        font-size: 46px;
    }
}

@media (max-width: 860px) {
    .qp-site-header__inner {
        grid-template-columns: auto auto;
    }

    .qp-menu-toggle {
        display: block;
        justify-self: end;
    }

    .qp-primary-nav {
        display: none;
        grid-column: 1 / -1;
        padding-bottom: 16px;
    }

    .qp-primary-nav--open {
        display: block;
    }

    .qp-primary-nav__list {
        align-items: stretch;
        flex-direction: column;
        gap: 12px;
    }

    .qp-header-action {
        display: none;
    }

    .qp-hero__grid {
        grid-template-columns: 1fr;
    }

    .qp-product-grid,
    .products.qp-product-grid,
    .woocommerce ul.products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .qp-product-grid--dynamic.products.qp-product-grid {
        grid-template-columns: repeat(var(--qp-grid-columns-tablet, 2), minmax(0, 1fr));
    }

    .qp-site-footer__grid {
        grid-template-columns: 1fr;
    }

    .qp-product-detail__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .qp-shell {
        width: min(100% - 20px, var(--qp-shell));
    }

    .qp-hero {
        padding-top: 32px;
    }

    .qp-hero h1,
    .qp-shop-hero h1 {
        font-size: 34px;
    }

    .qp-hero p,
    .qp-shop-hero p {
        font-size: 16px;
    }

    .qp-section-head {
        grid-template-columns: 1fr;
    }

    .qp-product-grid,
    .products.qp-product-grid,
    .woocommerce ul.products {
        grid-template-columns: 1fr;
    }

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

    .qp-product-detail__summary h1 {
        font-size: 32px;
    }

    .qp-product-detail__summary {
        padding: 18px;
    }

    .qp-product-detail__image {
        min-height: 280px;
    }

    .qp-product-detail__thumbs {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .qp-build-specs__row {
        grid-template-columns: 1fr;
        gap: 2px;
    }
}

/* Visual parity pass: original Quantum PC dark Elementor layout. */
:root {
    --qp-bg: #080808;
    --qp-surface: #181818;
    --qp-surface-soft: #202020;
    --qp-text: #ffffff;
    --qp-muted: #d7d7d7;
    --qp-line: rgba(255, 255, 255, .08);
    --qp-accent: #a70f12;
    --qp-accent-strong: #c01618;
    --qp-shell: 1280px;
    --qp-font-body: var(--qp-font-primary);
    --qp-font-heading: var(--qp-font-primary);
}

html,
body {
    background: #080808;
    color: #fff;
}

body {
    font-family: var(--qp-font-body);
    font-weight: var(--qp-font-weight-quantum-regular);
}

h1,
h2,
h3,
h4,
h5,
h6,
.qp-product-card__title,
.qp-line-mark {
    font-family: var(--qp-font-heading);
}

.qp-site-header {
    position: fixed;
    top: 12px;
    left: 0;
    right: 0;
    z-index: 8000;
    width: min(100% - 64px, 1900px);
    margin: 0 auto;
    background: transparent;
    border: 0;
    backdrop-filter: none;
}

.admin-bar .qp-site-header {
    top: 44px;
}

.qp-site-header__bar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    column-gap: clamp(20px, 2.2vw, 42px);
    min-height: 68px;
    padding: 0 22px 0 32px;
    background: #000;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 12px;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, .05), 0 8px 22px rgba(0, 0, 0, .76);
}

.qp-site-header__brand {
    display: flex;
    align-items: center;
    justify-content: center;
}

.qp-mobile-header-telegram {
    display: none;
}

.qp-brand img {
    width: 204px;
}

.custom-logo-link img,
.qp-site-header .custom-logo {
    width: 204px;
    max-width: 204px;
    height: auto;
}

.qp-primary-nav {
    display: block;
    justify-self: start;
}

.qp-primary-nav__list {
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: clamp(12px, 1vw, 22px);
    margin: 0;
    padding: 0;
    list-style: none;
}

.qp-primary-nav__list a {
    color: #fff;
    font-size: clamp(14px, .84vw, 16px);
    font-weight: var(--qp-font-weight-quantum-regular);
    line-height: 1;
    opacity: .88;
    white-space: nowrap;
    text-transform: none;
    transition: color .18s ease, opacity .18s ease;
}

.qp-primary-nav__list a:hover {
    color: #fff;
    opacity: 1;
}

.qp-site-header__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(16px, 1.35vw, 30px);
    min-width: 0;
}

.qp-header-socials {
    display: flex;
    align-items: center;
    gap: clamp(12px, 1vw, 24px);
}

.qp-header-social {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    overflow: hidden;
    border-radius: 8px;
    color: #fff;
    font-size: 11px;
    font-weight: var(--qp-font-weight-quantum-regular);
    line-height: 1;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .16);
}

.qp-header-social img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.qp-header-social svg {
    width: 26px;
    height: 26px;
}

.qp-header-social--avito {
    background: #5f6672;
}

.qp-header-social--whatsapp {
    background: transparent;
    box-shadow: none;
}

.qp-header-social--telegram {
    background: #2da4df;
}

.qp-header-social--vk {
    background: #4776ad;
}

.qp-header-social--max {
    background: #fff;
    box-shadow: none;
}

.qp-social-avito-dot {
    position: absolute;
    display: block;
    border-radius: 999px;
}

.qp-social-avito-dot--violet {
    top: 5px;
    left: 10px;
    width: 7px;
    height: 7px;
    background: #965eea;
}

.qp-social-avito-dot--blue {
    top: 3px;
    right: 5px;
    width: 16px;
    height: 16px;
    background: #12a8f5;
}

.qp-social-avito-dot--green {
    left: 3px;
    bottom: 4px;
    width: 20px;
    height: 20px;
    background: #00d95f;
}

.qp-social-avito-dot--red {
    right: 4px;
    bottom: 4px;
    width: 13px;
    height: 13px;
    background: #ff4054;
}

.qp-header-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 124px;
    min-height: 38px;
    padding: 0 24px;
    border: 0;
    border-radius: 7px;
    background: #ae1519;
    color: #fff;
    font-size: 15px;
    font-weight: var(--qp-font-weight-quantum-regular);
    line-height: 1;
    white-space: nowrap;
    text-transform: uppercase;
}

.qp-header-action:hover {
    background: #c51a1f;
}

.qp-menu-toggle {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.qp-menu-toggle__bar {
    display: block;
    width: 23px;
    height: 3px;
    margin: 2px 0;
    border-radius: 999px;
    background: #fff;
}

.qp-offcanvas-open {
    overflow: hidden;
}

.qp-offcanvas[hidden] {
    display: none;
}

.qp-offcanvas {
    position: fixed;
    inset: 0;
    z-index: 9998;
    background: #111;
    color: #fff;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition:
        opacity .24s ease,
        visibility 0s linear .24s;
}

.qp-offcanvas.is-open {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transition:
        opacity .24s ease,
        visibility 0s linear 0s;
}

.qp-offcanvas.is-closing {
    visibility: visible;
}

.qp-offcanvas__panel {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: auto;
    background: #111;
    opacity: 0;
    transform: translateY(-14px);
    transition:
        opacity .24s ease,
        transform .28s cubic-bezier(.22, 1, .36, 1);
}

.qp-offcanvas.is-open .qp-offcanvas__panel {
    opacity: 1;
    transform: translateY(0);
}

.qp-offcanvas__close {
    position: fixed;
    top: 22px;
    right: 22px;
    z-index: 1;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.qp-offcanvas__close-line {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 42px;
    height: 5px;
    border-radius: 999px;
    background: #fff;
    transform-origin: center;
}

.qp-offcanvas__close-line--first {
    transform: translate(-50%, -50%) rotate(45deg);
}

.qp-offcanvas__close-line--second {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.qp-offcanvas__content {
    display: grid;
    justify-items: start;
    width: min(100%, 560px);
    min-height: 100%;
    padding: 100px 48px 64px 74px;
    opacity: 0;
    transform: translateX(-14px);
    transition:
        opacity .28s ease .04s,
        transform .32s cubic-bezier(.22, 1, .36, 1) .04s;
}

.qp-offcanvas.is-open .qp-offcanvas__content {
    opacity: 1;
    transform: translateX(0);
}

.qp-offcanvas-menu__list {
    display: grid;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.qp-offcanvas-menu__list a {
    position: relative;
    display: inline-flex;
    width: fit-content;
    color: #fff;
    font-size: clamp(28px, 2vw, 34px);
    font-weight: var(--qp-font-weight-quantum-bold);
    line-height: 1.08;
    letter-spacing: 0;
    transition:
        color .18s ease,
        transform .22s cubic-bezier(.22, 1, .36, 1);
}

.qp-offcanvas-menu__list a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    border-radius: 999px;
    background: var(--qp-accent-strong);
    transition: width .22s ease;
}

.qp-offcanvas-menu__list a:hover,
.qp-offcanvas-menu__list a:focus-visible {
    color: #fff;
    transform: translateX(8px);
}

.qp-offcanvas-menu__list a:hover::after,
.qp-offcanvas-menu__list a:focus-visible::after {
    width: 100%;
}

.qp-offcanvas__address {
    display: grid;
    gap: 8px;
    margin: 50px 0 0;
    color: #fff;
    font-style: normal;
}

.qp-offcanvas__address strong {
    font-size: 26px;
    font-weight: var(--qp-font-weight-quantum-bold);
    line-height: 1.08;
}

.qp-offcanvas__address span {
    font-size: 20px;
    line-height: 1.24;
}

.qp-offcanvas-socials {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-top: 40px;
}

.qp-offcanvas-social {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    overflow: hidden;
    border-radius: 16px;
    color: #fff;
    transition:
        transform .18s ease,
        filter .18s ease;
}

.qp-offcanvas-social:hover,
.qp-offcanvas-social:focus-visible {
    transform: translateY(-3px);
    filter: brightness(1.08);
}

.qp-offcanvas-social img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.qp-offcanvas-social svg {
    width: 38px;
    height: 38px;
}

.qp-offcanvas-social--avito {
    background: #5f6672;
}

.qp-offcanvas-social--whatsapp {
    background: transparent;
}

.qp-offcanvas-social--telegram {
    background: #2da4df;
}

.qp-offcanvas-social--vk {
    background: #4776ad;
}

.qp-offcanvas-social--max {
    background: #fff;
}

.qp-offcanvas-social .qp-social-avito-dot--violet {
    top: 7px;
    left: 16px;
    width: 9px;
    height: 9px;
}

.qp-offcanvas-social .qp-social-avito-dot--blue {
    top: 5px;
    right: 7px;
    width: 22px;
    height: 22px;
}

.qp-offcanvas-social .qp-social-avito-dot--green {
    left: 5px;
    bottom: 6px;
    width: 29px;
    height: 29px;
}

.qp-offcanvas-social .qp-social-avito-dot--red {
    right: 6px;
    bottom: 7px;
    width: 17px;
    height: 17px;
}

.qp-offcanvas-commerce {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.qp-offcanvas-commerce a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 4px;
    color: #fff;
    font-size: 17px;
    line-height: 1;
    text-decoration: none;
    transition:
        border-color .18s ease,
        background .18s ease,
        color .18s ease;
}

.qp-offcanvas-commerce a:hover,
.qp-offcanvas-commerce a:focus-visible {
    border-color: #fff;
    background: #fff;
    color: #080808;
}

.qp-offcanvas__callback {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    margin-top: 24px;
    padding: 0 34px;
    border: 0;
    border-radius: 4px;
    background: #a70f12;
    color: #fff;
    cursor: pointer;
    font-family: var(--qp-font-body);
    font-size: 22px;
    font-weight: var(--qp-font-weight-quantum-bold);
    line-height: 1;
}

.qp-offcanvas__callback:hover,
.qp-offcanvas__callback:focus-visible {
    background: var(--qp-accent-strong);
}

@media (prefers-reduced-motion: reduce) {
    .qp-offcanvas,
    .qp-offcanvas__panel,
    .qp-offcanvas__content,
    .qp-offcanvas-menu__list a,
    .qp-offcanvas-menu__list a::after,
    .qp-offcanvas-social {
        transition: none;
    }
}

.qp-site-main {
    background: #080808;
    padding-top: 80px;
}

@media (max-width: 1360px) and (min-width: 1201px) {
    .qp-site-header {
        width: min(100% - 32px, 1900px);
    }

    .qp-site-header__bar {
        column-gap: 16px;
        padding: 0 18px 0 22px;
    }

    .qp-site-header .custom-logo,
    .qp-site-header .custom-logo-link img,
    .qp-brand img {
        width: 170px;
        max-width: 170px;
    }

    .qp-primary-nav__list {
        gap: 12px;
    }

    .qp-primary-nav__list a {
        font-size: 14px;
    }

    .qp-site-header__actions {
        gap: 12px;
    }

    .qp-header-socials {
        gap: 10px;
    }

    .qp-header-social {
        width: 32px;
        height: 32px;
        border-radius: 7px;
    }

    .qp-header-social svg {
        width: 24px;
        height: 24px;
    }

    .qp-header-action {
        min-width: 110px;
        min-height: 36px;
        padding: 0 18px;
        font-size: 14px;
    }
}

@media (max-width: 1200px) {
    .qp-site-header {
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        padding: 0 12px;
        margin: 0;
        background: #080808;
    }

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

    .qp-site-header__bar {
        display: grid;
        grid-template-columns: 64px minmax(0, 1fr) 64px;
        min-height: 86px;
        padding: 0 28px;
        column-gap: 0;
        background: #000;
        border: 1px solid rgba(255, 255, 255, .08);
        border-radius: 16px;
        box-shadow: 0 8px 22px rgba(0, 0, 0, .72);
    }

    .qp-site-main {
        padding-top: 94px;
    }

    .qp-primary-nav {
        display: none;
    }

    .qp-mobile-header-telegram {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        justify-self: start;
        width: 44px;
        height: 44px;
        color: #fff;
    }

    .qp-mobile-header-telegram svg {
        width: 42px;
        height: 42px;
    }

    .qp-site-header__brand {
        justify-self: center;
    }

    .qp-site-header .custom-logo,
    .qp-site-header .custom-logo-link img,
    .qp-brand img {
        width: clamp(205px, 48vw, 280px);
        max-width: clamp(205px, 48vw, 280px);
    }

    .qp-site-header__actions {
        justify-self: end;
        gap: 0;
    }

    .qp-header-socials,
    .qp-header-action {
        display: none;
    }

    .qp-menu-toggle {
        display: inline-flex;
        width: 44px;
        height: 44px;
    }

    .qp-menu-toggle__bar {
        width: 34px;
        height: 5px;
        margin: 3px 0;
        border-radius: 999px;
    }
}

@media (max-width: 420px) {
    .qp-site-header {
        padding: 0 8px;
    }

    .qp-site-header__bar {
        grid-template-columns: 52px minmax(0, 1fr) 52px;
        min-height: 76px;
        padding: 0 18px;
        border-radius: 14px;
    }

    .qp-site-main {
        padding-top: 84px;
    }

    .qp-mobile-header-telegram,
    .qp-menu-toggle {
        width: 38px;
        height: 38px;
    }

    .qp-mobile-header-telegram svg {
        width: 36px;
        height: 36px;
    }

    .qp-menu-toggle__bar {
        width: 29px;
        height: 4px;
        margin: 2px 0;
    }

    .qp-site-header .custom-logo,
    .qp-site-header .custom-logo-link img,
    .qp-brand img {
        width: clamp(174px, 52vw, 220px);
        max-width: clamp(174px, 52vw, 220px);
    }
}

@media (max-width: 700px) {
    .qp-offcanvas__close {
        top: 16px;
        right: 16px;
        width: 34px;
        height: 34px;
    }

    .qp-offcanvas__close-line {
        width: 34px;
        height: 4px;
    }

    .qp-offcanvas__content {
        width: 100%;
        min-height: 100%;
        padding: 74px 26px 44px;
    }

    .qp-offcanvas-menu__list {
        gap: 12px;
    }

    .qp-offcanvas-menu__list a {
        font-size: 24px;
        line-height: 1.08;
    }

    .qp-offcanvas__address {
        gap: 6px;
        margin-top: 36px;
    }

    .qp-offcanvas__address strong {
        font-size: 21px;
    }

    .qp-offcanvas__address span {
        font-size: 16px;
    }

    .qp-offcanvas-socials {
        gap: 14px;
        margin-top: 28px;
    }

    .qp-offcanvas-social {
        width: 42px;
        height: 42px;
        border-radius: 12px;
    }

    .qp-offcanvas-social svg {
        width: 30px;
        height: 30px;
    }

    .qp-offcanvas-social .qp-social-avito-dot--violet {
        top: 5px;
        left: 12px;
        width: 7px;
        height: 7px;
    }

    .qp-offcanvas-social .qp-social-avito-dot--blue {
        top: 4px;
        right: 5px;
        width: 17px;
        height: 17px;
    }

    .qp-offcanvas-social .qp-social-avito-dot--green {
        left: 4px;
        bottom: 5px;
        width: 22px;
        height: 22px;
    }

    .qp-offcanvas-social .qp-social-avito-dot--red {
        right: 5px;
        bottom: 5px;
        width: 13px;
        height: 13px;
    }

    .qp-offcanvas-commerce {
        display: grid;
        width: 100%;
        gap: 10px;
        margin-top: 22px;
    }

    .qp-offcanvas-commerce a {
        width: 100%;
        min-height: 40px;
        font-size: 16px;
    }

    .qp-offcanvas__callback {
        height: 48px;
        min-height: 48px;
        margin-top: 22px;
        padding: 0 24px;
        font-size: 18px;
    }
}

@media (min-width: 701px) and (max-height: 760px) {
    .qp-offcanvas__content {
        padding-top: 74px;
        padding-bottom: 36px;
    }

    .qp-offcanvas-menu__list {
        gap: 12px;
    }

    .qp-offcanvas-menu__list a {
        font-size: clamp(26px, 2vw, 30px);
        line-height: 1.06;
    }

    .qp-offcanvas__address {
        gap: 6px;
        margin-top: 34px;
    }

    .qp-offcanvas__address strong {
        font-size: 22px;
    }

    .qp-offcanvas__address span {
        font-size: 18px;
    }

    .qp-offcanvas-socials {
        gap: 20px;
        margin-top: 32px;
    }

    .qp-offcanvas-social {
        width: 46px;
        height: 46px;
        border-radius: 14px;
    }

    .qp-offcanvas-social svg {
        width: 32px;
        height: 32px;
    }

    .qp-offcanvas-social .qp-social-avito-dot--violet {
        top: 6px;
        left: 13px;
        width: 10px;
        height: 10px;
    }

    .qp-offcanvas-social .qp-social-avito-dot--blue {
        top: 4px;
        right: 6px;
        width: 19px;
        height: 19px;
    }

    .qp-offcanvas-social .qp-social-avito-dot--green {
        left: 4px;
        bottom: 5px;
        width: 25px;
        height: 25px;
    }

    .qp-offcanvas-social .qp-social-avito-dot--red {
        right: 5px;
        bottom: 6px;
        width: 16px;
        height: 16px;
    }

    .qp-offcanvas-commerce {
        margin-top: 24px;
    }

    .qp-offcanvas-commerce a {
        min-height: 40px;
        font-size: 16px;
    }

    .qp-offcanvas__callback {
        min-height: 48px;
        margin-top: 20px;
        padding: 0 30px;
        font-size: 20px;
    }
}

.qp-hero {
    padding: 94px 0 18px;
    background: #080808;
    text-align: center;
}

.qp-hero__grid {
    display: block;
}

.qp-hero h1 {
    max-width: none;
    color: #fff;
    font-size: 50px;
    font-weight: 900;
    letter-spacing: .01em;
    text-transform: uppercase;
}

.qp-hero p {
    max-width: none;
    margin: 4px 0 18px;
    color: #fff;
    font-size: 25px;
    font-weight: 500;
    line-height: 1.15;
    text-transform: uppercase;
}

.qp-video-card {
    position: relative;
    width: min(var(--qp-shell), 100%);
    margin: 0 auto;
    overflow: hidden;
    border-radius: 28px;
    background: #111;
}

.qp-home-video {
    position: relative;
}

.qp-home-video video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 7;
    object-fit: cover;
    border-radius: var(--qp-radius-block);
}

.qp-home-video--mobile {
    display: none;
}

.qp-video-card img,
.qp-video-card video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 7;
    object-fit: cover;
}

.qp-video-card img {
    filter: brightness(.45);
}

.qp-home-video__play {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 128px;
    height: 128px;
    margin: auto;
    border: 0;
    border-radius: 50%;
    background: rgba(183, 21, 21, .92);
    box-shadow: 0 16px 44px rgba(0, 0, 0, .38);
    cursor: pointer;
    transition: transform .2s ease, opacity .2s ease, background .2s ease;
}

.qp-home-video__play:hover,
.qp-home-video__play:focus-visible {
    background: rgba(202, 24, 24, .98);
    transform: scale(1.04);
}

.qp-home-video__play span {
    display: block;
    width: 0;
    height: 0;
    margin-left: 10px;
    border-top: 30px solid transparent;
    border-bottom: 30px solid transparent;
    border-left: 48px solid #fff;
}

.qp-home-video--playing .qp-home-video__play {
    opacity: 0;
    pointer-events: none;
}

.qp-video-card__play {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 0;
    height: 0;
    border-top: 72px solid transparent;
    border-bottom: 72px solid transparent;
    border-left: 128px solid rgba(183, 21, 21, .9);
    transform: translateX(18px);
}

.qp-video-card__caption {
    position: absolute;
    left: 36px;
    bottom: 64px;
    color: #fff;
    font-size: 34px;
    font-weight: 900;
    line-height: 1;
    text-align: left;
    text-transform: uppercase;
}

.qp-video-card__caption small {
    font-size: 18px;
    font-weight: 500;
    text-transform: none;
}

.qp-section {
    padding: 20px 0;
    background: #080808;
}

.qp-home-cards-section {
    padding-top: 38px;
}

.qp-home-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
    align-items: stretch;
}

.qp-home-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-width: 0;
    margin: 0;
    padding: 30px;
    background: #1a1a1a;
    border-radius: 30px;
}

.qp-home-card h2,
.qp-shop-hero h1 {
    margin: 0 0 20px;
    color: #fff;
    font-size: 34px;
    font-weight: 900;
    line-height: 1.04;
    text-transform: uppercase;
}

.qp-home-card img {
    width: 100%;
    border-radius: 8px;
}

.qp-home-card p {
    color: #fff;
    font-family: var(--qp-font-heading);
    font-size: var(--qp-home-quantum-copy-size);
    font-weight: var(--qp-font-weight-quantum-regular);
    line-height: 1.45;
}

.qp-shop-hero p {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.45;
}

.qp-home-card p {
    flex: 1;
}

.qp-home-configurator-section {
    padding-top: 20px;
}

.qp-home-configurator {
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    min-height: 320px;
    background: #1a1a1a;
    border-radius: 30px;
}

.qp-home-configurator__media {
    min-width: 0;
}

.qp-home-configurator__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.qp-home-configurator__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    min-width: 0;
    padding: 56px 58px;
}

.qp-home-configurator__content h2 {
    margin: 0 0 24px;
    color: #fff;
    font-size: 34px;
    font-weight: 900;
    line-height: 1.04;
    text-transform: uppercase;
}

.qp-home-configurator__content p {
    max-width: 460px;
    margin: 0 0 22px;
    color: #fff;
    font-family: var(--qp-font-heading);
    font-size: var(--qp-home-quantum-copy-size);
    font-weight: var(--qp-font-weight-quantum-regular);
    line-height: 1.45;
}

.qp-button--primary,
.qp-button--card,
.single_add_to_cart_button,
.qp-line-order-btn {
    background: var(--qp-accent);
    color: #fff;
}

.qp-button--primary {
    min-width: 148px;
    margin-top: 18px;
    border-radius: 8px;
}

.qp-shop-hero {
    padding: 62px 0 18px;
    background: #080808;
    border: 0;
    text-align: center;
}

.qp-video-card--shop {
    margin-bottom: 48px;
}

.qp-video-card--shop img {
    aspect-ratio: 16 / 7;
}

.qp-shop-hero h1 {
    font-size: 42px;
}

.qp-line-mark {
    margin: 34px 0 28px;
    color: #fff;
    font-size: 24px;
    font-weight: 900;
    line-height: .92;
}

.qp-line-mark span {
    color: #e1181e;
}

.qp-shop-hero p {
    max-width: 720px;
    margin: 0 auto;
}

.qp-shop-toolbar {
    display: none;
}

.qp-shop-products {
    padding-top: 36px;
}

.qp-home-popular {
    padding-top: 58px;
}

.qp-home-popular__head {
    margin-bottom: 36px;
    text-align: center;
}

.qp-home-popular__head h2 {
    margin: 0;
    color: #fff;
    font-size: 56px;
    font-weight: 900;
    line-height: .95;
    text-transform: uppercase;
}

.qp-home-popular__subline {
    margin: 0;
    color: rgba(255, 255, 255, .18);
    font-size: 27px;
    font-weight: 900;
    letter-spacing: .64em;
    line-height: 1;
    text-indent: .64em;
    text-transform: uppercase;
}

.qp-home-popular__caption {
    margin: 28px 0 0;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .qp-home-popular {
        padding-top: 44px;
    }

    .qp-home-popular__head {
        margin-bottom: 30px;
    }

    .qp-home-popular__head h2 {
        font-size: 46px;
    }

    .qp-home-popular__subline {
        font-size: 22px;
        letter-spacing: .42em;
        text-indent: .42em;
    }

    .qp-home-popular__caption {
        margin-top: 22px;
        font-size: 17px;
    }
}

@media (max-width: 480px) {
    .qp-home-popular__head h2 {
        font-size: 38px;
    }

    .qp-home-popular__subline {
        font-size: 18px;
        letter-spacing: .34em;
        text-indent: .34em;
    }
}

.qp-product-grid,
.products.qp-product-grid,
.woocommerce ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    width: min(650px, 100%);
    margin: 0 auto;
}

.qp-home-popular__grid.products.qp-product-grid {
    grid-template-columns: repeat(var(--qp-grid-columns-desktop, 3), minmax(0, 1fr));
    gap: 24px;
    width: 100%;
}

.qp-home-products {
    padding-top: 58px;
}

.qp-home-products__head {
    margin-bottom: 24px;
    text-align: center;
}

.qp-home-products__head h2 {
    margin: 0;
    color: #fff;
    font-size: 55px;
    font-weight: 900;
    line-height: 1.04;
    text-transform: uppercase;
}

.qp-home-products__head p {
    margin: 6px 0 0;
    color: rgba(255, 255, 255, .72);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.35;
}

.qp-home-products__grid.products.qp-product-grid {
    grid-template-columns: repeat(var(--qp-grid-columns-desktop, 3), minmax(0, 1fr));
    gap: 24px;
    width: 100%;
}

.qp-home-products__all {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    margin-top: 24px;
    border: 1px solid rgba(255, 255, 255, .9);
    border-radius: 0;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}

.qp-home-products__all:hover,
.qp-home-products__all:focus-visible {
    background: #fff;
    border-color: #fff;
    color: #080808;
}

.qp-home-products-selection-cta {
    padding-top: 58px;
    padding-bottom: 0;
}

.qp-product-card-carousel {
    position: relative;
    width: 100%;
    min-width: 0;
}

.qp-product-card-carousel__rail.products.qp-product-grid {
    --qp-card-carousel-gap: 16px;
    display: flex;
    grid-template-columns: none;
    gap: var(--qp-card-carousel-gap);
    overflow-x: auto;
    width: 100%;
    margin: 0;
    padding: 0 10px;
    list-style: none;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.qp-product-card-carousel__rail::-webkit-scrollbar {
    display: none;
}

.qp-product-card-carousel__rail .qp-product-card {
    flex: 0 0 calc((100% - (var(--qp-card-carousel-gap) * 2)) / 3);
    min-width: 0;
    scroll-snap-align: start;
}

.qp-product-card-carousel .qp-product-lines__arrow {
    top: 36%;
}

.qp-product-card-carousel .qp-product-lines__arrow--prev {
    left: -4px;
}

.qp-product-card-carousel .qp-product-lines__arrow--next {
    right: -4px;
}

@media (max-width: 1100px) {
    .qp-home-popular__grid.products.qp-product-grid {
        grid-template-columns: repeat(var(--qp-grid-columns-tablet, 2), minmax(0, 1fr));
    }

    .qp-home-products__grid.products.qp-product-grid {
        grid-template-columns: repeat(var(--qp-grid-columns-tablet, 2), minmax(0, 1fr));
    }

    .qp-product-card-carousel__rail .qp-product-card {
        flex-basis: calc((100% - var(--qp-card-carousel-gap)) / 2);
    }
}

.qp-product-card {
    background: #1b1b1b;
    border: 0;
    border-radius: 28px;
    box-shadow: none;
}

.qp-product-card__body {
    padding: 22px;
}

.qp-product-card__title {
    min-height: 42px;
    color: #fff;
    font-size: 24px;
    font-weight: 900;
    line-height: .95;
}

.qp-product-card__media {
    padding: 0;
    background: transparent;
}

.qp-product-card__image,
.qp-product-card__media img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.qp-product-card__color-slot {
    display: flex;
    justify-content: center;
    min-height: 28px;
    margin: 4px auto 0;
}

.qp-product-card .qp-color-toggle {
    display: inline-flex;
    gap: 7px;
    align-items: center;
    width: max-content;
    padding: 4px 10px;
    color: #b7b7b7;
    font-size: 10px;
    font-weight: 400;
    line-height: 1;
    background: #3c3c3c;
    border-radius: 999px;
    text-transform: uppercase;
}

.qp-product-card .qp-color-toggle__label {
    width: auto;
}

.qp-product-card .qp-color-toggle__dots {
    gap: 7px;
}

.qp-product-card .qp-color-dot {
    width: 20px;
    height: 20px;
    padding: 0;
    border: 2px solid transparent;
    box-shadow: none;
}

.qp-product-card .qp-color-dot--black {
    background: #161616;
}

.qp-product-card .qp-color-dot--white {
    background: #f2f2f2;
}

.qp-product-card .qp-color-dot.active {
    border-color: #bd1115;
    box-shadow: none;
}

.qp-product-card__footer {
    grid-template-columns: 1fr auto auto;
    gap: 12px;
    align-items: center;
    margin-top: 20px;
}

.qp-product-card__price {
    color: #fff;
    font-size: 18px;
    font-weight: 900;
}

.qp-product-card__credit {
    color: #cfcfcf;
    font-size: 12px;
    text-align: right;
}

.qp-product-card__info {
    display: inline-grid;
    width: 18px;
    height: 18px;
    place-items: center;
    border-radius: 50%;
    background: #8b8b8b;
    color: #171717;
    font-size: 12px;
    font-weight: 900;
    font-style: normal;
}

.qp-button--card {
    width: 100%;
    min-height: 40px;
    border-radius: 8px;
    text-transform: uppercase;
}

.qp-product-card__actions {
    display: grid;
    gap: 12px;
    margin-top: 10px;
}

.qp-product-card__details {
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    text-align: center;
}

.qp-product-card__specs {
    display: grid;
    gap: 8px;
    margin: 20px 0 0;
    padding-top: 0;
    border-top: 0;
}

.qp-product-card__specs div {
    display: grid;
    grid-template-columns: 44px 1fr;
    grid-template-rows: auto auto;
    gap: 2px 12px;
    align-items: center;
    min-height: 54px;
    padding: 10px 12px;
    background: #252525;
    border-radius: 12px;
}

.qp-product-card__specs dt {
    grid-column: 2;
    margin: 0;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.05;
}

.qp-product-card__specs dt::before {
    content: "";
    grid-column: 1;
    grid-row: 1 / 3;
    display: none;
}

.qp-product-card__spec-icon {
    display: block;
    grid-column: 1;
    grid-row: 1 / 3;
    width: 26px;
    height: 26px;
    place-self: center;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: .92;
}

.qp-product-card__specs dd {
    grid-column: 2;
    margin: 0;
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    line-height: 1.15;
    text-transform: uppercase;
}

.qp-product-card__specs div::before {
    content: "";
    display: none;
    grid-column: 1;
    grid-row: 1 / 3;
    width: 26px;
    height: 26px;
    place-self: center;
    background: rgba(255, 255, 255, .82);
    border-radius: 6px;
    mask: linear-gradient(#000 0 0);
}

.qp-product-card__specs select {
    width: 100%;
    min-height: 32px;
    margin-top: 3px;
    border: 1px solid #4a4a4a;
    border-radius: 4px;
    background: #2f2f2f;
    color: #fff;
    font: inherit;
    font-size: 12px;
    font-weight: 900;
}

.qp-custom-product-card {
    display: block;
    width: 100%;
    min-width: 0;
    padding: 24px;
    overflow: hidden;
    background: #171717;
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: var(--qp-radius-block);
    box-shadow: 0 0 28px rgba(255, 255, 255, .12);
}

.qp-custom-product-card__body {
    display: grid;
    grid-template-columns: minmax(280px, 470px) minmax(0, 1fr);
    gap: 32px;
    align-items: center;
}

.qp-custom-product-card__media-wrap {
    position: relative;
    min-width: 0;
}

.qp-custom-product-card__media {
    display: block;
    overflow: hidden;
    background: #111;
}

.qp-custom-product-card__image,
.qp-custom-product-card__media img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.qp-custom-product-card__color-slot {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 3;
}

.qp-custom-product-card .qp-color-toggle {
    display: inline-flex;
    gap: 7px;
    align-items: center;
    width: max-content;
    padding: 4px 10px;
    color: #b7b7b7;
    font-size: 10px;
    font-weight: 400;
    line-height: 1;
    background: #3c3c3c;
    border-radius: 999px;
    text-transform: uppercase;
}

.qp-custom-product-card .qp-color-toggle__dots {
    gap: 7px;
}

.qp-custom-product-card .qp-color-dot {
    width: 24px;
    height: 24px;
    min-width: 24px;
    min-height: 24px;
    padding: 0;
    border: 2px solid transparent;
    box-shadow: none;
}

.qp-custom-product-card .qp-color-dot.active {
    border-color: #bd1115;
    box-shadow: none;
}

.qp-custom-product-card__content {
    min-width: 0;
}

.qp-custom-product-card__title {
    display: block;
    margin: 0 0 18px;
    color: #fff;
    font-size: 29px;
    font-weight: 900;
    line-height: 1.04;
    text-decoration: none;
    text-transform: uppercase;
}

.qp-custom-product-card__price {
    margin-bottom: 28px;
    color: #fff;
    font-size: 18px;
    font-weight: 900;
    line-height: 1;
}

.qp-custom-product-card__specs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin: 0 0 18px;
    padding: 0;
}

.qp-custom-product-card__spec {
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr);
    grid-template-rows: auto auto;
    gap: 4px 14px;
    align-items: center;
    min-height: 78px;
    padding: 12px 10px 12px 14px;
    background: #252525;
    border-radius: 8px;
}

.qp-custom-product-card__spec-icon {
    display: block;
    grid-column: 1;
    grid-row: 1 / 3;
    width: 24px;
    height: 24px;
    place-self: center;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: .92;
}

.qp-custom-product-card__spec dt {
    grid-column: 2;
    margin: 0;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.05;
}

.qp-custom-product-card__spec dd {
    grid-column: 2;
    margin: 0;
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    line-height: 1.15;
    text-transform: uppercase;
}

.qp-custom-product-card__spec .jet-listing-dynamic-field__content {
    width: 100%;
}

.qp-custom-product-card__spec select {
    width: 100%;
    min-height: 30px;
    margin-top: 0;
    border: 1px solid #4a4a4a;
    border-radius: 4px;
    background: #2f2f2f;
    color: #fff;
    font: inherit;
    font-size: 12px;
    font-weight: 900;
}

.qp-custom-product-card__actions {
    display: grid;
    gap: 10px;
}

.qp-custom-product-card__actions .qp-card-order-btn {
    min-height: 40px;
    margin-top: 0;
    border-radius: 4px;
}

.qp-custom-product-card__details {
    display: block;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
}

@media (max-width: 1024px) {
    .qp-custom-product-card__body {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .qp-custom-product-card__media-wrap {
        width: min(520px, 100%);
        margin-inline: auto;
    }
}

@media (max-width: 768px) {
    .qp-product-card__body {
        padding: 20px;
    }

    .qp-custom-product-card {
        width: min(360px, 100%);
        margin-inline: auto;
        padding: 18px;
        border-radius: 22px;
    }

    .qp-custom-product-card__title {
        font-size: 25px;
        text-align: left;
    }

    .qp-custom-product-card__price {
        margin-bottom: 18px;
    }

    .qp-custom-product-card__specs {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .qp-custom-product-card__spec {
        min-height: 64px;
    }
}

.qp-shop-catalog {
    background: #080808;
}

.qp-shop-catalog__hero {
    padding: 54px 0 42px;
    text-align: center;
}

.qp-shop-catalog__hero h1 {
    margin: 0 0 34px;
    color: #fff;
    font-size: 38px;
    font-weight: var(--qp-font-weight-quantum-bold);
    line-height: 1.08;
    text-transform: uppercase;
}

.qp-shop-catalog__video {
    width: 100%;
    margin-inline: auto;
}

.qp-shop-lines {
    padding: 0 0 72px;
}

.qp-shop-line {
    display: grid;
    gap: 34px;
    padding: 22px 0 62px;
}

.qp-shop-line + .qp-shop-line {
    padding-top: 44px;
}

.qp-shop-line__head {
    display: grid;
    gap: 22px;
    justify-items: center;
    text-align: center;
}

.qp-shop-line__image {
    display: block;
    width: clamp(150px, 15%, 190px);
    color: inherit;
    text-decoration: none;
}

.qp-shop-line__image-img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.qp-shop-line__mark {
    display: inline-grid;
    place-items: center;
    min-width: 126px;
    color: #fff;
    font-size: 18px;
    font-weight: var(--qp-font-weight-quantum-bold);
    line-height: .9;
    text-transform: uppercase;
    text-shadow: 2px 2px 0 #244c8f;
}

.qp-shop-line__mark::before {
    content: "";
    display: block;
    width: 54px;
    height: 54px;
    margin-bottom: 6px;
    border: 3px solid #fff;
    border-radius: 50%;
    background:
        radial-gradient(circle at center, #080808 0 28%, transparent 29%),
        conic-gradient(from 18deg, #fff 0 14%, transparent 15% 28%, #fff 29% 43%, transparent 44% 57%, #fff 58% 72%, transparent 73% 86%, #fff 87% 100%);
    box-shadow: 0 0 0 4px #bd1115;
}

.qp-shop-line__mark span {
    display: block;
    font-size: 17px;
}

.qp-shop-line__mark strong {
    display: block;
    color: #e1181e;
    font-size: 17px;
}

.qp-shop-line__head p {
    width: min(720px, 100%);
    margin: 0;
    color: #fff;
    font-size: 20px;
    font-weight: var(--qp-font-weight-quantum-regular);
    line-height: 1.45;
}

.qp-shop-line__products.products.qp-product-grid {
    grid-template-columns: repeat(var(--qp-grid-columns-desktop, 3), minmax(0, 1fr));
    gap: 24px;
    width: 100%;
}

.qp-shop-line__custom-title {
    margin: 2px 0 -8px;
    color: #fff;
    font-size: 20px;
    font-weight: var(--qp-font-weight-quantum-regular);
    line-height: 1.35;
    text-align: center;
}

.qp-shop-line__custom {
    width: 100%;
}

.qp-shop-line__custom .qp-custom-product-card {
    width: 100%;
}

@media (max-width: 1100px) {
    .qp-shop-line__products.products.qp-product-grid {
        grid-template-columns: repeat(var(--qp-grid-columns-tablet, 2), minmax(0, 1fr));
    }

    .qp-shop-catalog__hero h1 {
        font-size: 34px;
    }
}

@media (max-width: 768px) {
    .qp-shop-catalog__hero {
        padding: 34px 0 26px;
    }

    .qp-shop-catalog__hero h1 {
        margin-bottom: 24px;
        font-size: 22px;
    }

    .qp-shop-line {
        gap: 24px;
        padding-bottom: 46px;
    }

    .qp-shop-line__head p {
        font-size: 18px;
        text-align: left;
    }

    .qp-shop-line__image {
        width: clamp(132px, 38vw, 170px);
    }

    .qp-shop-line__custom-title {
        font-size: 18px;
    }

    .qp-shop-line__products.products.qp-product-grid {
        grid-template-columns: repeat(var(--qp-grid-columns-mobile, 1), minmax(0, 1fr));
        width: min(360px, 100%);
    }
}

.qp-product-detail {
    background: #080808;
}

.woocommerce-breadcrumb {
    color: #fff;
}

.qp-product-detail__grid {
    display: block;
    width: min(780px, 100%);
    margin: 0 auto;
}

.qp-product-detail__media,
.qp-product-detail__summary,
.qp-product-detail__content {
    background: transparent;
    border: 0;
    border-radius: 0;
}

.qp-product-detail__image {
    min-height: 0;
    background: transparent;
}

.qp-product-detail__image img {
    max-height: none;
    filter: brightness(.72);
}

.qp-product-detail__thumbs {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    border: 0;
    opacity: .72;
}

.qp-product-detail__thumbs img {
    border: 0;
    border-radius: 0;
    filter: brightness(.7);
}

.qp-product-detail__summary {
    padding: 34px 0;
}

.qp-product-detail__summary h1 {
    color: #fff;
    font-size: 42px;
    font-weight: 900;
    text-transform: uppercase;
}

.qp-product-detail__price,
.qp-build-price {
    color: #fff;
}

.qp-product-detail__excerpt {
    color: #d8d8d8;
}

.qp-build-select-row label {
    color: #333;
}

.qp-build-specs {
    background: transparent;
    color: #2e2e2e;
    padding: 0;
}

.qp-build-configure-btn {
    border-color: rgba(255, 255, 255, .25);
    background: transparent;
    color: #fff;
}

.qp-product-detail__meta,
.qp-product-detail__meta a {
    color: #d8d8d8;
}

.qp-product-detail__content {
    width: min(780px, 100%);
    margin: 20px auto 0;
    color: #fff;
}

.qp-product-main {
    padding: 46px 0 54px;
    background: #080808;
}

.qp-product-main__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(430px, 1.05fr);
    gap: clamp(36px, 4vw, 64px);
    align-items: start;
}

.qp-product-gallery {
    align-self: start;
    min-width: 0;
}

.qp-product-gallery__main {
    overflow: hidden;
    width: 100%;
    padding: 0;
    border: 0;
    background: #111;
    cursor: zoom-in;
}

.qp-product-gallery__main-img,
.qp-product-gallery__main img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.qp-product-gallery__thumbs {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
    margin-top: 14px;
}

.qp-product-gallery__thumb {
    display: block;
    overflow: hidden;
    padding: 0;
    border: 1px solid transparent;
    background: transparent;
    cursor: pointer;
}

.qp-product-gallery__thumb.is-active {
    border-color: #bd1115;
}

.qp-product-gallery__thumb img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.qp-product-summary {
    align-self: start;
    color: #fff;
}

.qp-product-summary h1 {
    margin: 0 0 14px;
    color: #fff;
    font-size: clamp(34px, 2.3vw, 40px);
    font-weight: 900;
    line-height: 1.04;
    text-transform: uppercase;
}

.qp-product-summary__price--top {
    margin: 0 0 16px;
    color: #fff;
    font-size: 20px;
    font-weight: 900;
}

.qp-product-summary__price--top p,
.qp-product-summary__price--top .price {
    margin: 0;
}

.qp-product-summary .qp-build-selectors {
    gap: 12px;
    margin: 20px 0 18px;
}

.qp-product-summary .qp-build-select-row {
    gap: 7px;
    margin-bottom: 12px;
}

.qp-product-summary .qp-build-select-row label {
    color: #cfcfcf;
    font-size: 13px;
    font-weight: 500;
}

.qp-product-summary .qp-build-select-row select {
    min-height: 42px;
    padding: 9px 38px 9px 14px;
    border: 1px solid #3d3d3d;
    border-radius: 4px;
    background: #151515;
    color: #fff;
    font-size: 14px;
}

.qp-product-summary .qp-build-price {
    margin: 18px 0 20px;
    color: #fff;
    font-size: 26px;
    font-weight: 900;
}

.qp-product-summary .qp-build-specs {
    gap: 0;
    margin: 0 0 18px;
    padding: 16px;
    background: rgba(255, 255, 255, .055);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 8px;
    color: #fff;
}

.qp-product-summary .qp-build-specs__row {
    display: grid;
    grid-template-columns: minmax(150px, .9fr) minmax(0, 1.1fr);
    gap: 14px;
    padding: 6px 0;
    font-size: 13px;
    line-height: 1.38;
}

.qp-product-summary .qp-build-specs__label {
    color: #bcbcbc;
}

.qp-product-summary .qp-build-specs__value {
    color: #fff;
    font-weight: 700;
    text-align: right;
}

.qp-product-summary .qp-color-toggle {
    display: inline-flex !important;
    justify-content: flex-start;
    width: 100%;
    min-height: 42px;
    margin: 0 0 16px;
    padding: 10px 14px;
    color: #fff;
    font-size: 13px;
}

.qp-product-summary .qp-color-dot {
    width: 28px;
    height: 28px;
    border-color: transparent;
    box-shadow: none;
}

.qp-product-summary .qp-color-dot.active {
    border-color: #bd1115;
    box-shadow: none;
}

.qp-product-summary .qp-build-configure-btn {
    display: inline-flex !important;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 44px;
    margin: 0 0 18px;
    border-radius: 4px;
    background: transparent;
    border-color: rgba(255, 255, 255, .25);
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
}

.qp-product-summary__cart {
    margin-top: 16px;
}

.qp-product-summary__order,
.qp-product-summary .single_add_to_cart_button {
    min-height: 50px;
    border-radius: 4px;
    background: #bd1115;
    color: #fff;
    font-size: 18px;
    text-transform: uppercase;
}

.qp-product-summary__consult {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 44px;
    margin-top: 10px;
    background: #fff;
    color: #111;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
}

.qp-variation-select,
.qp-product-card__specs select,
.qp-custom-product-card__spec select,
.qp-product-summary .qp-build-select-row select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: var(--qp-select-chevron);
    background-repeat: no-repeat;
    cursor: pointer;
}

.qp-variation-select,
.qp-product-card__specs select,
.qp-custom-product-card__spec select {
    padding-right: 32px;
    background-position: right 9px center;
    background-size: 16px 16px;
}

.qp-product-summary .qp-build-select-row select {
    padding-right: 48px;
    background-position: right 16px center;
    background-size: 20px 20px;
}

@media (min-width: 769px) {
    .qp-product-summary .qp-build-selectors:has(.qp-build-configure-btn) {
        grid-template-columns: minmax(220px, .9fr) minmax(260px, 1.1fr);
        column-gap: 14px;
        row-gap: 12px;
    }

    .qp-product-summary .qp-build-selectors:has(.qp-build-configure-btn) .qp-build-select-row,
    .qp-product-summary .qp-build-selectors:has(.qp-build-configure-btn) .qp-build-price,
    .qp-product-summary .qp-build-selectors:has(.qp-build-configure-btn) .qp-build-specs {
        grid-column: 1 / -1;
    }

    .qp-product-summary .qp-build-selectors:has(.qp-build-configure-btn) .qp-color-toggle,
    .qp-product-summary .qp-build-selectors:has(.qp-build-configure-btn) .qp-build-configure-btn {
        width: 100%;
        margin-bottom: 0;
    }
}

.qp-product-video {
    padding-top: 28px;
}

.qp-product-video__frame video {
    aspect-ratio: 16 / 9;
}

.qp-product-lines {
    padding: 34px 0 44px;
}

.qp-product-lines .qp-shell {
    min-width: 0;
}

.qp-product-lines h2 {
    margin: 0 0 40px;
    color: #fff;
    font-size: 30px;
    font-weight: 900;
    line-height: 1.05;
    text-transform: uppercase;
}

.qp-product-lines__carousel {
    position: relative;
    width: 100%;
    margin-inline: auto;
    min-width: 0;
}

.qp-product-lines__rail {
    --qp-lines-gap: 10px;
    display: flex;
    justify-content: flex-start;
    gap: var(--qp-lines-gap);
    overflow-x: auto;
    padding: 0;
    scroll-behavior: smooth;
    scroll-padding-inline: 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.qp-product-lines__rail::-webkit-scrollbar {
    display: none;
}

.qp-product-lines__item {
    flex: 0 0 calc((100% - (var(--qp-lines-gap) * 2)) / 3);
    display: grid;
    gap: 12px;
    min-height: 272px;
    align-content: center;
    justify-items: center;
    padding: 22px 22px 20px;
    border: 1px solid rgba(255, 255, 255, .58);
    background: #080808;
    color: #fff;
    text-align: center;
    text-decoration: none;
    scroll-snap-align: start;
}

.qp-product-lines__arrow {
    position: absolute;
    top: 50%;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 90px;
    height: 90px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: #a70f12;
    color: #fff;
    cursor: pointer;
    transform: translateY(-50%);
}

.qp-product-lines__arrow::before {
    content: "";
    display: block;
    width: 30px;
    height: 30px;
    border-color: currentColor;
    border-style: solid;
    transform-origin: 50% 50%;
}

.qp-product-lines__arrow--prev {
    left: -11px;
}

.qp-product-lines__arrow--prev::before {
    margin-left: 8px;
    border-width: 0 0 8px 8px;
    transform: rotate(45deg);
}

.qp-product-lines__arrow--next {
    right: -11px;
}

.qp-product-lines__arrow--next::before {
    margin-right: 8px;
    border-width: 8px 8px 0 0;
    transform: rotate(45deg);
}

.qp-product-lines__arrow:hover,
.qp-product-lines__arrow:focus-visible {
    background: #bd1115;
}

.qp-product-lines__image {
    width: min(100%, 350px);
    height: 176px;
    object-fit: contain;
}

.qp-product-lines__item span {
    font-size: 26px;
    line-height: 1.15;
}

.qp-system-category {
    background: #080808;
}

.qp-system-hero {
    padding: 72px 0 42px;
}

.qp-system-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
    gap: 96px;
    align-items: center;
}

.qp-system-hero__copy {
    min-width: 0;
}

.qp-system-hero h1 {
    margin: 0 0 16px;
    color: #fff;
    font-size: 34px;
    font-weight: 900;
    line-height: 1.05;
    text-transform: uppercase;
}

.qp-system-hero .woocommerce-breadcrumb {
    margin: 0 0 34px;
    color: #fff;
    font-size: 15px;
    font-weight: var(--qp-font-weight-quantum-regular);
}

.qp-system-hero .woocommerce-breadcrumb a {
    color: #fff;
    text-decoration: none;
}

.qp-system-hero__description {
    max-width: 560px;
    color: #fff;
    font-size: 19px;
    font-weight: var(--qp-font-weight-quantum-regular);
    line-height: 1.45;
}

.qp-system-hero__description p {
    margin: 0;
}

.qp-system-hero__media {
    justify-self: end;
    width: 100%;
}

.qp-system-hero__image,
.qp-system-hero__media img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.qp-system-products {
    padding: 0 0 74px;
}

.qp-system-products__carousel {
    position: relative;
    width: 100%;
    min-width: 0;
}

.qp-system-products__rail.products.qp-product-grid {
    --qp-card-carousel-gap: 16px;
    display: flex;
    grid-template-columns: none;
    gap: var(--qp-card-carousel-gap);
    overflow-x: auto;
    width: 100%;
    margin: 0;
    padding: 0 10px;
    list-style: none;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.qp-system-products__rail::-webkit-scrollbar {
    display: none;
}

.qp-system-products__rail .qp-product-card {
    flex: 0 0 calc((100% - (var(--qp-card-carousel-gap) * 2)) / 3);
    min-width: 0;
    scroll-snap-align: start;
}

.qp-system-products .qp-product-lines__arrow {
    top: 36%;
}

.qp-system-products .qp-product-lines__arrow--prev {
    left: -4px;
}

.qp-system-products .qp-product-lines__arrow--next {
    right: -4px;
}

.qp-system-reviews {
    padding-top: 0;
}

.qp-line-hero__media {
    max-width: 420px;
    background: transparent;
}

.qp-line-category .qp-system-hero__image,
.qp-line-category .qp-system-hero__media img {
    aspect-ratio: 1024 / 539;
    object-fit: contain;
}

.qp-line-products {
    padding: 0 0 74px;
}

.qp-line-products__grid.products.qp-product-grid {
    gap: 16px;
}

@media (max-width: 1024px) {
    .qp-system-hero__grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .qp-system-hero__media {
        justify-self: start;
        width: min(420px, 100%);
    }

    .qp-system-products__rail .qp-product-card {
        flex-basis: calc((100% - var(--qp-card-carousel-gap)) / 2);
    }
}

@media (max-width: 768px) {
    .qp-system-hero {
        padding: 42px 0 28px;
    }

    .qp-system-hero h1 {
        font-size: 30px;
    }

    .qp-system-hero__description {
        font-size: 17px;
    }

    .qp-system-products__rail.products.qp-product-grid {
        padding: 0;
    }

    .qp-system-products__rail .qp-product-card {
        flex-basis: min(82vw, 360px);
    }

    .qp-system-products .qp-product-lines__arrow {
        top: 32%;
        width: 56px;
        height: 64px;
    }
}

.qp-product-choice {
    padding-top: 26px;
}

.qp-product-trust-video {
    padding-top: 26px;
}

@media (max-width: 1024px) {
    .qp-product-main__grid {
        grid-template-columns: 1fr;
        min-height: 0;
    }
}

@media (max-width: 768px) {
    .qp-product-main {
        padding: 36px 0 34px;
    }

    .qp-product-summary h1 {
        font-size: 30px;
    }

    .qp-product-gallery__thumbs {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }

    .qp-product-gallery {
        padding-top: 0;
    }

    .qp-product-summary .qp-color-toggle,
    .qp-product-summary .qp-build-configure-btn {
        float: none;
        width: 100%;
        margin-left: 0;
    }

    .qp-product-lines__item {
        flex-basis: min(78vw, 320px);
        min-height: 220px;
    }

    .qp-product-lines__image {
        height: 138px;
    }

    .qp-product-lines__item span {
        font-size: 20px;
    }

    .qp-product-lines__arrow {
        width: 56px;
        height: 64px;
    }

    .qp-product-lines__arrow::before {
        font-size: 58px;
    }

    .qp-product-summary .qp-build-specs__row {
        grid-template-columns: 1fr;
        gap: 2px;
    }

    .qp-product-summary .qp-build-specs__value {
        text-align: left;
    }
}

.qp-configurator-hero {
    background: #080808;
}

.qp-configurator-template {
    padding-top: 32px;
    background: #080808;
}

.qp-configurator-template .qp-section {
    padding-bottom: 72px;
}

.qp-configurator-intro__card {
    display: grid;
    grid-template-columns: minmax(0, 1.06fr) minmax(320px, .94fr);
    overflow: hidden;
    min-height: 260px;
    background: #181818;
    border-radius: 14px;
}

.qp-configurator-intro__media {
    min-width: 0;
}

.qp-configurator-intro__media img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 260px;
    object-fit: cover;
}

.qp-configurator-intro__copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    padding: 42px 44px;
}

.qp-configurator-intro__copy h1 {
    margin: 0 0 16px;
    color: #fff;
    font-family: var(--qp-font-heading);
    font-size: 34px;
    font-weight: var(--qp-font-weight-quantum-bold);
    line-height: 1.05;
    text-transform: uppercase;
}

.qp-configurator-intro__copy p {
    max-width: 520px;
    margin: 0;
    color: #fff;
    font-size: 18px;
    font-weight: var(--qp-font-weight-quantum-regular);
    line-height: 1.45;
}

.qp-configurator-page {
    background: #080808;
}

.qp-configurator-page .qp-shell {
    max-width: var(--qp-shell);
}

.qp-configurator-template .qp-configurator-wrapper {
    width: 100%;
}

.qp-configurator-build-selection {
    padding-top: 0;
}

.qp-configurator-build-selection .qp-home-cards {
    align-items: stretch;
}

.qp-configurator-delivery {
    padding-top: 0;
}

.qp-configurator-team {
    padding-bottom: 72px;
}

.qp-configurator-video-two {
    padding-bottom: 72px;
}

.qp-configurator-video-two .qp-home-trust-video__frame {
    border-radius: 18px;
}

.qp-configurator-reviews,
.qp-configurator-store-tour,
.qp-configurator-contacts {
    padding-bottom: 82px;
}

.qp-lead-quiz-page {
    min-height: 100vh;
    padding: 72px 0 56px;
    background: #080808;
}

.qp-lead-quiz-section {
    padding: 0;
}

.qp-lead-quiz-page .qp-quiz {
    width: 100%;
    max-width: 1140px;
    padding: 30px 0;
    font-family: var(--qp-font-body);
}

.qp-home-delivery {
    padding: 64px 0 72px;
}

.qp-home-delivery h2 {
    margin: 0 0 22px;
    color: #fff;
    font-size: 36px;
    font-weight: 900;
    line-height: 1.04;
    text-align: left;
    text-transform: uppercase;
}

.qp-marquee,
.qp-delivery-marquee {
    overflow: hidden;
    width: 100%;
    height: 52px;
    margin-bottom: 34px;
    background: #fff;
    color: #111;
    border-radius: var(--qp-radius-block);
    clip-path: inset(0 round var(--qp-radius-block));
}

.qp-marquee__track,
.qp-delivery-marquee__track {
    display: inline-flex;
    width: max-content;
    min-width: 200%;
    height: 100%;
    align-items: center;
    animation: qp-marquee var(--qp-marquee-duration, 68s) linear infinite;
    white-space: nowrap;
    will-change: transform;
}

.qp-marquee__track span,
.qp-delivery-marquee__track span {
    display: inline-flex;
    align-items: center;
    padding-right: 64px;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: .34em;
    line-height: 1;
    text-transform: uppercase;
}

.qp-delivery-section .qp-marquee,
.qp-delivery-section .qp-stats-row {
    border-radius: 0;
    clip-path: none;
}

.qp-stats-row,
.qp-delivery-stats {
    display: grid;
    grid-template-columns: repeat(var(--qp-stats-columns-desktop, 3), minmax(0, 1fr));
    overflow: hidden;
    margin-bottom: 28px;
    border: 1px solid rgba(255, 255, 255, .78);
    border-radius: var(--qp-radius-block);
    clip-path: inset(0 round var(--qp-radius-block));
}

.qp-stats-row__item,
.qp-delivery-stat {
    min-width: 0;
    padding: 28px 24px;
}

.qp-stats-row__item + .qp-stats-row__item,
.qp-delivery-stat + .qp-delivery-stat {
    border-left: 1px solid rgba(255, 255, 255, .78);
}

.qp-stats-row__item strong,
.qp-delivery-stat strong {
    display: block;
    margin-bottom: 8px;
    color: #fff;
    font-size: 25px;
    font-weight: 900;
    line-height: 1.05;
}

.qp-stats-row__item span,
.qp-delivery-stat span {
    display: block;
    color: #fff;
    font-family: var(--qp-font-heading);
    font-size: var(--qp-home-quantum-copy-size);
    font-weight: var(--qp-font-weight-quantum-regular);
    line-height: 1.25;
}

.qp-delivery-copy {
    max-width: 900px;
    margin: 0;
    color: #fff;
    font-family: var(--qp-font-heading);
    font-size: var(--qp-home-quantum-copy-size);
    font-weight: var(--qp-font-weight-quantum-regular);
    line-height: 1.35;
    text-transform: uppercase;
}

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

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

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

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

.qp-home-trust-video {
    padding: 8px 0 72px;
}

.qp-home-trust-video__frame {
    overflow: hidden;
    width: 100%;
    background: #0f0f0f;
    border-radius: 24px;
}

.qp-home-trust-video__frame video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 7;
    background: #101010;
    object-fit: cover;
}

.qp-vk-video-section,
.qp-home-team {
    padding: 0 0 68px;
}

.qp-vk-video-section h2,
.qp-home-team h2 {
    margin: 0 0 24px;
    color: #fff;
    font-size: 36px;
    font-weight: 900;
    line-height: 1.04;
    text-transform: uppercase;
}

.qp-vk-video-section__grid,
.qp-home-team__grid {
    display: grid;
    grid-template-columns: repeat(var(--qp-vk-video-columns, 3), minmax(0, 1fr));
    gap: 24px;
    margin-bottom: 26px;
}

.qp-vk-video-section__video,
.qp-home-team__video {
    overflow: hidden;
    min-width: 0;
    aspect-ratio: 333 / 660;
    background: #000;
}

.qp-vk-video-section__video iframe,
.qp-home-team__video iframe {
    display: block;
    width: 100%;
    height: 100%;
    background: #000;
    border: 0;
}

.qp-vk-video-section__button,
.qp-home-team__button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    width: 100%;
    min-height: 50px;
    padding: 12px 18px;
    background: #0d63a7;
    border: 1px solid #fff;
    color: #fff;
    font-size: 16px;
    font-weight: 900;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
}

.qp-vk-video-section__button span,
.qp-home-team__button span {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    color: #fff;
    font-size: 13px;
    font-weight: 900;
    line-height: 1;
    text-transform: lowercase;
}

.qp-home-tradein {
    padding: 0 0 70px;
}

.qp-home-tradein__card {
    display: grid;
    grid-template-columns: minmax(360px, 420px) 1fr;
    gap: 36px;
    align-items: center;
    min-height: 280px;
    padding: 44px 54px;
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, .05);
    border-radius: 28px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .04), 0 0 10px rgba(255, 255, 255, .08);
}

.qp-home-tradein__media {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    min-width: 0;
}

.qp-home-tradein__pc {
    position: relative;
    overflow: hidden;
    height: 180px;
}

.qp-home-tradein__pc img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    mix-blend-mode: screen;
}

.qp-home-tradein__pc--old img {
    filter: saturate(.65) brightness(.72) contrast(1.08);
}

.qp-home-tradein__pc--new img {
    filter: saturate(.9) brightness(1.08) contrast(1.02);
}

.qp-home-tradein__arrows {
    color: #d7dde7;
    font-size: 54px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -.18em;
    text-shadow: 0 2px 12px rgba(255, 255, 255, .22);
}

.qp-home-tradein__content {
    min-width: 0;
}

.qp-home-tradein__content h2 {
    margin: 0 0 26px;
    color: #fff;
    font-size: 32px;
    font-weight: 900;
    line-height: 1.05;
    text-transform: uppercase;
}

.qp-home-tradein__content p {
    margin: 0 0 24px;
    color: #fff;
    font-size: 17px;
    font-weight: 900;
    line-height: 1.45;
}

.qp-home-tradein__content .qp-button {
    margin-top: 6px;
}

.qp-home-reviews {
    padding: 0 0 72px;
}

.qp-home-reviews__layout {
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(420px, 1fr);
    gap: 58px;
    align-items: center;
}

.qp-home-reviews__copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 520px;
}

.qp-home-reviews__copy h2 {
    margin: 0 0 26px;
    color: #fff;
    font-size: 36px;
    font-weight: 900;
    line-height: 1.05;
    text-transform: uppercase;
}

.qp-home-reviews__copy p {
    max-width: 560px;
    margin: 0;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.45;
}

.qp-home-reviews__widget {
    position: relative;
    overflow: hidden;
    width: min(100%, 620px);
    max-width: 100%;
    justify-self: end;
    background: #fff;
    border-radius: 8px;
}

.qp-home-reviews__spacer {
    width: 100%;
    min-height: 720px;
    padding-top: 130%;
}

.qp-home-reviews__widget iframe {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    border: 1px solid #e6e6e6;
    border-radius: 8px;
    box-sizing: border-box;
}

.qp-home-reviews__widget a {
    position: absolute;
    right: 0;
    bottom: 8px;
    left: 0;
    overflow: hidden;
    width: 100%;
    padding: 0 16px;
    box-sizing: border-box;
    color: #b3b3b3;
    font-family: "YS Text", Arial, sans-serif;
    font-size: 10px;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.qp-home-store-tour {
    padding: 0 0 76px;
}

.qp-home-store-tour h2 {
    margin: 0 0 42px;
    color: #fff;
    font-size: 36px;
    font-weight: 900;
    line-height: 1.04;
    text-transform: uppercase;
}

.qp-home-store-tour__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.qp-home-store-tour__item {
    overflow: hidden;
    min-width: 0;
    margin: 0;
    background: #111;
}

.qp-home-store-tour__item img {
    width: 100%;
    height: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.qp-image-gallery-block__head {
    margin-bottom: 42px;
}

.qp-image-gallery-block__head h2 {
    margin: 0;
    color: #fff;
    font-size: 36px;
    font-weight: 900;
    line-height: 1.04;
    text-transform: uppercase;
}

.qp-image-gallery-block__head p {
    max-width: 680px;
    margin: 14px 0 0;
    color: rgba(255, 255, 255, .72);
    font-size: 18px;
    line-height: 1.45;
}

.qp-image-gallery {
    display: grid;
    grid-template-columns: repeat(var(--qp-gallery-columns-desktop, 3), minmax(0, 1fr));
    gap: var(--qp-gallery-gap, 10px);
}

.qp-image-gallery__item {
    overflow: hidden;
    min-width: 0;
    margin: 0;
    background: #111;
}

.qp-image-gallery__button {
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: zoom-in;
}

.qp-image-gallery__button img {
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: var(--qp-gallery-aspect-ratio, 4 / 3);
    object-fit: cover;
    transition: transform .22s ease, filter .22s ease;
}

.qp-image-gallery__button:hover img,
.qp-image-gallery__button:focus-visible img {
    filter: brightness(1.08);
    transform: scale(1.025);
}

.qp-image-gallery__item figcaption {
    padding: 10px 12px;
    color: rgba(255, 255, 255, .72);
    font-size: 13px;
    line-height: 1.35;
}

.qp-lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: grid;
    place-items: center;
    padding: 28px;
    background: rgba(0, 0, 0, .88);
}

html.qp-lightbox-open {
    overflow: hidden;
}

.qp-lightbox[hidden] {
    display: none;
}

.qp-lightbox__stage {
    position: relative;
    display: grid;
    place-items: center;
    width: min(1120px, 100%);
    max-height: calc(100vh - 96px);
}

.qp-lightbox__image {
    display: block;
    max-width: 100%;
    max-height: calc(100vh - 112px);
    object-fit: contain;
    background: #111;
}

.qp-lightbox__caption {
    width: min(1120px, 100%);
    min-height: 22px;
    margin-top: 14px;
    color: rgba(255, 255, 255, .82);
    font-size: 14px;
    line-height: 1.4;
    text-align: center;
}

.qp-lightbox__close,
.qp-lightbox__nav {
    position: absolute;
    z-index: 2;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .22);
    background: rgba(18, 18, 18, .72);
    color: #fff;
    cursor: pointer;
}

.qp-lightbox__close {
    top: 22px;
    right: 22px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 30px;
    line-height: 1;
}

.qp-lightbox__nav {
    top: 50%;
    width: 52px;
    height: 72px;
    margin-top: -36px;
    border-radius: 6px;
    font-size: 42px;
    line-height: 1;
}

.qp-lightbox__nav--prev {
    left: 22px;
}

.qp-lightbox__nav--next {
    right: 22px;
}

.qp-lightbox__close:hover,
.qp-lightbox__close:focus-visible,
.qp-lightbox__nav:hover,
.qp-lightbox__nav:focus-visible {
    background: rgba(183, 21, 21, .9);
}

.qp-home-contacts {
    padding: 0 0 82px;
}

.qp-home-contacts__layout {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(420px, 1fr);
    gap: 64px;
    align-items: center;
}

.qp-home-contacts__copy {
    min-width: 0;
}

.qp-home-contacts__copy h2 {
    margin: 0 0 22px;
    color: #fff;
    font-size: 36px;
    font-weight: 900;
    line-height: 1.05;
    text-transform: uppercase;
}

.qp-home-contacts__phone {
    display: inline-block;
    margin-bottom: 28px;
    color: #fff;
    font-size: 36px;
    font-weight: 500;
    line-height: 1.15;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.qp-home-contacts__item {
    display: grid;
    gap: 14px;
    margin-bottom: 24px;
    color: #fff;
    font-size: 24px;
    line-height: 1.25;
}

.qp-home-contacts__item strong {
    font-size: 26px;
    font-weight: 900;
}

.qp-home-contacts__item a {
    color: #fff;
}

.qp-home-contacts__map {
    position: relative;
    overflow: hidden;
    width: min(100%, 560px);
    justify-self: end;
    background: #111;
}

.qp-home-contacts__map > a {
    position: absolute;
    left: 0;
    z-index: 1;
    color: #eee;
    font-size: 12px;
}

.qp-home-contacts__map > a:first-child {
    top: 0;
}

.qp-home-contacts__map > a:nth-child(2) {
    top: 14px;
}

.qp-home-contacts__map iframe {
    position: relative;
    display: block;
    width: 100%;
    height: 600px;
    border: 1px solid rgba(255, 255, 255, .35);
}

.qp-site-footer {
    padding: 28px 0 32px;
    background: #080808;
    border-top: 0;
    color: #fff;
}

.qp-site-footer .custom-logo-link img,
.qp-site-footer .custom-logo {
    width: 300px;
    max-width: min(100%, 300px);
    height: auto;
}

.qp-site-footer__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, .88fr);
    gap: 72px;
    align-items: start;
}

.qp-site-footer__info,
.qp-site-footer__legal {
    min-width: 0;
}

.qp-footer-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    margin-bottom: 52px;
}

.qp-footer-social {
    position: relative;
    display: inline-flex;
    width: 35px;
    height: 35px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 8px;
    color: #fff;
    font-size: 24px;
    font-weight: 900;
    line-height: 1;
    text-decoration: none;
}

.qp-footer-social img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.qp-footer-social svg {
    width: 26px;
    height: 26px;
}

.qp-footer-social--avito {
    background: #5f6672;
}

.qp-footer-social__avito-dot {
    position: absolute;
    display: block;
    border-radius: 999px;
}

.qp-footer-social__avito-dot--violet {
    top: 5px;
    left: 10px;
    width: 7px;
    height: 7px;
    background: #965eea;
}

.qp-footer-social__avito-dot--blue {
    top: 3px;
    right: 5px;
    width: 16px;
    height: 16px;
    background: #12a8f5;
}

.qp-footer-social__avito-dot--green {
    left: 3px;
    bottom: 4px;
    width: 20px;
    height: 20px;
    background: #00d95f;
}

.qp-footer-social__avito-dot--red {
    right: 4px;
    bottom: 4px;
    width: 13px;
    height: 13px;
    background: #ff4054;
}

.qp-footer-social--telegram {
    background: #2da4df;
    color: #fff;
}

.qp-footer-social--vk {
    background: #4776ad;
    color: #fff;
}

.qp-footer-social--max {
    background: #fff;
}

.qp-site-footer__details {
    display: grid;
    gap: 18px;
    margin: 0;
    color: #fff;
    font-style: normal;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.34;
}

.qp-site-footer__details a {
    color: inherit;
    text-decoration: none;
}

.qp-site-footer__legal {
    display: grid;
    justify-items: start;
}

.qp-site-footer__logo {
    margin-bottom: 58px;
}

.qp-footer-nav__list {
    display: grid;
    gap: 18px;
    align-items: start;
    margin: 0;
    padding: 0;
    list-style: none;
}

.qp-footer-nav__list a {
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.18;
    text-decoration: none;
}

.qp-footer-nav__list a:hover,
.qp-footer-nav__list a:focus-visible,
.qp-site-footer__details a:hover,
.qp-site-footer__details a:focus-visible {
    color: var(--qp-accent);
}

.qp-trade-page {
    padding: 36px 0 28px;
    background: #080808;
}

.qp-trade-page .qp-section {
    padding: 24px 0;
    background: transparent;
}

.qp-trade-hero__card {
    display: grid;
    grid-template-columns: minmax(0, .78fr) minmax(0, 1fr);
    gap: clamp(36px, 3vw, 56px);
    align-items: center;
    min-height: 340px;
    padding: 52px clamp(42px, 4vw, 64px) 52px clamp(28px, 2.6vw, 48px);
    border-radius: 26px;
    background: rgba(255, 255, 255, .065);
    box-shadow: 0 0 18px rgba(255, 255, 255, .08);
}

.qp-trade-hero__media {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-width: 0;
}

.qp-trade-hero__media img {
    width: 100%;
    max-height: 330px;
    object-fit: contain;
    object-position: left center;
}

.qp-trade-hero__copy h1,
.qp-trade-benefits__copy h2,
.qp-trade-steps h2,
.qp-trade-products h2,
.qp-trade-value__head h2,
.qp-trade-faq h2 {
    margin: 0;
    color: #fff;
    font-size: 24px;
    font-weight: 900;
    line-height: 1.05;
    text-transform: uppercase;
}

.qp-trade-hero__copy p {
    max-width: 430px;
    margin: 18px 0 22px;
    color: #fff;
    font-size: 13px;
    line-height: 1.45;
}

.qp-trade-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.qp-trade-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 18px;
    border: 1px solid rgba(255, 255, 255, .75);
    border-radius: 0;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
}

.qp-trade-button::before {
    content: "›";
    margin-right: 14px;
    font-size: 18px;
    line-height: 0;
}

.qp-trade-button--primary {
    border-color: #b31317;
    background: #b31317;
}

.qp-trade-button--primary:hover {
    background: #c8191e;
}

.qp-trade-button--secondary {
    background: transparent;
}

.qp-trade-button--secondary:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, .06);
}

.qp-trade-button--wide {
    width: 100%;
}

.qp-trade-hero__copy h1 {
    font-size: clamp(32px, 2.4vw, 42px);
}

.qp-trade-hero__copy p {
    max-width: 650px;
    margin: 26px 0 36px;
    font-size: 20px;
    line-height: 1.55;
}

.qp-trade-hero .qp-trade-actions {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, .85fr);
    gap: 28px;
}

.qp-trade-hero .qp-trade-button {
    min-height: 58px;
    padding: 0 28px;
    font-size: 18px;
}

.qp-trade-hero .qp-trade-button::before {
    margin-right: 22px;
    font-size: 28px;
}

.qp-trade-benefits {
    padding-top: 58px !important;
}

.qp-trade-benefits__grid {
    display: grid;
    grid-template-columns: minmax(260px, 310px) minmax(0, 1fr);
    gap: 34px;
    align-items: start;
}

.qp-trade-video {
    position: relative;
    overflow: hidden;
    background: #111;
}

.qp-trade-video video {
    display: block;
    width: 100%;
    aspect-ratio: 9 / 16;
    object-fit: cover;
}

.qp-trade-benefits__copy {
    padding-top: 30px;
}

.qp-trade-benefits__list {
    margin-top: 30px;
}

.qp-trade-benefit {
    padding: 0 0 28px;
    margin-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, .32);
}

.qp-trade-benefit:last-child {
    margin-bottom: 0;
    border-bottom: 0;
}

.qp-trade-benefit h3 {
    margin: 0 0 18px;
    color: #fff;
    font-size: 19px;
    font-weight: 900;
    line-height: 1.15;
    text-transform: uppercase;
}

.qp-trade-benefit p {
    margin: 0;
    color: #fff;
    font-size: 13px;
    line-height: 1.45;
}

.qp-trade-steps h2,
.qp-trade-products h2,
.qp-trade-value__head,
.qp-trade-faq h2 {
    text-align: center;
}

.qp-trade-steps {
    padding-top: 36px !important;
}

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

.qp-trade-step,
.qp-trade-value-card {
    min-height: 120px;
    padding: 22px 20px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .07);
}

.qp-trade-step__title {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 18px;
}

.qp-trade-step__title span {
    display: inline-flex;
    width: 18px;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    font-weight: 900;
}

.qp-trade-step h3,
.qp-trade-value-card h3 {
    margin: 0;
    color: #fff;
    font-size: 15px;
    font-weight: 900;
    line-height: 1.2;
    text-transform: uppercase;
}

.qp-trade-step p,
.qp-trade-value-card p {
    margin: 0;
    color: #fff;
    font-size: 12px;
    line-height: 1.45;
}

.qp-trade-steps .qp-trade-button--wide {
    margin-top: 18px;
}

.qp-trade-products {
    padding-top: 44px !important;
}

.qp-trade-products h2 {
    margin-bottom: 34px;
}

.qp-trade-products__grid.products.qp-product-grid {
    gap: 18px;
}

.qp-trade-products__all {
    margin-top: 28px;
    min-height: 36px;
    text-transform: uppercase;
}

.qp-trade-products__all::before {
    content: none;
}

.qp-trade-value {
    padding-top: 42px !important;
}

.qp-trade-value__head span {
    display: block;
    margin-bottom: 6px;
    color: rgba(255, 255, 255, .32);
    font-size: 15px;
}

.qp-trade-value__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.qp-trade-value-card {
    min-height: 170px;
    padding: 34px 26px;
}

.qp-trade-value-card h3 {
    margin-bottom: 24px;
}

.qp-trade-faq {
    padding-top: 54px !important;
}

.qp-trade-faq h2 {
    margin-bottom: 32px;
    text-align: left;
}

.qp-trade-faq__list {
    margin-bottom: 26px;
    border-top: 1px solid rgba(255, 255, 255, .8);
}

.qp-trade-faq__item {
    border-bottom: 1px solid rgba(255, 255, 255, .8);
}

.qp-trade-faq__item summary {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 0 18px;
    color: #fff;
    font-size: 13px;
    cursor: pointer;
    list-style: none;
}

.qp-trade-faq__item summary::-webkit-details-marker {
    display: none;
}

.qp-trade-faq__item summary::before {
    content: "⌄";
    margin-right: 14px;
    color: #fff;
    font-size: 14px;
}

.qp-trade-faq__item[open] summary::before {
    transform: rotate(180deg);
}

.qp-trade-faq__item p {
    margin: 0;
    padding: 18px 18px 22px 46px;
    background: rgba(255, 255, 255, .12);
    color: #fff;
    font-size: 13px;
    line-height: 1.45;
}

.qp-payment-page {
    padding: 36px 0 52px;
    background: #080808;
}

.qp-payment-page .qp-section {
    padding: 60px 0;
    background: transparent;
}

.qp-payment-hero {
    padding-top: 30px !important;
}

.qp-payment-hero__grid,
.qp-payment-store__grid,
.qp-payment-credit__grid,
.qp-payment-invoice__grid {
    display: grid;
    grid-template-columns: minmax(260px, .86fr) minmax(0, 1.28fr);
    gap: 34px;
    align-items: center;
}

.qp-payment-hero__grid {
    grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
    gap: 46px;
}

.qp-payment-store__grid,
.qp-payment-invoice__grid {
    grid-template-columns: minmax(0, 1fr) minmax(330px, .85fr);
    gap: 78px;
}

.qp-payment-credit__grid {
    grid-template-columns: minmax(0, 1fr) minmax(320px, .92fr);
    align-items: start;
    gap: 86px;
}

.qp-payment-hero__copy h1,
.qp-payment-section-copy h2,
.qp-payment-banks h2,
.qp-payment-faq h2 {
    margin: 0;
    color: #fff;
    font-size: 30px;
    font-weight: 900;
    line-height: 1.05;
}

.qp-payment-banks h2,
.qp-payment-faq h2 {
    text-transform: uppercase;
}

.qp-payment-hero__copy p,
.qp-payment-section-copy p,
.qp-payment-qna p,
.qp-payment-qna li {
    margin: 20px 0 0;
    color: #fff;
    font-size: 14px;
    line-height: 1.45;
}

.qp-payment-hero__lead {
    text-transform: uppercase;
}

.qp-payment-hero__media {
    width: min(100%, 300px);
    justify-self: start;
}

.qp-payment-video video {
    aspect-ratio: 9 / 16;
    border-radius: 0;
    object-fit: cover;
}

.qp-payment-video .qp-home-video__play {
    width: 86px;
    height: 86px;
    background: rgba(255, 255, 255, .24);
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .78), 0 12px 28px rgba(0, 0, 0, .38);
}

.qp-payment-video .qp-home-video__play span {
    margin-left: 7px;
    border-top-width: 20px;
    border-bottom-width: 20px;
    border-left-width: 32px;
}

.qp-payment-store__media,
.qp-payment-invoice__media {
    overflow: hidden;
    background: rgba(255, 255, 255, .04);
}

.qp-payment-store__media img,
.qp-payment-invoice__media img {
    display: block;
    width: 100%;
    object-fit: cover;
}

.qp-payment-store__media img {
    aspect-ratio: 3 / 5;
}

.qp-payment-invoice__media img {
    aspect-ratio: 4 / 3;
}

.qp-payment-check-list {
    display: grid;
    gap: 12px;
    margin: 36px 0 0;
    padding: 0;
    list-style: none;
}

.qp-payment-check-list li {
    position: relative;
    padding-left: 28px;
    color: #fff;
    font-size: 15px;
    line-height: 1.35;
}

.qp-payment-check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: .06em;
    display: grid;
    place-items: center;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #fff;
    color: #080808;
    font-size: 10px;
    font-weight: 900;
}

.qp-payment-credit__terms {
    margin-top: 28px;
}

.qp-payment-banks {
    margin-top: 92px;
    text-align: center;
}

.qp-payment-banks__grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-items: center;
    justify-items: center;
    width: 100%;
    gap: 28px;
    margin-top: 46px;
}

.qp-payment-banks__grid img {
    display: block;
    width: auto;
    max-width: 150px;
    max-height: 48px;
    object-fit: contain;
}

.qp-payment-outline-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: min(100%, 420px);
    min-height: 40px;
    margin-top: 26px;
    border: 1px solid #b31317;
    color: #fff;
    font-size: 12px;
    font-weight: var(--qp-font-weight-quantum-regular);
    line-height: 1;
    text-transform: uppercase;
}

.qp-payment-outline-button:hover {
    background: #b31317;
}

.qp-payment-faq {
    padding-top: 76px !important;
}

.qp-payment-faq h2 {
    margin-bottom: 36px;
}

.qp-payment-qna {
    margin-bottom: 20px;
}

.qp-payment-qna h3 {
    margin: 0 0 12px;
    color: #fff;
    font-size: 14px;
    font-weight: 900;
    line-height: 1.4;
}

.qp-payment-qna p {
    margin-top: 0;
}

.qp-payment-qna ul {
    margin: 6px 0 0 20px;
    padding: 0;
}

.qp-payment-qna li {
    margin-top: 4px;
}

.qp-warranty-page {
    padding: 36px 0 58px;
    background: #080808;
}

.qp-warranty-page .qp-section {
    padding: 62px 0;
    background: transparent;
}

.qp-warranty-hero {
    padding-top: 30px !important;
}

.qp-warranty-hero__grid,
.qp-warranty-support__grid {
    display: grid;
    grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
    gap: 54px;
    align-items: center;
}

.qp-warranty-hero__media {
    width: min(100%, 340px);
}

.qp-warranty-video video {
    aspect-ratio: 9 / 16;
    border-radius: 0;
    object-fit: cover;
}

.qp-warranty-video .qp-home-video__play {
    width: 86px;
    height: 86px;
    background: rgba(255, 255, 255, .24);
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .78), 0 12px 28px rgba(0, 0, 0, .38);
}

.qp-warranty-video .qp-home-video__play span {
    margin-left: 7px;
    border-top-width: 20px;
    border-bottom-width: 20px;
    border-left-width: 32px;
}

.qp-warranty-hero__copy h1,
.qp-warranty-faq h2,
.qp-warranty-support__copy h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(32px, 3vw, 52px);
    font-weight: 900;
    line-height: 1.05;
}

.qp-warranty-hero__copy p,
.qp-warranty-qna p {
    margin: 34px 0 0;
    color: rgba(255, 255, 255, .72);
    font-size: 21px;
    line-height: 1.45;
}

.qp-warranty-faq {
    padding-top: 38px !important;
}

.qp-warranty-faq h2 {
    margin-bottom: 50px;
}

.qp-warranty-qna {
    margin-bottom: 36px;
}

.qp-warranty-qna h3 {
    margin: 0 0 22px;
    color: #fff;
    font-size: 20px;
    font-weight: 900;
    line-height: 1.35;
}

.qp-warranty-qna p {
    margin-top: 0;
}

.qp-warranty-support__grid {
    grid-template-columns: minmax(0, .9fr) minmax(420px, 1fr);
    gap: 66px;
    align-items: center;
}

.qp-warranty-contacts {
    display: grid;
    margin-top: 72px;
}

.qp-warranty-contact {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    align-items: center;
    min-height: 58px;
    border-bottom: 1px solid rgba(255, 255, 255, .55);
    color: #fff;
}

.qp-warranty-contact span {
    position: relative;
    display: block;
    width: 30px;
    height: 30px;
}

.qp-warranty-contact span::before {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 25px;
    line-height: 1;
}

.qp-warranty-contact--phone span::before {
    content: "☎";
}

.qp-warranty-contact--mail span::before {
    content: "✉";
}

.qp-warranty-contact--time span::before {
    content: "◷";
}

.qp-warranty-contact a,
.qp-warranty-contact strong {
    color: #fff;
    font-size: 28px;
    font-weight: var(--qp-font-weight-quantum-regular);
    line-height: 1.2;
}

.qp-warranty-support__media img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.qp-pc-selection-cta {
    padding: 44px 0;
}

.qp-pc-selection-cta__inner {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    min-height: 400px;
    padding: 72px 64px;
    background-image: linear-gradient(rgba(0, 0, 0, .85), rgba(0, 0, 0, .85)), var(--qp-pc-selection-bg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.qp-pc-selection-cta__content {
    position: relative;
    z-index: 1;
    width: min(100%, 840px);
}

.qp-pc-selection-cta__content h2 {
    margin: 0 0 18px;
    color: #fff;
    font-family: var(--qp-font-heading);
    font-size: clamp(32px, 3vw, 46px);
    font-weight: var(--qp-font-weight-quantum-bold);
    line-height: 1.08;
    text-transform: uppercase;
}

.qp-pc-selection-cta__content p {
    max-width: 820px;
    margin: 0 0 14px;
    color: #fff;
    font-family: var(--qp-font-body);
    font-size: clamp(20px, 1.7vw, 28px);
    font-weight: var(--qp-font-weight-quantum-regular);
    line-height: 1.35;
}

.qp-pc-selection-cta__button {
    min-width: 164px;
    min-height: 44px;
    margin-top: 28px;
    padding-inline: 24px;
    font-size: 18px;
    text-transform: uppercase;
}

.qp-company-page {
    padding-top: 72px;
    background: #080808;
}

.qp-company-page .qp-section {
    padding: 0 0 76px;
}

.qp-company-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
    gap: 72px;
    align-items: center;
}

.qp-company-hero__copy {
    max-width: 560px;
}

.qp-company-hero__copy h1,
.qp-company-offers h2 {
    margin: 0 0 28px;
    color: #fff;
    font-family: var(--qp-font-heading);
    font-size: 36px;
    font-weight: var(--qp-font-weight-quantum-bold);
    line-height: 1.06;
    text-transform: uppercase;
}

.qp-company-hero__copy p {
    margin: 0 0 16px;
    color: #fff;
    font-size: 17px;
    font-weight: var(--qp-font-weight-quantum-regular);
    line-height: 1.5;
}

.qp-company-stats {
    max-width: 430px;
    margin: 28px 0 0;
}

.qp-company-stats div {
    margin: 0;
    padding: 9px 0;
    border-top: 1px solid rgba(255, 255, 255, .75);
}

.qp-company-stats div:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, .75);
}

.qp-company-stats dt {
    margin: 0;
    color: #fff;
    font-size: 19px;
    font-weight: var(--qp-font-weight-quantum-bold);
    line-height: 1.1;
    text-transform: uppercase;
}

.qp-company-hero__media {
    justify-self: end;
    width: min(100%, 430px);
}

.qp-company-video {
    overflow: hidden;
    background: #101010;
}

.qp-company-video video {
    display: block;
    width: 100%;
    aspect-ratio: 9 / 16;
    object-fit: cover;
}

.qp-company-video .qp-home-video__play {
    width: 74px;
    height: 74px;
}

.qp-company-video .qp-home-video__play span {
    border-top-width: 15px;
    border-bottom-width: 15px;
    border-left-width: 24px;
}

.qp-company-team {
    padding-bottom: 70px;
}

.qp-company-selection-cta {
    padding: 0 0 76px;
}

.qp-company-selection-cta .qp-pc-selection-cta__inner {
    min-height: 330px;
    padding: 56px 48px;
}

.qp-company-selection-cta .qp-pc-selection-cta__content h2 {
    font-size: clamp(28px, 2.5vw, 40px);
}

.qp-company-selection-cta .qp-pc-selection-cta__content p {
    font-size: clamp(17px, 1.35vw, 22px);
}

.qp-company-offers__grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 26px;
}

.qp-company-offer-card {
    grid-column: span 2;
    min-width: 0;
}

.qp-company-offer-card:nth-child(n + 4) {
    grid-column: span 3;
}

.qp-company-offer-card img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.qp-company-offer-card h3 {
    margin: 18px 0 10px;
    color: #fff;
    font-size: 19px;
    font-weight: var(--qp-font-weight-quantum-bold);
    line-height: 1.12;
    text-transform: uppercase;
}

.qp-company-offer-card p {
    margin: 0;
    color: #fff;
    font-size: 15px;
    font-weight: var(--qp-font-weight-quantum-regular);
    line-height: 1.45;
}

.qp-company-reviews,
.qp-company-store-tour,
.qp-company-contacts {
    padding-bottom: 82px;
}

body.woocommerce-checkout .qp-section {
    padding: 42px 0 74px;
    background: var(--qp-bg);
}

body.woocommerce-checkout,
body.woocommerce-checkout .qp-site-main,
body.woocommerce-checkout .woocommerce,
body.woocommerce-checkout .qp-content,
body.woocommerce-checkout .qp-page {
    background: var(--qp-bg);
}

body.woocommerce-checkout .qp-content {
    max-width: none;
}

body.woocommerce-checkout .qp-page {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
}

body.woocommerce-checkout .qp-page > h1 {
    display: none;
}

.qp-checkout-form {
    color: #fff;
}

.qp-checkout-form h3 {
    margin: 0 0 16px;
    color: #fff;
    font-size: 24px;
    font-weight: var(--qp-font-weight-quantum-regular);
    line-height: 1.15;
}

.qp-checkout-top-grid {
    display: grid;
    grid-template-columns: minmax(480px, 1.02fr) minmax(520px, .98fr);
    gap: 34px;
    align-items: center;
    min-height: 520px;
}

.qp-checkout-fields-card {
    margin-top: 0;
    padding: 28px 26px 24px;
    background: #222;
}

.qp-checkout-order h3 {
    min-height: 0;
    margin-top: 0;
}

.qp-checkout-form .form-row-first,
.qp-checkout-form .form-row-last {
    float: none;
    width: 100%;
}

.qp-checkout-form .woocommerce-billing-fields h3 {
    margin-bottom: 18px;
    font-size: 25px;
    font-weight: var(--qp-font-weight-quantum-regular);
}

.qp-checkout-form .form-row {
    margin: 0 0 10px;
    padding: 0;
}

.qp-checkout-form label {
    display: block;
    margin: 0 0 5px;
    color: #fff;
    font-size: 15px;
    font-weight: var(--qp-font-weight-quantum-regular);
    line-height: 1.2;
}

.qp-checkout-form abbr.required {
    color: var(--qp-accent-strong);
    text-decoration: none;
}

.qp-checkout-form input.input-text,
.qp-checkout-form select,
.qp-checkout-form textarea {
    display: block;
    width: 100%;
    min-height: 34px;
    padding: 7px 9px;
    border: 1px solid #d7d7d7;
    border-radius: 3px;
    background: #fff;
    color: #111;
    font-family: var(--qp-font-fallback);
    font-size: 15px;
    line-height: 1.35;
    outline: none;
}

.qp-checkout-form textarea {
    min-height: 88px;
    resize: vertical;
}

.qp-checkout-form input.input-text:focus,
.qp-checkout-form select:focus,
.qp-checkout-form textarea:focus {
    border-color: #fff;
    box-shadow: 0 0 0 2px rgba(167, 15, 18, .45);
}

.qp-checkout-order h3 {
    font-size: 24px;
}

.woocommerce-checkout-review-order-table {
    width: 100%;
    border-collapse: collapse;
    color: #fff;
    background: #626262;
    font-size: 22px;
    line-height: 1.45;
}

.woocommerce-checkout-review-order-table th,
.woocommerce-checkout-review-order-table td {
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, .12);
    text-align: left;
    vertical-align: top;
    font-weight: var(--qp-font-weight-quantum-regular);
}

.woocommerce-checkout-review-order-table thead th,
.woocommerce-checkout-review-order-table tfoot th {
    background: #303030;
}

.woocommerce-checkout-review-order-table .product-total,
.woocommerce-checkout-review-order-table tfoot td {
    width: 30%;
    background: #626262;
    vertical-align: middle;
    white-space: nowrap;
}

.woocommerce-checkout-review-order-table .product-name {
    width: 70%;
}

.woocommerce-checkout-review-order-table .product-quantity {
    font-weight: var(--qp-font-weight-quantum-regular);
}

.woocommerce-checkout-review-order-table .variation {
    margin: 4px 0 0;
    color: #fff;
}

.woocommerce-checkout-review-order-table .variation dt,
.woocommerce-checkout-review-order-table .variation dd {
    display: inline;
    margin: 0;
    padding: 0;
    font-weight: var(--qp-font-weight-quantum-regular);
}

.woocommerce-checkout-review-order-table .variation dd p {
    display: inline;
    margin: 0;
}

.woocommerce-checkout-review-order-table .variation dd::after {
    content: "";
    display: block;
}

.qp-checkout-notes {
    margin-top: 54px;
}

.qp-checkout-notes label {
    margin-bottom: 8px;
    font-size: 23px;
}

.qp-checkout-notes textarea {
    min-height: 88px;
}

.qp-checkout-payment-section {
    margin-top: 14px;
}

.qp-checkout-payment-section h3 {
    margin-bottom: 14px;
    font-size: 23px;
}

.woocommerce-checkout-payment {
    padding: 18px 16px 26px;
    border: 2px solid rgba(255, 255, 255, .9);
    background: transparent;
}

.woocommerce-checkout-payment ul,
.woocommerce-checkout-payment li {
    margin: 0;
    padding: 0;
    list-style: none;
}

.woocommerce-checkout-payment .wc_payment_method > input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.woocommerce-checkout-payment .wc_payment_method > label {
    margin: 4px 0 14px;
    font-size: 24px;
}

.woocommerce-checkout-payment .payment_box {
    margin: 0 0 28px;
    padding: 17px 16px;
    background: var(--qp-accent);
    color: #fff;
    font-size: 16px;
}

.woocommerce-checkout-payment .payment_box p {
    margin: 0;
}

.woocommerce-privacy-policy-text {
    margin-top: 30px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.woocommerce-privacy-policy-text p,
.woocommerce-terms-and-conditions-wrapper .form-row {
    color: #fff;
    font-size: 22px;
    line-height: 1.45;
}

.woocommerce-privacy-policy-text a,
.woocommerce-terms-and-conditions-wrapper a {
    color: #9a58c9;
}

.woocommerce-terms-and-conditions-wrapper .form-row {
    margin-top: 22px;
}

.woocommerce-terms-and-conditions-wrapper .woocommerce-form__label-for-checkbox {
    display: block;
}

.woocommerce-terms-and-conditions-wrapper .woocommerce-form__input-checkbox {
    display: inline-block;
    margin: 0 8px 0 0;
    vertical-align: middle;
}

.qp-checkout-form #place_order {
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-width: 156px;
    min-height: 40px;
    margin: 26px 0 0 auto;
    padding: 0 19px;
    border: 0;
    border-radius: 3px;
    background: var(--qp-accent);
    color: #fff;
    font-size: 16px;
    line-height: 1;
    text-align: center;
    cursor: pointer;
}

.qp-cart-page {
    padding: 72px 0 96px;
    background: var(--qp-bg);
    color: #fff;
}

.qp-cart-page__content {
    min-width: 0;
}

.qp-cart-page__head {
    display: grid;
    gap: 10px;
    margin-bottom: 30px;
}

.qp-cart-page__head h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(30px, 3vw, 44px);
    font-weight: var(--qp-font-weight-quantum-bold);
    line-height: 1.06;
    text-transform: uppercase;
}

.qp-cart-page__head p {
    margin: 0;
    color: var(--qp-muted);
    font-size: 18px;
    line-height: 1.35;
}

.qp-cart-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.qp-cart-items,
.qp-cart-totals,
.qp-cart-empty__panel {
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 8px;
    background: #151515;
}

.qp-cart-items {
    min-width: 0;
    overflow: hidden;
}

.qp-cart-items__head {
    display: flex;
    gap: 18px;
    align-items: center;
    justify-content: space-between;
    padding: 20px 22px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.qp-cart-items__head h2,
.qp-cart-totals h2,
.qp-cart-empty__panel h2 {
    margin: 0;
    color: #fff;
    font-size: 24px;
    font-weight: var(--qp-font-weight-quantum-bold);
    line-height: 1.1;
    text-transform: uppercase;
}

.qp-cart-continue,
.qp-cart-empty__link {
    color: #fff;
    font-size: 15px;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.qp-cart-table,
.qp-cart-totals-table {
    width: 100%;
    border-collapse: collapse;
    color: #fff;
    background: transparent;
}

.qp-cart-table {
    display: block;
}

.qp-cart-table thead,
.qp-cart-table tbody,
.qp-cart-table tr {
    display: block;
    width: 100%;
}

.qp-cart-table thead tr {
    display: grid;
    grid-template-columns: 170px minmax(0, 1fr) 120px 145px 120px 72px;
    align-items: stretch;
    background: #1d1d1d;
}

.qp-cart-table tr.cart_item {
    display: grid;
    grid-template-columns: 170px minmax(0, 1fr) 120px 145px 120px 72px;
    gap: 0;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, .09);
}

.qp-cart-table thead .product-thumbnail {
    display: none;
}

.qp-cart-table th,
.qp-cart-table td,
.qp-cart-totals-table th,
.qp-cart-totals-table td {
    padding: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, .09);
    text-align: left;
    vertical-align: middle;
}

.qp-cart-table thead th {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .64);
    background: #1d1d1d;
    font-size: 13px;
    font-weight: var(--qp-font-weight-quantum-bold);
    text-align: center;
    text-transform: uppercase;
}

.qp-cart-table thead .product-name {
    grid-column: 2;
    justify-content: flex-start;
    text-align: left;
}

.qp-cart-table thead .product-price {
    grid-column: 3;
}

.qp-cart-table thead .product-quantity {
    grid-column: 4;
}

.qp-cart-table thead .product-subtotal {
    grid-column: 5;
}

.qp-cart-table thead .product-remove {
    grid-column: 6;
}

.qp-cart-table tr.cart_item td {
    border-bottom: 0;
}

.qp-cart-table .product-thumbnail {
    width: auto;
}

.qp-cart-table tr.cart_item .product-thumbnail {
    grid-column: 1;
    grid-row: 1;
    display: flex;
    justify-content: center;
}

.qp-cart-table tr.cart_item .product-name {
    grid-column: 2;
    grid-row: 1;
    padding-right: 24px;
}

.qp-cart-table tr.cart_item .product-price {
    grid-column: 3;
    grid-row: 1;
}

.qp-cart-table tr.cart_item .product-quantity {
    grid-column: 4;
    grid-row: 1;
}

.qp-cart-table tr.cart_item .product-subtotal {
    grid-column: 5;
    grid-row: 1;
}

.qp-cart-table tr.cart_item .product-remove {
    grid-column: 6;
    grid-row: 1;
}

.qp-cart-table .product-thumbnail img {
    display: block;
    width: 124px;
    height: 124px;
    border-radius: 8px;
    object-fit: cover;
    background: #080808;
}

.qp-cart-table .product-name a {
    color: #fff;
    font-size: 18px;
    font-weight: var(--qp-font-weight-quantum-bold);
    line-height: 1.2;
    text-decoration: none;
}

.qp-cart-table .product-name a:hover,
.qp-cart-table .product-name a:focus-visible {
    color: var(--qp-accent-strong);
}

.qp-cart-table .variation {
    display: grid;
    grid-template-columns: max-content minmax(0, 1fr);
    column-gap: 10px;
    row-gap: 5px;
    margin: 10px 0 0;
    color: rgba(255, 255, 255, .74);
    font-size: 13px;
    line-height: 1.35;
}

.qp-cart-table .variation dt,
.qp-cart-table .variation dd {
    margin: 0;
    padding: 0;
    font-weight: var(--qp-font-weight-quantum-regular);
}

.qp-cart-table .variation dt {
    color: rgba(255, 255, 255, .58);
}

.qp-cart-table .variation dd p {
    display: inline;
    margin: 0;
}

.qp-cart-table .product-price,
.qp-cart-table .product-subtotal {
    white-space: nowrap;
    font-size: 18px;
}

.qp-cart-table .product-price,
.qp-cart-table .product-quantity,
.qp-cart-table .product-subtotal,
.qp-cart-table .product-remove {
    display: flex;
    align-items: center;
    justify-content: center;
    justify-self: stretch;
    text-align: center;
}

.qp-cart-table .quantity input {
    width: 64px;
    min-height: 40px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 4px;
    background: #0d0d0d;
    color: #fff;
    text-align: center;
}

.qp-cart-remove {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    font-size: 26px;
    line-height: 1;
    text-decoration: none;
}

.qp-cart-remove:hover,
.qp-cart-remove:focus-visible {
    background: var(--qp-accent);
    color: #fff;
}

.qp-cart-actions-row td.actions {
    padding: 18px 20px;
    border-bottom: 0;
    background: #111;
}

.qp-cart-actions-row {
    display: block;
    width: 100%;
}

.qp-cart-actions-row .actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
}

.qp-cart-coupon {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-right: auto;
}

.qp-cart-coupon input {
    width: min(240px, 54vw);
    min-height: 42px;
    padding: 0 13px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 4px;
    background: #0d0d0d;
    color: #fff;
}

.qp-cart-update,
.qp-cart-coupon .button,
.qp-cart-empty__button,
.qp-cart-checkout .checkout-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 22px;
    border: 0;
    border-radius: 4px;
    background: var(--qp-accent);
    color: #fff;
    cursor: pointer;
    font-family: var(--qp-font-body);
    font-size: 16px;
    text-decoration: none;
}

.qp-cart-update:hover,
.qp-cart-update:focus-visible,
.qp-cart-coupon .button:hover,
.qp-cart-coupon .button:focus-visible,
.qp-cart-empty__button:hover,
.qp-cart-empty__button:focus-visible,
.qp-cart-checkout .checkout-button:hover,
.qp-cart-checkout .checkout-button:focus-visible {
    background: var(--qp-accent-strong);
    color: #fff;
}

.qp-cart-update:disabled,
.qp-cart-update[disabled] {
    cursor: not-allowed;
    opacity: .5;
}

.qp-cart-collaterals {
    position: static;
    min-width: 0;
}

.qp-cart-totals {
    display: block;
    padding: 24px;
}

.qp-cart-totals h2 {
    margin-bottom: 18px;
}

.qp-cart-totals-table th,
.qp-cart-totals-table td {
    padding: 14px 0;
}

.qp-cart-totals-table th {
    color: rgba(255, 255, 255, .72);
    font-size: 16px;
    font-weight: var(--qp-font-weight-quantum-regular);
}

.qp-cart-totals-table td {
    color: #fff;
    font-size: 17px;
    text-align: right;
}

.qp-cart-totals-table .order-total th,
.qp-cart-totals-table .order-total td {
    padding-top: 18px;
    color: #fff;
    font-size: 22px;
    font-weight: var(--qp-font-weight-quantum-bold);
}

.qp-cart-checkout {
    margin-top: 24px;
}

.qp-cart-checkout .checkout-button {
    width: 100%;
    min-height: 50px;
    font-size: 18px;
}

.qp-cart-totals__links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 14px;
}

.qp-cart-totals__links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 44px;
    padding: 0 20px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 4px;
    color: #fff;
    font-size: 16px;
    line-height: 1;
    text-decoration: none;
    transition:
        border-color .18s ease,
        background .18s ease,
        color .18s ease;
}

.qp-cart-totals__links a:hover,
.qp-cart-totals__links a:focus-visible {
    border-color: #fff;
    background: #fff;
    color: #080808;
}

.qp-cart-totals__note {
    margin: 18px 0 0;
    color: rgba(255, 255, 255, .68);
    font-size: 14px;
    line-height: 1.42;
}

.qp-cart-empty {
    max-width: 720px;
}

.qp-cart-empty__panel {
    display: grid;
    gap: 18px;
    padding: 34px;
}

.qp-cart-empty__panel p {
    margin: 0;
    color: var(--qp-muted);
    font-size: 18px;
    line-height: 1.42;
}

.qp-cart-empty__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

.qp-account-page {
    padding: 72px 0 96px;
    background: var(--qp-bg);
    color: #fff;
}

.qp-account-page__content {
    min-width: 0;
}

.qp-account-page__head {
    display: grid;
    gap: 10px;
    margin-bottom: 30px;
}

.qp-account-page__head h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(30px, 3vw, 44px);
    font-weight: var(--qp-font-weight-quantum-bold);
    line-height: 1.06;
    text-transform: uppercase;
}

.qp-account-page__head p {
    margin: 0;
    color: var(--qp-muted);
    font-size: 18px;
    line-height: 1.35;
}

.qp-account-page .woocommerce {
    display: block;
    color: #fff;
}

.qp-account-page .woocommerce:where(.u-columns) {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.qp-account-page .u-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.qp-account-page .u-column1,
.qp-account-page .u-column2,
.qp-account-page .woocommerce-MyAccount-content,
.qp-account-page .woocommerce-form-login,
.qp-account-page .woocommerce-form-register,
.qp-account-page .woocommerce-Address,
.qp-account-page .woocommerce-address-fields,
.qp-account-page .woocommerce-EditAccountForm {
    min-width: 0;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 8px;
    background: #151515;
}

.qp-account-page h2,
.qp-account-page h3,
.qp-account-page legend {
    margin: 0 0 18px;
    color: #fff;
    font-size: 24px;
    font-weight: var(--qp-font-weight-quantum-bold);
    line-height: 1.12;
    text-transform: uppercase;
}

.qp-account-page p,
.qp-account-page address {
    color: rgba(255, 255, 255, .82);
    font-size: 17px;
    line-height: 1.45;
}

.qp-account-page a {
    color: #fff;
    text-underline-offset: 4px;
}

.qp-account-page a:hover,
.qp-account-page a:focus-visible {
    color: var(--qp-accent-strong);
}

.qp-account-page .woocommerce-MyAccount-navigation {
    margin-bottom: 24px;
}

.qp-account-page .woocommerce-MyAccount-navigation ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.qp-account-page .woocommerce-MyAccount-navigation a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 4px;
    background: #111;
    color: #fff;
    font-size: 15px;
    line-height: 1;
    text-decoration: none;
}

.qp-account-page .woocommerce-MyAccount-navigation .is-active a,
.qp-account-page .woocommerce-MyAccount-navigation a:hover,
.qp-account-page .woocommerce-MyAccount-navigation a:focus-visible {
    border-color: var(--qp-accent);
    background: var(--qp-accent);
    color: #fff;
}

.qp-account-page form {
    margin: 0;
}

.qp-account-page form .form-row {
    display: grid;
    gap: 8px;
    margin: 0 0 16px;
    padding: 0;
}

.qp-account-page label {
    color: rgba(255, 255, 255, .78);
    font-size: 15px;
    line-height: 1.25;
}

.qp-account-page input.input-text,
.qp-account-page input[type="text"],
.qp-account-page input[type="email"],
.qp-account-page input[type="password"],
.qp-account-page input[type="tel"],
.qp-account-page textarea,
.qp-account-page select {
    width: 100%;
    min-height: 44px;
    padding: 0 13px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 4px;
    background: #0d0d0d;
    color: #fff;
    font: inherit;
}

.qp-account-page textarea {
    min-height: 96px;
    padding-top: 12px;
}

.qp-account-page input:focus,
.qp-account-page textarea:focus,
.qp-account-page select:focus {
    border-color: var(--qp-accent);
    outline: none;
}

.qp-account-page .woocommerce-form__label-for-checkbox {
    display: inline-flex;
    gap: 8px;
    align-items: center;
}

.qp-account-page .woocommerce-form__input-checkbox,
.qp-account-page input[type="checkbox"] {
    accent-color: var(--qp-accent);
}

.qp-account-page .button,
.qp-account-page button.button,
.qp-account-page input.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 4px;
    background: var(--qp-accent);
    color: #fff;
    cursor: pointer;
    font-family: var(--qp-font-body);
    font-size: 16px;
    line-height: 1;
    text-decoration: none;
}

.qp-account-page table.shop_table {
    width: 100%;
    border-collapse: collapse;
    color: #fff;
    background: transparent;
}

.qp-account-page table.shop_table th,
.qp-account-page table.shop_table td {
    padding: 14px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, .09);
    text-align: left;
    vertical-align: middle;
}

.qp-account-page table.shop_table th {
    color: rgba(255, 255, 255, .64);
    background: #1d1d1d;
    font-size: 13px;
    text-transform: uppercase;
}

.qp-account-page .woocommerce-orders-table__cell-order-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.qp-account-page .woocommerce-message,
.qp-account-page .woocommerce-info,
.qp-account-page .woocommerce-error {
    margin: 0 0 20px;
    padding: 16px 18px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 8px;
    background: #151515;
    color: #fff;
    list-style: none;
}

.qp-account-page .woocommerce-error {
    border-color: rgba(174, 21, 25, .75);
}

.qp-account-page .woocommerce-LostPassword {
    margin: 10px 0 0;
}

.qp-button,
.qp-header-action,
.button,
button.button,
input[type="submit"],
button[type="submit"],
.single_add_to_cart_button,
.qp-line-order-btn,
.qp-card-order-btn,
.qp-build-configure-btn,
.qp-product-summary__order,
.qp-product-summary__consult,
.qp-vk-video-section__button,
.qp-home-team__button {
    font-family: var(--qp-font-body);
    font-weight: var(--qp-font-weight-quantum-regular) !important;
}

.qp-thanks-page {
    padding: 150px 0 130px;
    background: #080808;
    color: #fff;
}

.qp-thanks-card {
    display: grid;
    gap: 42px;
    width: 100%;
    margin: 0 auto;
    padding: 58px 46px 62px;
    border-radius: 34px;
    background: #171717;
    text-align: center;
}

.qp-thanks-card h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(36px, 4.1vw, 66px);
    font-weight: var(--qp-font-weight-quantum-bold);
    line-height: 1.05;
    letter-spacing: 0;
    text-transform: uppercase;
}

.qp-thanks-card p {
    margin: 0;
    color: #fff;
    font-size: clamp(22px, 2vw, 31px);
    font-weight: var(--qp-font-weight-quantum-regular);
    line-height: 1.35;
}

.qp-thanks-button {
    display: inline-flex;
    min-height: 70px;
    width: min(100%, 1030px);
    margin-inline: auto;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    background: var(--qp-accent);
    color: #fff;
    font-size: clamp(22px, 1.8vw, 31px);
    font-weight: var(--qp-font-weight-quantum-regular);
    line-height: 1;
    text-decoration: none;
}

.qp-thanks-button:hover,
.qp-thanks-button:focus-visible {
    background: var(--qp-accent-strong);
    color: #fff;
}

.qp-404-page {
    min-height: calc(100svh - 96px);
    display: grid;
    align-items: center;
    background: #000;
    color: #fff;
    overflow-x: hidden;
    padding: clamp(32px, 5vh, 72px) 0;
}

.qp-404-page__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 480px);
    align-items: center;
    justify-content: center;
    gap: clamp(28px, 4vw, 72px);
}

.qp-404-page__content {
    display: grid;
    justify-items: end;
    align-content: center;
    gap: clamp(28px, 4vh, 44px);
    min-width: 0;
    text-align: right;
}

.qp-404-page__code {
    margin: 0;
    color: #fff;
    font-size: clamp(128px, 16vw, 292px);
    font-weight: 900;
    line-height: .78;
    letter-spacing: 0;
}

.qp-404-page h1 {
    max-width: 760px;
    margin: 0;
    color: #fff;
    font-size: clamp(30px, 3vw, 56px);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: 0;
}

.qp-404-page__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 230px;
    min-height: 64px;
    padding: 0 34px;
    border-radius: 12px;
    background: #ad1618;
    color: #fff;
    font-size: 28px;
    font-weight: 500;
    line-height: 1;
    text-decoration: none;
    transition: background .2s ease, transform .2s ease;
}

.qp-404-page__button:hover,
.qp-404-page__button:focus-visible {
    background: #c51b1b;
    color: #fff;
    transform: translateY(-1px);
}

.qp-404-page__media {
    display: grid;
    justify-items: center;
    gap: 24px;
    margin: 0;
    min-width: 0;
}

.qp-404-page__media img {
    display: block;
    width: min(100%, 480px);
    max-height: min(62vh, 640px);
    aspect-ratio: 3 / 4;
    object-fit: cover;
}

.qp-404-page__media figcaption {
    width: 100%;
    color: rgba(255, 255, 255, .34);
    font-size: clamp(24px, 1.8vw, 36px);
    font-weight: 400;
    line-height: 1.2;
    text-align: right;
    letter-spacing: 0;
}

.qp-placeholder-page {
    padding: clamp(56px, 8vw, 104px) 0;
    background: #080808;
    color: #fff;
}

.qp-placeholder-card {
    display: grid;
    gap: 22px;
    width: min(100%, 760px);
    margin: 0 auto;
    padding: clamp(28px, 4vw, 48px);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 24px;
    background: #151515;
    text-align: center;
}

.qp-placeholder-card__eyebrow {
    margin: 0;
    color: rgba(255, 255, 255, .58);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
}

.qp-placeholder-card h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(30px, 3vw, 44px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: 0;
}

.qp-placeholder-card p {
    margin: 0;
    color: rgba(255, 255, 255, .82);
    font-size: clamp(18px, 1.6vw, 22px);
    line-height: 1.45;
}

.qp-placeholder-card__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-top: 6px;
}

.qp-placeholder-card__button,
.qp-placeholder-card__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 24px;
    border-radius: 10px;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
    text-decoration: none;
    transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.qp-placeholder-card__button {
    background: var(--qp-accent);
}

.qp-placeholder-card__link {
    border: 1px solid rgba(255, 255, 255, .2);
    background: rgba(255, 255, 255, .04);
}

.qp-placeholder-card__button:hover,
.qp-placeholder-card__button:focus-visible,
.qp-placeholder-card__link:hover,
.qp-placeholder-card__link:focus-visible {
    color: #fff;
    transform: translateY(-1px);
}

.qp-placeholder-card__button:hover,
.qp-placeholder-card__button:focus-visible {
    background: var(--qp-accent-strong);
}

.qp-placeholder-card__link:hover,
.qp-placeholder-card__link:focus-visible {
    border-color: rgba(255, 255, 255, .38);
    background: rgba(255, 255, 255, .08);
}

.qp-popup-open {
    overflow: hidden;
}

.qp-cookie-consent[hidden] {
    display: none;
}

.qp-cookie-consent {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 9000;
    width: min(560px, calc(100vw - 48px));
    color: #fff;
    opacity: 0;
    transform: translateY(14px);
    transition:
        opacity .2s ease,
        transform .22s cubic-bezier(.22, 1, .36, 1);
}

.qp-cookie-consent.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.qp-cookie-consent__body {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    padding: 18px 18px 18px 20px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 8px;
    background: rgba(17, 17, 17, .96);
    box-shadow: 0 18px 42px rgba(0, 0, 0, .42);
    backdrop-filter: blur(8px);
}

.qp-cookie-consent__body p {
    margin: 0;
    color: rgba(255, 255, 255, .9);
    font-size: 15px;
    line-height: 1.36;
}

.qp-cookie-consent__body a {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.qp-cookie-consent__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 22px;
    border: 0;
    border-radius: 4px;
    background: var(--qp-accent);
    color: #fff;
    cursor: pointer;
    font-family: var(--qp-font-body);
    font-size: 16px;
    font-weight: var(--qp-font-weight-quantum-bold);
    line-height: 1;
}

.qp-cookie-consent__button:hover,
.qp-cookie-consent__button:focus-visible {
    background: var(--qp-accent-strong);
}

.qp-popup-layer {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    padding: 24px;
    background: rgba(0, 0, 0, .78);
}

.qp-popup-layer[hidden],
.qp-popup[hidden],
.qp-popup-form__field[hidden] {
    display: none;
}

.qp-popup {
    width: min(100%, 700px);
}

.qp-popup__panel {
    position: relative;
    max-height: calc(100vh - 32px);
    overflow: auto;
    padding: 26px;
    border: 2px solid rgba(255, 255, 255, .14);
    border-radius: 22px;
    background: #151515;
    color: #fff;
    box-shadow: 0 24px 80px rgba(0, 0, 0, .5);
}

.qp-popup__panel h2 {
    margin: 0 40px 20px 0;
    color: #fff;
    font-size: clamp(22px, 2.1vw, 28px);
    font-weight: var(--qp-font-weight-quantum-bold);
    line-height: 1.05;
    letter-spacing: 0;
    text-transform: uppercase;
}

.qp-popup__close {
    position: absolute;
    top: 14px;
    right: 14px;
    display: inline-grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    cursor: pointer;
    font-size: 24px;
    line-height: 1;
}

.qp-popup-form {
    display: grid;
    gap: 11px;
}

.qp-popup-form__hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.qp-popup-form__field {
    display: grid;
    gap: 5px;
    color: #fff;
    font-size: 14px;
}

.qp-popup-form__field input,
.qp-popup-form__field textarea,
.qp-popup-form__field select {
    width: 100%;
    min-height: 40px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 10px;
    background: #080808;
    color: #fff;
    font: inherit;
    padding: 0 12px;
    outline: none;
}

.qp-popup-form__field textarea {
    min-height: 70px;
    resize: vertical;
    padding-top: 10px;
}

.qp-popup-form__field input:focus,
.qp-popup-form__field textarea:focus,
.qp-popup-form__field select:focus {
    border-color: var(--qp-accent);
}

.qp-popup-form__accept {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: var(--qp-muted);
    font-size: 12px;
    line-height: 1.3;
}

.qp-popup-form__accept input {
    margin-top: 2px;
    accent-color: var(--qp-accent);
}

.qp-popup-form__accept a {
    color: #fff;
}

.qp-popup-form__error {
    min-height: 16px;
    margin: 0;
    color: #ff6b6b;
    font-size: 12px;
}

.qp-popup-form__submit {
    min-height: 44px;
    border: 0;
    border-radius: 10px;
    background: var(--qp-accent);
    color: #fff;
    cursor: pointer;
    font-size: 17px;
    font-family: var(--qp-font-body);
    font-weight: var(--qp-font-weight-quantum-regular);
}

.qp-popup-form__submit:hover,
.qp-popup-form__submit:focus-visible {
    background: var(--qp-accent-strong);
}

.qp-popup-form__submit:disabled {
    cursor: wait;
    opacity: .72;
}

@media (max-width: 640px) {
    .qp-404-page {
        min-height: auto;
        padding: 28px 0 34px;
        overflow: visible;
    }

    .qp-404-page__grid {
        gap: 18px;
    }

    .qp-404-page__content {
        gap: 18px;
    }

    .qp-404-page__code {
        font-size: clamp(92px, 30vw, 132px);
    }

    .qp-404-page h1 {
        max-width: 340px;
        font-size: clamp(22px, 7vw, 30px);
        line-height: 1.14;
    }

    .qp-404-page__button {
        min-width: 174px;
        min-height: 48px;
        padding: 0 22px;
        border-radius: 9px;
        font-size: 20px;
    }

    .qp-404-page__media {
        gap: 10px;
    }

    .qp-404-page__media img {
        width: min(100%, 250px);
        max-height: 42vh;
    }

    .qp-404-page__media figcaption {
        font-size: 17px;
        text-align: center;
    }

    .qp-legal-page {
        padding: 24px 0 64px;
    }

    .qp-legal-page h1 {
        margin-bottom: 24px;
        font-size: 22px;
        line-height: 1.14;
    }

    .qp-legal-page__content {
        font-size: 16px;
        line-height: 1.55;
    }

    .qp-thanks-page {
        padding: 72px 0 64px;
    }

    .qp-thanks-card {
        gap: 24px;
        padding: 34px 18px 28px;
        border-radius: 22px;
    }

    .qp-thanks-card h1 {
        font-size: 30px;
        line-height: 1.12;
    }

    .qp-thanks-card p {
        font-size: 19px;
    }

    .qp-thanks-button {
        min-height: 56px;
        border-radius: 10px;
        font-size: 20px;
    }

    .qp-cart-page__head h1 {
        font-size: 30px;
    }

    .qp-cart-page__head p {
        font-size: 16px;
    }

    .qp-cart-items__head {
        display: grid;
        gap: 10px;
        padding: 18px;
    }

    .qp-cart-items__head h2,
    .qp-cart-totals h2,
    .qp-cart-empty__panel h2 {
        font-size: 21px;
    }

    .qp-cart-totals,
    .qp-cart-empty__panel {
        padding: 18px;
    }

    .qp-cart-empty__panel p {
        font-size: 16px;
    }

    .qp-cart-empty__button,
    .qp-cart-empty__link {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .qp-cart-totals__links {
        display: grid;
        grid-template-columns: 1fr;
    }

    .qp-cart-totals__links a {
        width: 100%;
    }

    .qp-account-page__head h1 {
        font-size: 30px;
    }

    .qp-account-page__head p {
        font-size: 16px;
    }

    .qp-account-page .u-column1,
    .qp-account-page .u-column2,
    .qp-account-page .woocommerce-MyAccount-content,
    .qp-account-page .woocommerce-form-login,
    .qp-account-page .woocommerce-form-register,
    .qp-account-page .woocommerce-Address,
    .qp-account-page .woocommerce-address-fields,
    .qp-account-page .woocommerce-EditAccountForm {
        padding: 18px;
    }

    .qp-account-page h2,
    .qp-account-page h3,
    .qp-account-page legend {
        font-size: 21px;
    }

    .qp-account-page .woocommerce-MyAccount-navigation a,
    .qp-account-page .button,
    .qp-account-page button.button,
    .qp-account-page input.button {
        width: 100%;
    }

    .qp-cookie-consent {
        right: 12px;
        bottom: 12px;
        width: calc(100vw - 24px);
    }

    .qp-cookie-consent__body {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 16px;
    }

    .qp-cookie-consent__body p {
        font-size: 14px;
    }

    .qp-cookie-consent__button {
        width: 100%;
        min-height: 40px;
        font-size: 15px;
    }

    .qp-popup-layer {
        padding: 12px;
    }

    .qp-popup__panel {
        max-height: calc(100vh - 24px);
        padding: 22px 14px 16px;
        border-radius: 18px;
    }

    .qp-popup__panel h2 {
        margin-bottom: 16px;
        font-size: 22px;
    }

    .qp-popup-form__submit {
        font-size: 16px;
    }
}

@media (max-width: 960px) {
    .qp-404-page {
        min-height: auto;
        padding: 44px 0 52px;
    }

    .qp-404-page__grid {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 24px;
    }

    .qp-404-page__content {
        justify-items: center;
        text-align: center;
    }

    .qp-404-page__code {
        font-size: clamp(112px, 28vw, 196px);
    }

    .qp-404-page h1 {
        max-width: 620px;
        font-size: clamp(28px, 6vw, 44px);
    }

    .qp-404-page__button {
        min-height: 56px;
        font-size: 24px;
    }

    .qp-404-page__media img {
        width: min(100%, 340px);
        max-height: 46vh;
    }

    .qp-404-page__media figcaption {
        font-size: clamp(18px, 3.2vw, 26px);
        text-align: center;
    }

    .qp-cart-page {
        padding: 52px 0 72px;
    }

    .qp-cart-layout {
        grid-template-columns: 1fr;
    }

    .qp-cart-collaterals {
        position: static;
    }

    .qp-cart-totals {
        display: block;
    }

    .qp-cart-checkout {
        margin-top: 22px;
    }

    .qp-cart-totals__note {
        margin-top: 16px;
    }

    .qp-cart-table,
    .qp-cart-table tbody,
    .qp-cart-table tr,
    .qp-cart-table td {
        width: 100%;
    }

    .qp-cart-table thead {
        display: none;
    }

    .qp-cart-table tbody {
        display: block;
    }

    .qp-cart-table tr.cart_item {
        display: grid;
        grid-template-columns: 112px minmax(0, 1fr) 46px;
        grid-template-areas:
            "thumb name remove"
            "price price price"
            "quantity quantity quantity"
            "subtotal subtotal subtotal";
        gap: 14px 16px;
        align-items: start;
        padding: 18px;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
    }

    .qp-cart-table tr.cart_item td {
        min-width: 0;
        padding: 0;
        border: 0;
    }

    .qp-cart-table tr.cart_item td + td {
        margin-top: 0;
    }

    .qp-cart-table tr.cart_item .product-thumbnail {
        grid-area: thumb;
        display: block;
        width: auto;
    }

    .qp-cart-table .product-thumbnail img {
        width: 112px;
        height: 112px;
    }

    .qp-cart-table tr.cart_item .product-name {
        grid-area: name;
        padding-right: 0;
    }

    .qp-cart-table .product-name a {
        font-size: 18px;
    }

    .qp-cart-table .variation {
        grid-template-columns: minmax(150px, max-content) minmax(0, 1fr);
        column-gap: 12px;
        row-gap: 6px;
        font-size: 14px;
    }

    .qp-cart-table tr.cart_item .product-price,
    .qp-cart-table tr.cart_item .product-quantity,
    .qp-cart-table tr.cart_item .product-subtotal {
        display: flex;
        gap: 12px;
        align-items: center;
        justify-content: space-between;
        padding-top: 12px;
        border-top: 1px solid rgba(255, 255, 255, .08);
        font-size: 16px;
        text-align: right;
    }

    .qp-cart-table tr.cart_item .product-price {
        grid-area: price;
    }

    .qp-cart-table tr.cart_item .product-quantity {
        grid-area: quantity;
    }

    .qp-cart-table tr.cart_item .product-subtotal {
        grid-area: subtotal;
    }

    .qp-cart-table .product-price::before,
    .qp-cart-table .product-quantity::before,
    .qp-cart-table .product-subtotal::before {
        content: attr(data-title);
        color: rgba(255, 255, 255, .62);
        font-size: 14px;
        text-align: left;
    }

    .qp-cart-table tr.cart_item .product-remove {
        grid-area: remove;
        display: flex;
        align-items: flex-start;
        justify-content: flex-end;
        width: auto;
    }

    .qp-cart-actions-row td.actions,
    .qp-cart-actions-row .actions,
    .qp-cart-coupon {
        display: grid;
        width: 100%;
    }

    .qp-cart-coupon input,
    .qp-cart-update,
    .qp-cart-coupon .button {
        width: 100%;
    }

    .qp-account-page {
        padding: 52px 0 72px;
    }

    .qp-account-page .u-columns {
        grid-template-columns: 1fr;
    }

    .qp-account-page .woocommerce-MyAccount-navigation ul {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .qp-account-page table.shop_table,
    .qp-account-page table.shop_table tbody,
    .qp-account-page table.shop_table tr,
    .qp-account-page table.shop_table td {
        display: block;
        width: 100%;
    }

    .qp-account-page table.shop_table thead {
        display: none;
    }

    .qp-account-page table.shop_table tr {
        padding: 16px 0;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
    }

    .qp-account-page table.shop_table td {
        display: flex;
        gap: 12px;
        justify-content: space-between;
        padding: 8px 0;
        border: 0;
        font-size: 15px;
        text-align: right;
    }

    .qp-account-page table.shop_table td::before {
        content: attr(data-title);
        color: rgba(255, 255, 255, .62);
        text-align: left;
    }

    .qp-account-page .woocommerce-orders-table__cell-order-actions {
        display: grid;
        justify-content: stretch;
    }

    .qp-trade-page {
        padding-top: 36px;
    }

    .qp-trade-hero__card,
    .qp-trade-benefits__grid,
    .qp-trade-steps__grid,
    .qp-trade-value__grid,
    .qp-payment-hero__grid,
    .qp-payment-store__grid,
    .qp-payment-credit__grid,
    .qp-payment-invoice__grid,
    .qp-warranty-hero__grid,
    .qp-warranty-support__grid,
    .qp-company-hero__grid {
        grid-template-columns: 1fr;
    }

    .qp-checkout-top-grid {
        grid-template-columns: 1fr;
        gap: 28px;
        align-items: stretch;
        min-height: 0;
    }

    .qp-checkout-fields-card {
        margin-top: 0;
    }

    .woocommerce-checkout-review-order-table {
        font-size: 18px;
    }

    .woocommerce-privacy-policy-text p,
    .woocommerce-terms-and-conditions-wrapper .form-row {
        font-size: 18px;
    }

    .qp-trade-hero__card {
        min-height: 0;
        gap: 28px;
        padding: 34px;
    }

    .qp-trade-hero__media {
        justify-content: center;
    }

    .qp-trade-hero__media img {
        max-height: 260px;
        object-position: center;
    }

    .qp-trade-hero__copy h1 {
        font-size: clamp(30px, 5vw, 38px);
    }

    .qp-trade-hero__copy p {
        max-width: none;
        margin: 20px 0 26px;
        font-size: 18px;
    }

    .qp-trade-hero .qp-trade-actions {
        gap: 16px;
    }

    .qp-trade-hero .qp-trade-button {
        min-height: 52px;
        font-size: 16px;
    }

    .qp-trade-benefits__copy {
        padding-top: 0;
    }

    .qp-trade-video {
        width: min(360px, 100%);
        margin-inline: auto;
    }

    .qp-payment-page {
        padding-top: 52px;
    }

    .qp-payment-hero__grid,
    .qp-payment-store__grid,
    .qp-payment-credit__grid,
    .qp-payment-invoice__grid {
        gap: 28px;
    }

    .qp-payment-hero__media {
        justify-self: center;
        width: min(100%, 360px);
        max-width: 360px;
    }

    .qp-payment-banks__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 18px;
    }

    .qp-warranty-hero__media {
        justify-self: center;
        max-width: 360px;
    }

    .qp-warranty-support__grid {
        gap: 32px;
    }

    .qp-pc-selection-cta__inner {
        min-height: 340px;
        padding: 52px 40px;
        background-attachment: scroll;
    }

    .qp-company-page {
        padding-top: 52px;
    }

    .qp-company-hero__grid {
        gap: 36px;
    }

    .qp-company-hero__media {
        justify-self: center;
        width: min(100%, 360px);
    }

    .qp-company-offers__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .qp-company-offer-card,
    .qp-company-offer-card:nth-child(n + 4) {
        grid-column: span 1;
    }

    .qp-configurator-intro__card {
        grid-template-columns: 1fr;
    }

    .qp-configurator-intro__media img {
        min-height: 220px;
        aspect-ratio: 16 / 8;
    }

    .qp-configurator-intro__copy {
        padding: 34px 32px;
    }
}

@media (max-width: 700px) {
    .qp-shell {
        width: min(100% - 32px, var(--qp-shell));
    }

    .qp-trade-page {
        padding-top: 24px;
    }

    .qp-trade-hero__card {
        gap: 24px;
        padding: 28px 22px;
        border-radius: 20px;
    }

    .qp-trade-hero__media img {
        max-height: 210px;
        object-position: center;
    }

    .qp-trade-hero__copy h1 {
        font-size: 28px;
    }

    .qp-trade-hero__copy p {
        margin: 18px 0 22px;
        font-size: 17px;
        line-height: 1.45;
    }

    .qp-trade-hero .qp-trade-actions {
        grid-template-columns: 1fr;
    }

    .qp-trade-hero .qp-trade-button {
        min-height: 50px;
        padding: 0 18px;
        font-size: 15px;
    }

    .qp-hero h1 {
        font-size: 42px;
    }

    .qp-hero p {
        font-size: 21px;
    }

    .qp-payment-page .qp-section {
        padding: 24px 0;
    }

    body.woocommerce-checkout .qp-section {
        padding: 28px 0 54px;
    }

    .qp-checkout-fields-card,
    .woocommerce-checkout-payment {
        padding: 20px 14px;
    }

    .woocommerce-checkout-review-order-table,
    .woocommerce-checkout-review-order-table thead,
    .woocommerce-checkout-review-order-table tbody,
    .woocommerce-checkout-review-order-table tfoot,
    .woocommerce-checkout-review-order-table tr,
    .woocommerce-checkout-review-order-table th,
    .woocommerce-checkout-review-order-table td {
        display: block;
        width: 100%;
    }

    .woocommerce-checkout-review-order-table .product-total,
    .woocommerce-checkout-review-order-table tfoot td,
    .woocommerce-checkout-review-order-table .product-name {
        width: 100%;
        white-space: normal;
    }

    .woocommerce-checkout-review-order-table {
        font-size: 16px;
    }

    .qp-checkout-notes {
        margin-top: 36px;
    }

    .qp-checkout-notes label,
    .qp-checkout-payment-section h3,
    .woocommerce-checkout-payment .wc_payment_method > label {
        font-size: 20px;
    }

    .woocommerce-privacy-policy-text p,
    .woocommerce-terms-and-conditions-wrapper .form-row {
        font-size: 16px;
    }

    .qp-payment-hero__copy p,
    .qp-payment-section-copy p,
    .qp-payment-qna p,
    .qp-payment-qna li {
        font-size: 15px;
    }

    .qp-payment-hero__copy h1,
    .qp-payment-section-copy h2,
    .qp-payment-banks h2,
    .qp-payment-faq h2 {
        font-size: 25px;
    }

    .qp-payment-check-list li,
    .qp-payment-qna h3 {
        font-size: 14px;
    }

    .qp-payment-banks {
        margin-top: 54px;
    }

    .qp-payment-banks__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .qp-payment-banks__grid img {
        max-width: 118px;
        max-height: 42px;
    }

    .qp-warranty-page .qp-section {
        padding: 34px 0;
    }

    .qp-warranty-hero__copy h1,
    .qp-warranty-faq h2,
    .qp-warranty-support__copy h2 {
        font-size: 30px;
    }

    .qp-warranty-hero__copy p,
    .qp-warranty-qna p {
        font-size: 16px;
    }

    .qp-warranty-qna h3 {
        font-size: 16px;
    }

    .qp-warranty-contacts {
        margin-top: 34px;
    }

    .qp-warranty-contact a,
    .qp-warranty-contact strong {
        font-size: 20px;
    }

    .qp-pc-selection-cta {
        padding: 28px 0;
    }

    .qp-pc-selection-cta__inner {
        min-height: 320px;
        padding: 38px 24px;
    }

    .qp-pc-selection-cta__content h2 {
        font-size: 30px;
    }

    .qp-pc-selection-cta__content p {
        font-size: 18px;
    }

    .qp-pc-selection-cta__button {
        min-width: 142px;
        min-height: 42px;
        font-size: 16px;
    }

    .qp-company-page .qp-section {
        padding-bottom: 48px;
    }

    .qp-company-hero__copy h1,
    .qp-company-offers h2 {
        font-size: 30px;
    }

    .qp-company-hero__copy p {
        font-size: 16px;
    }

    .qp-company-stats dt {
        font-size: 17px;
    }

    .qp-company-selection-cta {
        padding-bottom: 48px;
    }

    .qp-company-selection-cta .qp-pc-selection-cta__inner {
        min-height: 300px;
        padding: 34px 22px;
    }

    .qp-company-offers__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .qp-company-offer-card h3 {
        font-size: 18px;
    }

    .qp-company-offer-card p {
        font-size: 15px;
    }

    .qp-configurator-template {
        padding-top: 20px;
    }

    .qp-configurator-template .qp-section {
        padding-bottom: 48px;
    }

    .qp-configurator-intro__media img {
        min-height: 180px;
    }

    .qp-configurator-intro__copy {
        padding: 28px 22px;
    }

    .qp-configurator-intro__copy h1 {
        font-size: 28px;
    }

    .qp-configurator-intro__copy p {
        font-size: 16px;
    }

    .qp-configurator-intro__card {
        padding: 30px;
        gap: 28px;
        border-radius: 30px;
    }

    .qp-configurator-intro__media {
        order: 2;
    }

    .qp-configurator-intro__media img {
        min-height: 0;
        height: auto;
        aspect-ratio: 16 / 9;
        border-radius: 8px;
    }

    .qp-configurator-intro__copy {
        display: contents;
        padding: 0;
    }

    .qp-configurator-intro__copy h1 {
        order: 1;
        margin: 0;
        font-size: 30px;
    }

    .qp-configurator-intro__copy p {
        order: 3;
        max-width: none;
        margin: 0;
        font-size: var(--qp-home-quantum-copy-size);
    }

    .qp-lead-quiz-page {
        padding: 42px 0 36px;
    }

    .qp-lead-quiz-page .qp-quiz {
        padding: 22px 0;
    }

    .qp-video-card__play {
        border-top-width: 46px;
        border-bottom-width: 46px;
        border-left-width: 82px;
    }

    .qp-video-card__caption {
        left: 28px;
        bottom: 46px;
        font-size: 28px;
    }

    .qp-product-grid,
    .products.qp-product-grid,
    .woocommerce ul.products {
        grid-template-columns: 1fr;
        width: min(310px, 100%);
    }

    .qp-product-grid--dynamic.products.qp-product-grid {
        grid-template-columns: repeat(var(--qp-grid-columns-mobile, 1), minmax(0, 1fr));
    }

    .qp-home-popular__grid.products.qp-product-grid {
        grid-template-columns: repeat(var(--qp-grid-columns-mobile, 1), minmax(0, 1fr));
        width: min(360px, 100%);
    }

    .qp-home-products {
        padding-top: 46px;
    }

    .qp-home-products__head {
        margin-bottom: 20px;
    }

    .qp-home-products__head h2 {
        font-size: 30px;
    }

    .qp-home-products__grid.products.qp-product-grid {
        grid-template-columns: repeat(var(--qp-grid-columns-mobile, 1), minmax(0, 1fr));
        width: min(360px, 100%);
    }

    .qp-product-card-carousel__rail.products.qp-product-grid {
        width: 100%;
    }

    .qp-product-card-carousel__rail .qp-product-card {
        flex-basis: min(310px, 86vw);
    }

    .qp-home-products__all {
        min-height: 40px;
        margin-top: 18px;
        font-size: 13px;
    }

    .qp-home-products-selection-cta {
        padding-top: 46px;
    }

    .qp-home-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .qp-home-configurator {
        grid-template-columns: 1fr;
        padding: 30px;
        gap: 28px;
    }

    .qp-home-configurator__media {
        order: 2;
    }

    .qp-home-configurator__media img {
        display: block;
        aspect-ratio: 16 / 9;
        height: auto;
        border-radius: 8px;
    }

    .qp-home-configurator__content {
        display: contents;
        padding: 0;
    }

    .qp-home-configurator__content h2 {
        order: 1;
        margin: 0;
        font-size: 30px;
    }

    .qp-home-configurator__content p {
        order: 3;
        max-width: none;
        margin: 0;
        font-size: var(--qp-home-quantum-copy-size);
    }

    .qp-home-configurator__content .qp-button {
        order: 4;
        width: 100%;
        min-height: 46px;
        margin-top: 0;
    }

    .qp-home-card {
        padding: 30px;
    }

    .qp-home-delivery {
        padding: 42px 0 52px;
    }

    .qp-home-delivery h2 {
        font-size: 30px;
    }

    .qp-marquee,
    .qp-delivery-marquee {
        height: 46px;
        margin-bottom: 24px;
    }

    .qp-marquee__track span,
    .qp-delivery-marquee__track span {
        font-size: 15px;
        letter-spacing: .24em;
    }

    .qp-stats-row,
    .qp-delivery-stats {
        grid-template-columns: repeat(var(--qp-stats-columns-mobile, 1), minmax(0, 1fr));
    }

    .qp-stats-row__item + .qp-stats-row__item,
    .qp-delivery-stat + .qp-delivery-stat {
        border-top: 1px solid rgba(255, 255, 255, .78);
        border-left: 0;
    }

    .qp-delivery-copy {
        font-size: var(--qp-home-quantum-copy-size);
    }

    .qp-home-trust-video {
        padding: 0 0 48px;
    }

    .qp-home-trust-video__frame {
        border-radius: 18px;
    }

    .qp-home-trust-video__frame video {
        aspect-ratio: 16 / 9;
    }

    .qp-home-video--has-mobile {
        display: none;
    }

    .qp-home-video--mobile {
        display: block;
        width: min(420px, 100%);
        margin-inline: auto;
    }

    .qp-home-video--mobile video,
    .qp-video-card.qp-home-video--mobile video,
    .qp-home-trust-video__frame.qp-home-video--mobile video {
        aspect-ratio: 9 / 16;
    }

    .qp-vk-video-section,
    .qp-home-team {
        padding-bottom: 48px;
    }

    .qp-vk-video-section h2,
    .qp-home-team h2 {
        font-size: 30px;
    }

    .qp-vk-video-section__grid,
    .qp-home-team__grid {
        grid-template-columns: 1fr;
        gap: 14px;
        width: min(360px, 100%);
        margin-inline: auto;
    }

    .qp-home-tradein {
        padding-bottom: 48px;
    }

    .qp-home-tradein__card {
        grid-template-columns: 1fr;
        gap: 26px;
        padding: 30px;
        border-radius: 22px;
    }

    .qp-home-tradein__media {
        gap: 10px;
    }

    .qp-home-tradein__pc {
        height: 128px;
    }

    .qp-home-tradein__arrows {
        font-size: 38px;
    }

    .qp-home-tradein__content h2 {
        font-size: 30px;
    }

    .qp-home-reviews {
        padding-bottom: 48px;
    }

    .qp-home-reviews__layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .qp-home-reviews__copy {
        min-height: 0;
    }

    .qp-home-reviews__copy h2 {
        font-size: 30px;
    }

    .qp-home-reviews__copy p {
        font-size: 17px;
    }

    .qp-home-reviews__widget {
        width: 100%;
        justify-self: stretch;
    }

    .qp-home-reviews__spacer {
        min-height: 620px;
    }

    .qp-home-store-tour {
        padding-bottom: 48px;
    }

    .qp-home-store-tour h2 {
        margin-bottom: 24px;
        font-size: 30px;
    }

    .qp-home-store-tour__grid {
        grid-template-columns: 1fr;
    }

    .qp-image-gallery-block__head {
        margin-bottom: 24px;
    }

    .qp-image-gallery-block__head h2 {
        font-size: 30px;
    }

    .qp-image-gallery {
        grid-template-columns: repeat(var(--qp-gallery-columns-mobile, 1), minmax(0, 1fr));
    }

    .qp-lightbox {
        padding: 16px;
    }

    .qp-lightbox__stage,
    .qp-lightbox__image {
        max-height: calc(100vh - 92px);
    }

    .qp-lightbox__close {
        top: 12px;
        right: 12px;
    }

    .qp-lightbox__nav {
        width: 42px;
        height: 58px;
        margin-top: -29px;
        font-size: 34px;
    }

    .qp-lightbox__nav--prev {
        left: 12px;
    }

    .qp-lightbox__nav--next {
        right: 12px;
    }

    .qp-home-contacts {
        padding-bottom: 48px;
    }

    .qp-home-contacts__layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .qp-home-contacts__copy h2 {
        font-size: 30px;
    }

    .qp-home-contacts__phone {
        font-size: 30px;
    }

    .qp-home-contacts__item {
        font-size: 20px;
    }

    .qp-home-contacts__item strong {
        font-size: 22px;
    }

    .qp-home-contacts__map {
        width: 100%;
        justify-self: stretch;
    }

    .qp-home-contacts__map iframe {
        height: 460px;
    }

    .qp-site-footer__grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 821px) and (max-width: 960px) {
    .qp-404-page {
        min-height: calc(100svh - 86px);
        padding: 32px 0;
        overflow-x: hidden;
    }

    .qp-404-page__grid {
        grid-template-columns: minmax(0, 1fr) minmax(240px, 320px);
        gap: 28px;
    }

    .qp-404-page__content {
        justify-items: end;
        gap: 24px;
        text-align: right;
    }

    .qp-404-page__code {
        font-size: clamp(112px, 18vw, 160px);
    }

    .qp-404-page h1 {
        max-width: 520px;
        font-size: 30px;
    }

    .qp-404-page__button {
        min-height: 52px;
        font-size: 22px;
    }

    .qp-404-page__media img {
        width: min(100%, 320px);
        max-height: calc(100vh - 112px);
    }

    .qp-404-page__media figcaption {
        font-size: 20px;
        text-align: right;
    }
}

@media (max-width: 640px) {
    .qp-404-page {
        min-height: auto;
        padding: 28px 0 34px;
        overflow: visible;
    }

    .qp-404-page__grid {
        gap: 18px;
    }

    .qp-404-page__content {
        gap: 18px;
    }

    .qp-404-page__code {
        font-size: clamp(92px, 30vw, 132px);
    }

    .qp-404-page h1 {
        max-width: 340px;
        font-size: clamp(22px, 7vw, 30px);
        line-height: 1.14;
    }

    .qp-404-page__button {
        min-width: 174px;
        min-height: 48px;
        padding: 0 22px;
        border-radius: 9px;
        font-size: 20px;
    }

    .qp-404-page__media {
        gap: 10px;
    }

    .qp-404-page__media img {
        width: min(56vw, 250px);
        max-height: 34vh;
    }

    .qp-404-page__media figcaption {
        font-size: 17px;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .qp-placeholder-page {
        padding: 42px 0 64px;
    }

    .qp-placeholder-card {
        gap: 18px;
        padding: 24px 18px;
        border-radius: 18px;
    }

    .qp-placeholder-card__eyebrow {
        font-size: 14px;
    }

    .qp-placeholder-card h1 {
        font-size: 28px;
        line-height: 1.12;
    }

    .qp-placeholder-card p {
        font-size: 16px;
    }

    .qp-placeholder-card__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .qp-placeholder-card__button,
    .qp-placeholder-card__link {
        width: 100%;
        min-height: 48px;
        font-size: 17px;
    }
}

@media (max-width: 640px) {
    .qp-cart-page {
        padding: 34px 0 56px;
    }

    .qp-cart-page .qp-shell {
        width: min(100% - 24px, var(--qp-shell));
    }

    .qp-cart-items__head {
        padding: 16px;
    }

    .qp-cart-items__head h2 {
        font-size: 20px;
    }

    .qp-cart-continue {
        font-size: 14px;
    }

    .qp-cart-table tr.cart_item {
        grid-template-columns: 86px minmax(0, 1fr) 40px;
        gap: 12px;
        padding: 16px;
    }

    .qp-cart-table .product-thumbnail img {
        width: 86px;
        height: 86px;
        border-radius: 7px;
    }

    .qp-cart-table .product-name a {
        font-size: 17px;
        line-height: 1.18;
    }

    .qp-cart-table .variation {
        grid-template-columns: 1fr;
        gap: 3px;
        margin-top: 9px;
        font-size: 13px;
        line-height: 1.3;
    }

    .qp-cart-table .variation dt {
        color: rgba(255, 255, 255, .55);
    }

    .qp-cart-table .variation dd {
        margin-bottom: 5px;
        color: rgba(255, 255, 255, .82);
    }

    .qp-cart-table tr.cart_item .product-price,
    .qp-cart-table tr.cart_item .product-quantity,
    .qp-cart-table tr.cart_item .product-subtotal {
        padding-top: 10px;
        font-size: 15px;
    }

    .qp-cart-table .quantity input {
        width: 58px;
        min-height: 38px;
    }

    .qp-cart-remove {
        width: 36px;
        height: 36px;
        font-size: 24px;
    }

    .qp-cart-actions-row td.actions {
        padding: 16px;
    }

    .qp-cart-update,
    .qp-cart-coupon .button,
    .qp-cart-checkout .checkout-button {
        width: 100%;
    }

    .qp-cart-totals {
        padding: 18px;
    }

    .qp-cart-totals-table,
    .qp-cart-totals-table tbody,
    .qp-cart-totals-table tr,
    .qp-cart-totals-table th,
    .qp-cart-totals-table td {
        display: block;
        width: 100%;
    }

    .qp-cart-totals-table tr {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 12px;
        align-items: center;
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, .09);
    }

    .qp-cart-totals-table th,
    .qp-cart-totals-table td {
        padding: 0;
        border: 0;
    }

    .qp-cart-totals-table td {
        text-align: right;
    }

    .qp-cart-totals-table .order-total th,
    .qp-cart-totals-table .order-total td {
        padding-top: 0;
        font-size: 21px;
    }

    .qp-cart-totals__note {
        font-size: 13px;
    }
}

.qp-header-action:not(:disabled):not([disabled]):hover,
.qp-header-action:not(:disabled):not([disabled]):focus-visible,
.qp-button--primary:not(:disabled):not([disabled]):hover,
.qp-button--primary:not(:disabled):not([disabled]):focus-visible,
.qp-button--card:not(:disabled):not([disabled]):hover,
.qp-button--card:not(:disabled):not([disabled]):focus-visible,
.single_add_to_cart_button:not(:disabled):not([disabled]):hover,
.single_add_to_cart_button:not(:disabled):not([disabled]):focus-visible,
.qp-line-order-btn:not(:disabled):not([disabled]):hover,
.qp-line-order-btn:not(:disabled):not([disabled]):focus-visible,
.qp-card-order-btn:not(:disabled):not([disabled]):hover,
.qp-card-order-btn:not(:disabled):not([disabled]):focus-visible,
.qp-trade-button--primary:not(:disabled):not([disabled]):hover,
.qp-trade-button--primary:not(:disabled):not([disabled]):focus-visible,
.qp-offcanvas__callback:not(:disabled):not([disabled]):hover,
.qp-offcanvas__callback:not(:disabled):not([disabled]):focus-visible,
.qp-product-lines__arrow:not(:disabled):not([disabled]):hover,
.qp-product-lines__arrow:not(:disabled):not([disabled]):focus-visible,
.qp-checkout-form #place_order:not(:disabled):not([disabled]):hover,
.qp-checkout-form #place_order:not(:disabled):not([disabled]):focus-visible,
.qp-cart-update:not(:disabled):not([disabled]):hover,
.qp-cart-update:not(:disabled):not([disabled]):focus-visible,
.qp-cart-coupon .button:not(:disabled):not([disabled]):hover,
.qp-cart-coupon .button:not(:disabled):not([disabled]):focus-visible,
.qp-cart-empty__button:not(:disabled):not([disabled]):hover,
.qp-cart-empty__button:not(:disabled):not([disabled]):focus-visible,
.qp-cart-checkout .checkout-button:not(:disabled):not([disabled]):hover,
.qp-cart-checkout .checkout-button:not(:disabled):not([disabled]):focus-visible,
.qp-account-page .button:not(:disabled):not([disabled]):hover,
.qp-account-page .button:not(:disabled):not([disabled]):focus-visible,
.qp-account-page button.button:not(:disabled):not([disabled]):hover,
.qp-account-page button.button:not(:disabled):not([disabled]):focus-visible,
.qp-account-page input.button:not(:disabled):not([disabled]):hover,
.qp-account-page input.button:not(:disabled):not([disabled]):focus-visible,
.qp-thanks-button:not(:disabled):not([disabled]):hover,
.qp-thanks-button:not(:disabled):not([disabled]):focus-visible,
.qp-404-page__button:not(:disabled):not([disabled]):hover,
.qp-404-page__button:not(:disabled):not([disabled]):focus-visible,
.qp-placeholder-card__button:not(:disabled):not([disabled]):hover,
.qp-placeholder-card__button:not(:disabled):not([disabled]):focus-visible,
.qp-cookie-consent__button:not(:disabled):not([disabled]):hover,
.qp-cookie-consent__button:not(:disabled):not([disabled]):focus-visible,
.qp-popup-form__submit:not(:disabled):not([disabled]):hover,
.qp-popup-form__submit:not(:disabled):not([disabled]):focus-visible {
    border-color: #fff;
    background: #fff;
    color: #080808;
}
