.vc-shop {
    --vc-shop-width: 1480px;
    background: #050505;
    color: var(--vc-text);
}

.vc-shop-hero {
    width: min(100% - calc(var(--vc-x) * 2), var(--vc-shop-width));
    min-height: 198px;
    margin: 42px auto 0;
    background-color: #090909;
    background-position: center;
    background-size: cover;
    position: relative;
    isolation: isolate;
}

.vc-shop-container {
    width: min(100% - calc(var(--vc-x) * 2), var(--vc-shop-width));
}

.vc-shop-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(90deg, rgba(20, 20, 20, 0.92) 0%, rgba(20, 20, 20, 0.78) 55%, rgba(20, 20, 20, 0.20) 100%);
}

.vc-shop-hero__inner {
    min-height: 198px;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.vc-shop-hero__inner .vc-button {
    box-sizing: border-box;
    flex: 0 1 auto;
    max-width: 100%;
    white-space: normal;
    text-align: center;
}

@media (max-width: 980px) {
    .vc-shop-hero__inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .vc-shop-hero__inner .vc-button {
        width: min(100%, 340px);
    }
}

.vc-shop-hero h1 {
    margin: 0 0 10px;
    font-size: clamp(30px, 3vw, 42px);
    line-height: 1.05;
}

.vc-shop-hero p {
    margin: 0;
    color: #ffffff;
    font-size: clamp(16px, 1.5vw, 20px);
}

.vc-shop__layout {
    width: min(100% - calc(var(--vc-x) * 2), var(--vc-shop-width)) !important;
    display: grid;
    grid-template-columns: minmax(230px, 300px) minmax(0, 1fr);
    gap: clamp(38px, 5vw, 72px);
    margin-inline: auto;
    padding-block: 110px 96px;
}

.vc-shop__sidebar {
    align-self: start;
    position: sticky;
    top: 24px;
}

.vc-shop__sidebar h2 {
    margin: 0 0 22px;
    color: #ffffff;
    font-size: 23px;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.vc-shop-filter,
.vc-shop-filter ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.vc-shop-filter__all,
.vc-shop-filter a,
.vc-shop-filter summary span {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 30px;
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: color .18s ease;
}

.vc-shop-filter__all {
    font-weight: 700;
}

.vc-shop-filter__all span {
    color: var(--vc-green);
    font-size: 13px;
}

.vc-shop-filter a:hover,
.vc-shop-filter a.is-active,
.vc-shop-filter__item.is-active > a,
.vc-shop-filter__item.is-active > details > summary span,
.vc-shop-filter summary:hover span,
.vc-shop-filter__all.is-active {
    color: var(--vc-green);
}

.vc-shop-filter__list .vc-shop-filter__list {
    padding-left: 20px;
}

.vc-shop-filter details {
    margin: 0;
}

.vc-shop-filter summary {
    display: flex;
    align-items: center;
    gap: 9px;
    min-height: 30px;
    color: #ffffff;
    cursor: pointer;
    list-style: none;
}

.vc-shop-filter summary::-webkit-details-marker {
    display: none;
}

.vc-shop-filter summary::before {
    content: "";
    width: 7px;
    height: 7px;
    border-right: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    transform: rotate(-45deg);
    transition: transform .18s ease, border-color .18s ease;
}

.vc-shop-filter details[open] > summary::before {
    transform: rotate(45deg);
}

.vc-shop-filter__item.is-active > details > summary::before,
.vc-shop-filter summary:hover::before {
    border-color: var(--vc-green);
}

.vc-shop__head {
    display: none;
}

.vc-shop .vc-shop__grid {
    width: 100%;
}

.vc-shop__content .woocommerce-notices-wrapper,
.vc-shop__content .woocommerce-result-count,
.vc-shop__content .woocommerce-ordering {
    display: none;
}

.vc-shop__content {
    position: relative;
}

.vc-shop__content nav.woocommerce-pagination {
    margin-top: 54px;
}

.vc-shop__content .page-numbers {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.vc-shop__content .page-numbers a,
.vc-shop__content .page-numbers span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding-inline: 12px;
    border-radius: 999px;
    background: #252525;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
}

.vc-shop__content .page-numbers .current {
    background: var(--vc-green);
    color: #050505;
}

.vc-shop__empty {
    color: var(--vc-muted);
    font-size: 18px;
}

.vc-shop.is-loading .vc-shop__content > * {
    opacity: .48;
    pointer-events: none;
    transition: opacity .18s ease;
}

.vc-shop.is-loading .vc-shop__content::after {
    content: "";
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 1200;
    width: 46px;
    height: 46px;
    margin: -23px 0 0 -23px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, .2);
    border-top-color: var(--vc-green);
    background: rgba(5, 5, 5, .78);
    box-shadow: 0 0 0 14px rgba(5, 5, 5, .78), 0 18px 48px rgba(0, 0, 0, .46);
    animation: vc-shop-spin .8s linear infinite;
}

@keyframes vc-shop-spin {
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 1100px) {
    .vc-shop__layout {
        grid-template-columns: 1fr;
        padding-block: 72px;
    }

    .vc-shop__sidebar {
        position: static;
    }
}

@media (max-width: 760px) {
    .vc-shop-hero__inner {
        padding-block: 34px;
    }

    .vc-shop-hero__inner .vc-button {
        width: min(100%, 340px);
    }
}

/* Cart */
body.woocommerce-cart main.site-main {
    background: #050505;
    color: var(--vc-text);
    padding: clamp(62px, 8vw, 112px) var(--vc-x) clamp(82px, 9vw, 128px);
}

body.woocommerce-cart .entry-header,
body.woocommerce-cart .entry-content,
body.woocommerce-cart .woocommerce {
    width: min(100%, 1180px);
    margin-inline: auto;
}

body.woocommerce-cart .entry-header {
    margin-bottom: 42px;
}

body.woocommerce-cart .entry-title {
    margin: 0;
    color: #ffffff;
    font-size: clamp(42px, 5.2vw, 76px);
    line-height: .98;
}

body.woocommerce-cart .woocommerce {
    display: grid;
    gap: 30px;
}

body.woocommerce-cart .woocommerce-notices-wrapper {
    display: grid;
    gap: 12px;
}

body.woocommerce-cart .woocommerce-message,
body.woocommerce-cart .woocommerce-info,
body.woocommerce-cart .woocommerce-error {
    margin: 0;
    padding: 16px 18px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: #0b0b0b;
    color: #ffffff;
    list-style: none;
}

body.woocommerce-cart .woocommerce-message {
    border-color: rgba(163, 255, 0, .34);
    background: rgba(163, 255, 0, .07);
}

body.woocommerce-cart .woocommerce-error {
    border-color: rgba(255, 92, 92, .42);
    background: rgba(255, 92, 92, .08);
}

body.woocommerce-cart .woocommerce-cart-form,
body.woocommerce-cart .cart_totals {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .018), transparent 58%),
        #090909;
}

body.woocommerce-cart .woocommerce-cart-form {
    padding: clamp(22px, 3vw, 38px);
}

body.woocommerce-cart table.shop_table {
    width: 100%;
    border-collapse: collapse;
    color: #ffffff;
}

body.woocommerce-cart table.shop_table.cart,
body.woocommerce-cart table.shop_table.cart tbody {
    display: block;
}

body.woocommerce-cart table.shop_table th {
    padding: 0 18px 18px;
    color: var(--vc-muted);
    font-size: 13px;
    font-weight: 700;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: .06em;
}

body.woocommerce-cart table.shop_table td {
    padding: 22px 18px;
    border-top: 1px solid rgba(255, 255, 255, .09);
    vertical-align: middle;
}

body.woocommerce-cart .product-thumbnail {
    width: 96px;
}

body.woocommerce-cart .product-thumbnail img {
    display: block;
    width: 78px;
    height: 78px;
    object-fit: cover;
    background: #111111;
}

body.woocommerce-cart .product-name a {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.25;
    text-decoration: none;
}

body.woocommerce-cart .product-name a:hover {
    color: var(--vc-green);
}

body.woocommerce-cart .product-price,
body.woocommerce-cart .product-subtotal {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
}

body.woocommerce-cart .product-remove a {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #151515;
    color: var(--vc-muted) !important;
    font-size: 22px;
    line-height: 1;
    text-decoration: none;
}

body.woocommerce-cart .product-remove a:hover {
    background: rgba(255, 92, 92, .16);
    color: #ff7777 !important;
}

body.woocommerce-cart .quantity .qty {
    width: 76px;
    min-height: 46px;
    box-sizing: border-box;
    border: 1px solid rgba(255, 255, 255, .12);
    background: #0b0b0b;
    color: #ffffff;
    font: inherit;
    font-size: 16px;
    text-align: center;
    outline: none;
}

body.woocommerce-cart .quantity .qty:focus {
    border-color: rgba(163, 255, 0, .58);
}

body.woocommerce-cart .actions {
    padding-top: 28px !important;
}

body.woocommerce-cart .actions .coupon {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    float: none;
}

body.woocommerce-cart .coupon label {
    position: absolute;
    left: -9999px;
}

body.woocommerce-cart .coupon .input-text {
    min-height: 50px;
    min-width: min(100%, 280px);
    box-sizing: border-box;
    border: 1px solid rgba(255, 255, 255, .12);
    background: #0b0b0b;
    color: #ffffff;
    font: inherit;
    font-size: 15px;
    outline: none;
    padding: 0 16px;
}

body.woocommerce-cart button.button,
body.woocommerce-cart a.button,
body.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: var(--vc-radius-pill);
    background: linear-gradient(90deg, var(--vc-green), var(--vc-green-dark));
    color: #050505;
    cursor: pointer;
    font: inherit;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.1;
    padding: 0 28px;
    text-decoration: none;
}

body.woocommerce-cart button.button:hover,
body.woocommerce-cart a.button:hover,
body.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover {
    filter: brightness(1.04);
}

body.woocommerce-cart button.button:disabled,
body.woocommerce-cart button.button:disabled[disabled] {
    cursor: not-allowed;
    opacity: .45;
}

body.woocommerce-cart .cart-collaterals {
    display: grid;
    justify-content: end;
}

body.woocommerce-cart .cart_totals {
    width: min(100%, 460px);
    padding: clamp(24px, 3vw, 38px);
}

body.woocommerce-cart .cart_totals h2 {
    margin: 0 0 22px;
    color: #ffffff;
    font-size: clamp(28px, 3vw, 38px);
    line-height: 1.08;
}

body.woocommerce-cart .cart_totals table {
    width: 100%;
    border-collapse: collapse;
}

body.woocommerce-cart .cart_totals th,
body.woocommerce-cart .cart_totals td {
    padding: 17px 0;
    border-top: 1px solid rgba(255, 255, 255, .09);
    color: #ffffff;
    text-align: left;
    vertical-align: top;
}

body.woocommerce-cart .cart_totals th {
    color: var(--vc-muted);
    font-weight: 700;
}

body.woocommerce-cart .order-total td,
body.woocommerce-cart .order-total th {
    font-size: 22px;
    font-weight: 700;
}

body.woocommerce-cart .wc-proceed-to-checkout {
    padding: 24px 0 0;
}

body.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
    width: 100%;
    box-sizing: border-box;
    min-height: 58px;
    font-size: 16px;
}

body.woocommerce-cart .cross-sells {
    display: none;
}

body.woocommerce-cart .cart-empty,
body.woocommerce-cart .return-to-shop {
    width: min(100%, 760px);
    margin-inline: auto;
    text-align: center;
}

body.woocommerce-cart .cart-empty {
    padding: 54px 28px 18px;
    background: #090909;
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
}

body.woocommerce-cart .return-to-shop {
    padding-bottom: 54px;
    background: #090909;
}

/* Cart - minimal checkout style */
body.woocommerce-cart .woocommerce {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, .52fr);
    gap: 26px clamp(40px, 6vw, 96px);
}

body.woocommerce-cart .woocommerce-notices-wrapper,
body.woocommerce-cart .woocommerce-cart-form {
    grid-column: 1 / -1;
}

body.woocommerce-cart .woocommerce-cart-form,
body.woocommerce-cart .cart_totals {
    background: transparent;
}

body.woocommerce-cart .woocommerce-cart-form {
    padding: 0;
}

body.woocommerce-cart table.shop_table thead {
    display: none;
}

body.woocommerce-cart table.shop_table tr.cart_item {
    display: grid;
    grid-template-columns: 86px minmax(0, 1fr) 190px 170px 48px;
    align-items: center;
    gap: 12px;
    border-top: 1px solid rgba(255, 255, 255, .22);
}

body.woocommerce-cart table.shop_table td {
    border-top: 0;
    padding: 18px 16px;
    display: block;
    box-sizing: border-box;
}

body.woocommerce-cart .product-thumbnail {
    order: 1;
    width: 86px;
    padding-left: 0 !important;
}

body.woocommerce-cart .product-thumbnail img {
    width: 64px;
    height: 64px;
}

body.woocommerce-cart .product-name {
    order: 2;
    width: auto;
}

body.woocommerce-cart .product-name a {
    font-size: 17px;
    font-weight: 500;
}

body.woocommerce-cart .product-price {
    display: none;
}

body.woocommerce-cart .product-quantity {
    order: 3;
    text-align: center;
}

body.woocommerce-cart .quantity {
    display: inline-flex;
    align-items: center;
    position: relative;
}

body.woocommerce-cart .quantity::before,
body.woocommerce-cart .quantity::after {
    color: var(--vc-green);
    font-size: 34px;
    line-height: 1;
}

body.woocommerce-cart .quantity::before {
    content: "‹";
    margin-right: 14px;
}

body.woocommerce-cart .quantity::after {
    content: "›";
    margin-left: 14px;
}

body.woocommerce-cart .quantity .qty {
    width: 140px;
    min-height: 42px;
    border-color: rgba(255, 255, 255, .28);
    background: #050505;
}

body.woocommerce-cart .product-subtotal {
    order: 4;
    min-width: 150px;
    text-align: right;
    font-size: 17px;
    font-weight: 500;
}

body.woocommerce-cart .product-remove {
    order: 5;
    width: 56px;
    padding-right: 0 !important;
    text-align: right;
}

body.woocommerce-cart .product-remove a {
    background: transparent;
    color: #ffffff !important;
    font-size: 22px;
}

body.woocommerce-cart .actions {
    padding: 40px 0 0 !important;
}

body.woocommerce-cart .actions .coupon {
    width: min(100%, 470px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) 190px;
    gap: 0;
}

body.woocommerce-cart .coupon .input-text {
    min-width: 0;
    width: 100%;
    min-height: 50px;
    border-radius: 999px 0 0 999px;
    border-color: rgba(255, 255, 255, .38);
    border-right: 0;
    background: #050505;
}

body.woocommerce-cart .coupon button.button {
    border-radius: 999px;
    margin-left: -28px;
    position: relative;
    z-index: 1;
}

body.woocommerce-cart .actions > button.button {
    display: none;
}

body.woocommerce-cart .cart-collaterals {
    grid-column: 2;
}

body.woocommerce-cart .cart_totals {
    width: 100%;
    padding: 0;
}

body.woocommerce-cart .cart_totals h2 {
    display: none;
}

body.woocommerce-cart .cart_totals th,
body.woocommerce-cart .cart_totals td {
    border-top-color: rgba(255, 255, 255, .22);
}

body.woocommerce-cart .cart_totals th {
    color: #ffffff;
    font-weight: 700;
}

body.woocommerce-cart .cart_totals td {
    text-align: right;
    font-weight: 700;
}

body.woocommerce-cart .cart-subtotal {
    display: none;
}

body.woocommerce-cart .woocommerce-shipping-totals,
body.woocommerce-cart .shipping,
body.woocommerce-cart .woocommerce-shipping-calculator {
    display: none !important;
}

body.woocommerce-cart .order-total th,
body.woocommerce-cart .order-total td {
    padding-top: 20px;
    font-size: 24px;
}

body.woocommerce-cart .order-total .amount {
    color: #ffffff;
}

body.woocommerce-cart .includes_tax {
    display: block;
    margin-top: 6px;
    color: var(--vc-muted);
    font-size: 14px;
    font-weight: 400;
}

body.woocommerce-cart .wc-proceed-to-checkout {
    display: flex;
    justify-content: flex-end;
    padding-top: 26px;
}

body.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
    width: auto;
    min-width: 220px;
    padding-inline: 34px;
}

@media (max-width: 820px) {
    body.woocommerce-cart main.site-main {
        padding-inline: 0;
    }

    body.woocommerce-cart .entry-header,
    body.woocommerce-cart .entry-content,
    body.woocommerce-cart .woocommerce {
        width: min(100% - calc(var(--vc-x) * 2), 1180px);
    }

    body.woocommerce-cart table.shop_table thead {
        display: none;
    }

    body.woocommerce-cart table.shop_table tr.cart_item {
        grid-template-columns: 76px minmax(0, 1fr) 42px;
        gap: 10px 14px;
        position: relative;
        padding: 18px 0;
        border-top: 1px solid rgba(255, 255, 255, .09);
    }

    body.woocommerce-cart table.shop_table td {
        border: 0;
        padding: 8px 0;
    }

    body.woocommerce-cart .product-remove {
        grid-column: 3;
        grid-row: 1;
        position: static;
        width: 42px !important;
    }

    body.woocommerce-cart .product-thumbnail {
        grid-column: 1;
        grid-row: 1 / span 3;
        width: 76px !important;
        float: none;
        margin-right: 0;
    }

    body.woocommerce-cart .product-name {
        grid-column: 2;
        grid-row: 1;
        min-height: 0;
        width: auto;
        padding-right: 0 !important;
    }

    body.woocommerce-cart .product-quantity {
        grid-column: 2;
        grid-row: 2;
        text-align: left;
    }

    body.woocommerce-cart .product-subtotal {
        grid-column: 2;
        grid-row: 3;
        min-width: 0;
        text-align: left;
    }

    body.woocommerce-cart .product-price::before,
    body.woocommerce-cart .product-quantity::before,
    body.woocommerce-cart .product-subtotal::before {
        content: none;
    }

    body.woocommerce-cart .actions .coupon,
    body.woocommerce-cart .actions,
    body.woocommerce-cart .actions button.button {
        width: 100%;
    }

    body.woocommerce-cart .coupon .input-text {
        width: 100%;
    }

    body.woocommerce-cart .cart-collaterals {
        justify-content: stretch;
    }

    body.woocommerce-cart .cart_totals {
        width: 100%;
        box-sizing: border-box;
    }
}

@media (max-width: 920px) {
    body.woocommerce-cart .woocommerce {
        grid-template-columns: 1fr;
    }

    body.woocommerce-cart .cart-collaterals {
        grid-column: 1;
    }

    body.woocommerce-cart .wc-proceed-to-checkout,
    body.woocommerce-cart .cart_totals td {
        justify-content: stretch;
        text-align: left;
    }

    body.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
        width: 100%;
    }
}

@media (max-width: 640px) {
    body.woocommerce-cart .actions .coupon {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    body.woocommerce-cart .coupon .input-text,
    body.woocommerce-cart .coupon button.button {
        border-radius: 999px;
        border-right: 1px solid rgba(255, 255, 255, .38);
        margin-left: 0;
        width: 100%;
    }

    body.woocommerce-cart .quantity::before,
    body.woocommerce-cart .quantity::after {
        display: none;
    }

    body.woocommerce-cart .quantity .qty {
        width: 92px;
    }
}

/* Cart custom template */
body.woocommerce-cart .vc-cart {
    grid-column: 1 / -1;
    display: grid;
    gap: 44px;
    padding: 0;
    background: transparent;
}

body.woocommerce-cart .vc-cart__items {
    display: grid;
    border-top: 1px solid rgba(255, 255, 255, .24);
}

body.woocommerce-cart .vc-cart__item {
    display: grid;
    grid-template-columns: 86px minmax(0, 1fr) 220px 180px 42px;
    align-items: center;
    gap: 22px;
    min-height: 104px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

body.woocommerce-cart .vc-cart__thumb img {
    display: block;
    width: 66px;
    height: 66px;
    object-fit: cover;
    background: #111111;
}

body.woocommerce-cart .vc-cart__name a {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.25;
    text-decoration: none;
}

body.woocommerce-cart .vc-cart__name a:hover {
    color: var(--vc-green);
}

body.woocommerce-cart .vc-cart__quantity {
    justify-self: center;
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

body.woocommerce-cart .vc-cart__quantity .quantity {
    display: inline-flex;
    align-items: center;
}

.vc-cart__qty-step {
    border: 0;
    background: transparent;
    color: var(--vc-green);
    cursor: pointer;
    font: inherit;
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
    padding: 0;
}

.vc-cart__qty-step:hover {
    color: #ffffff;
}

body.woocommerce-cart .vc-cart__quantity .qty {
    width: 140px;
    min-height: 42px;
    box-sizing: border-box;
    border: 1px solid rgba(255, 255, 255, .28);
    background: #050505;
    color: #ffffff;
    font: inherit;
    text-align: center;
    outline: none;
}

body.woocommerce-cart input.qty::-webkit-outer-spin-button,
body.woocommerce-cart input.qty::-webkit-inner-spin-button {
    margin: 0;
    -webkit-appearance: none;
}

body.woocommerce-cart input.qty[type=number] {
    -moz-appearance: textfield;
}

body.woocommerce-cart .vc-cart__price {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    text-align: right;
}

body.woocommerce-cart .vc-cart__remove {
    justify-self: end;
}

body.woocommerce-cart .vc-cart__remove a {
    color: #ffffff !important;
    font-size: 22px;
    line-height: 1;
    text-decoration: none;
}

body.woocommerce-cart .vc-cart__remove a:hover {
    color: #ff7777 !important;
}

body.woocommerce-cart .vc-cart__actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

body.woocommerce-cart .vc-cart__coupon {
    width: min(100%, 470px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) 190px;
    gap: 0;
}

body.woocommerce-cart .vc-cart__coupon .input-text {
    min-height: 50px;
    min-width: 0;
    width: 100%;
    box-sizing: border-box;
    border: 1px solid rgba(255, 255, 255, .38);
    border-right: 0;
    border-radius: 999px 0 0 999px;
    background: #050505;
    color: #ffffff;
    font: inherit;
    outline: none;
    padding: 0 16px;
}

body.woocommerce-cart .vc-cart__coupon button.button {
    border-radius: 999px;
    margin-left: -28px;
    position: relative;
    z-index: 1;
}

body.woocommerce-cart .vc-cart__update {
    display: none !important;
}

body.woocommerce-cart .woocommerce .cart-collaterals {
    grid-column: 2;
}

.vc-installation-info {
    width: min(100%, 1180px);
    margin: 0 auto 26px;
    padding: 16px 18px;
    border: 1px solid rgba(163, 255, 0, .28);
    background: rgba(163, 255, 0, .07);
    color: #ffffff;
    font-size: 15px;
    line-height: 1.45;
}

body.woocommerce-cart .cart_totals .order-total {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: baseline;
    gap: 22px;
    border-top: 1px solid rgba(255, 255, 255, .22);
    padding-top: 20px;
}

body.woocommerce-cart .cart_totals .order-total th,
body.woocommerce-cart .cart_totals .order-total td {
    display: block;
    border-top: 0;
    padding: 0;
}

body.woocommerce-cart .cart_totals .order-total th {
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
}

body.woocommerce-cart .cart_totals .order-total td {
    color: #ffffff;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.1;
    text-align: right;
}

@media (max-width: 920px) {
    body.woocommerce-cart .woocommerce .cart-collaterals {
        grid-column: 1;
    }
}

@media (max-width: 760px) {
    body.woocommerce-cart .vc-cart__item {
        grid-template-columns: 76px minmax(0, 1fr) 34px;
        gap: 10px 14px;
        padding: 18px 0;
    }

    body.woocommerce-cart .vc-cart__thumb {
        grid-column: 1;
        grid-row: 1 / span 3;
    }

    body.woocommerce-cart .vc-cart__thumb img {
        width: 66px;
        height: 66px;
    }

    body.woocommerce-cart .vc-cart__name {
        grid-column: 2;
        grid-row: 1;
    }

    body.woocommerce-cart .vc-cart__quantity {
        grid-column: 2;
        grid-row: 2;
        justify-self: start;
    }

    body.woocommerce-cart .vc-cart__quantity .qty {
        width: 92px;
    }

    body.woocommerce-cart .vc-cart__price {
        grid-column: 2;
        grid-row: 3;
        text-align: left;
    }

    body.woocommerce-cart .vc-cart__remove {
        grid-column: 3;
        grid-row: 1;
    }

    body.woocommerce-cart .vc-cart__actions,
    body.woocommerce-cart .vc-cart__coupon {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
    }

    body.woocommerce-cart .vc-cart__coupon .input-text,
    body.woocommerce-cart .vc-cart__coupon button.button {
        border-radius: 999px;
        border-right: 1px solid rgba(255, 255, 255, .38);
        margin-left: 0;
        width: 100%;
    }
}

/* Cart final layout overrides */
body.woocommerce-cart .vc-cart__quantity .quantity::before,
body.woocommerce-cart .vc-cart__quantity .quantity::after,
body.woocommerce-cart .quantity::before,
body.woocommerce-cart .quantity::after {
    content: none !important;
    display: none !important;
}

body.woocommerce-cart .vc-cart__qty-step {
    appearance: none;
    -webkit-appearance: none;
    width: 24px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--vc-green);
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
}

body.woocommerce-cart .vc-cart__quantity .qty,
body.woocommerce-cart .vc-cart__quantity input[type="number"] {
    appearance: textfield;
    -moz-appearance: textfield;
}

body.woocommerce-cart .vc-cart__quantity .qty::-webkit-outer-spin-button,
body.woocommerce-cart .vc-cart__quantity .qty::-webkit-inner-spin-button,
body.woocommerce-cart .vc-cart__quantity input[type="number"]::-webkit-outer-spin-button,
body.woocommerce-cart .vc-cart__quantity input[type="number"]::-webkit-inner-spin-button {
    margin: 0;
    -webkit-appearance: none;
}

body.woocommerce-cart .cart_totals table,
body.woocommerce-cart .cart_totals tbody {
    display: block;
    width: 100%;
}

body.woocommerce-cart .cart_totals tr.fee {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) max-content;
    align-items: center;
    gap: 24px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, .16);
    border-bottom: 1px solid rgba(255, 255, 255, .16);
}

body.woocommerce-cart .cart_totals tr.fee th,
body.woocommerce-cart .cart_totals tr.fee td {
    display: block;
    border: 0;
    padding: 0;
}

body.woocommerce-cart .cart_totals tr.fee th {
    color: #d8d8d8;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .04em;
    line-height: 1.2;
    text-transform: uppercase;
}

body.woocommerce-cart .cart_totals tr.fee td {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    text-align: right;
    white-space: nowrap;
}

body.woocommerce-cart .cart-collaterals {
    margin-top: -94px;
}

body.woocommerce-cart .cart_totals tr.cart-discount {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) max-content;
    align-items: center;
    gap: 24px;
    padding: 0 0 20px;
    border-bottom: 1px solid rgba(255, 255, 255, .16);
}

body.woocommerce-cart .cart_totals tr.cart-discount th,
body.woocommerce-cart .cart_totals tr.cart-discount td {
    display: block;
    border: 0;
    padding: 0;
}

body.woocommerce-cart .cart_totals tr.cart-discount th {
    color: #d8d8d8;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .04em;
    line-height: 1.2;
    text-transform: uppercase;
}

body.woocommerce-cart .cart_totals tr.cart-discount td {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    text-align: right;
    white-space: nowrap;
}

body.woocommerce-cart .cart_totals tr.cart-discount .amount {
    color: #ffffff;
}

body.woocommerce-cart .cart_totals .woocommerce-remove-coupon {
    width: auto;
    height: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    border: 0;
    border-radius: 0;
    color: #ffffff;
    font-size: 0;
    line-height: 1;
    text-decoration: none;
    vertical-align: middle;
}

body.woocommerce-cart .cart_totals .woocommerce-remove-coupon::before {
    content: "\00d7";
    font-size: 18px;
    font-weight: 700;
}

body.woocommerce-cart .cart_totals .woocommerce-remove-coupon:hover,
body.woocommerce-cart .cart_totals .woocommerce-remove-coupon:focus-visible {
    color: #ff7777;
}

body.woocommerce-cart .cart_totals tr.order-total {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) max-content;
    align-items: center;
    gap: 28px;
    border-top: 1px solid rgba(255, 255, 255, .24);
    padding-top: 22px;
}

body.woocommerce-cart .cart_totals tr.order-total th,
body.woocommerce-cart .cart_totals tr.order-total td {
    display: block;
    border: 0;
    padding: 0;
}

body.woocommerce-cart .cart_totals tr.order-total th {
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .06em;
    line-height: 1.2;
    text-transform: uppercase;
}

body.woocommerce-cart .cart_totals tr.order-total td {
    color: #ffffff;
    font-size: clamp(24px, 2.1vw, 30px);
    font-weight: 700;
    line-height: 1;
    text-align: right;
}

body.woocommerce-cart .cart_totals .includes_tax {
    display: none !important;
}

body.woocommerce-cart .wc-proceed-to-checkout {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    padding-top: 28px;
}

body.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
body.woocommerce-cart .wc-proceed-to-checkout button.checkout-button {
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
    justify-content: center;
}

body.woocommerce-cart .wc-proceed-to-checkout button.checkout-button:disabled {
    cursor: not-allowed;
    opacity: 0.55;
}

body.woocommerce-cart .vc-checkout-disabled__notice {
    display: block;
    width: 100%;
    margin: 12px 0 0;
    color: #d63638;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.45;
    text-align: center;
}

body.woocommerce-cart .wc-proceed-to-checkout > :not(.checkout-button):not(.vc-checkout-disabled__notice) {
    display: none !important;
}

body.woocommerce-cart .cart_totals iframe,
body.woocommerce-cart .cart_totals [class*="instal"],
body.woocommerce-cart .cart_totals [class*="splat"],
body.woocommerce-cart .cart_totals [class*="spl"],
body.woocommerce-cart .cart_totals [id*="instal"],
body.woocommerce-cart .cart_totals [id*="splat"],
body.woocommerce-cart .cart_totals [id*="spl"] {
    display: none !important;
}

@media (max-width: 920px) {
    body.woocommerce-cart .cart-collaterals {
        margin-top: 0;
    }
}

@media (max-width: 640px) {
    body.woocommerce-cart .cart_totals tr.cart-discount,
    body.woocommerce-cart .cart_totals tr.order-total {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    body.woocommerce-cart .cart_totals tr.cart-discount td,
    body.woocommerce-cart .cart_totals tr.order-total td {
        text-align: left;
        white-space: normal;
    }
}

@media (max-width: 760px) {
    body.woocommerce-cart main.site-main {
        padding: 34px 0 72px;
    }

    body.woocommerce-cart .entry-header,
    body.woocommerce-cart .entry-content,
    body.woocommerce-cart .woocommerce {
        width: min(100% - 48px, 520px);
        margin-inline: auto;
    }

    body.woocommerce-cart .entry-header {
        margin-bottom: 34px;
    }

    body.woocommerce-cart .entry-title {
        font-size: clamp(42px, 14vw, 64px);
        line-height: .95;
    }

    body.woocommerce-cart .woocommerce {
        display: grid;
        grid-template-columns: 1fr;
        gap: 30px;
    }

    body.woocommerce-cart .vc-cart {
        gap: 34px;
    }

    body.woocommerce-cart .vc-cart__item {
        grid-template-columns: 74px minmax(0, 1fr) 24px;
        gap: 10px 16px;
        min-height: 0;
        padding: 20px 0;
    }

    body.woocommerce-cart .vc-cart__thumb {
        grid-column: 1;
        grid-row: 1 / span 3;
        align-self: start;
    }

    body.woocommerce-cart .vc-cart__thumb img {
        width: 66px;
        height: 66px;
    }

    body.woocommerce-cart .vc-cart__name {
        grid-column: 2 / 4;
        grid-row: 1;
        min-width: 0;
        padding-right: 28px;
    }

    body.woocommerce-cart .vc-cart__name a {
        display: inline;
        font-size: 18px;
        line-height: 1.25;
    }

    body.woocommerce-cart .vc-cart__quantity {
        grid-column: 2;
        grid-row: 2;
        justify-self: start;
        gap: 10px;
    }

    body.woocommerce-cart .vc-cart__qty-step {
        width: 22px;
        height: 40px;
        font-size: 34px;
    }

    body.woocommerce-cart .vc-cart__quantity .qty {
        width: 92px;
        min-height: 40px;
    }

    body.woocommerce-cart .vc-cart__price {
        grid-column: 2 / 4;
        grid-row: 3;
        text-align: left;
        font-size: 18px;
    }

    body.woocommerce-cart .vc-cart__remove {
        grid-column: 3;
        grid-row: 1;
        justify-self: end;
        align-self: start;
    }

    body.woocommerce-cart .vc-cart__actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0;
        width: 100%;
    }

    body.woocommerce-cart .vc-cart__coupon {
        width: 100%;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    body.woocommerce-cart .vc-cart__coupon .input-text,
    body.woocommerce-cart .vc-cart__coupon button.button {
        width: 100%;
        min-height: 50px;
        margin-left: 0;
        border-radius: 999px;
        border: 1px solid rgba(255, 255, 255, .38);
    }

    body.woocommerce-cart .cart-collaterals {
        grid-column: 1;
        width: 100%;
        margin-top: 0;
    }

    body.woocommerce-cart .cart_totals {
        width: 100%;
    }

    body.woocommerce-cart .cart_totals tr.cart-discount {
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 12px;
        align-items: start;
    }

    body.woocommerce-cart .cart_totals tr.cart-discount td {
        text-align: right;
        white-space: normal;
    }

    body.woocommerce-cart .cart_totals tr.order-total {
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 14px;
    }

    body.woocommerce-cart .cart_totals tr.order-total td {
        text-align: right;
    }

    body.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
        width: 100%;
        min-height: 58px;
        padding-inline: 18px;
    }
}

@media (max-width: 420px) {
    body.woocommerce-cart .entry-header,
    body.woocommerce-cart .entry-content,
    body.woocommerce-cart .woocommerce {
        width: min(100% - 32px, 520px);
    }

    body.woocommerce-cart .vc-cart__item {
        grid-template-columns: 70px minmax(0, 1fr) 22px;
        gap: 10px 14px;
    }

    body.woocommerce-cart .vc-cart__name a {
        font-size: 16px;
    }
}

.vc-cart-offer {
    position: fixed;
    inset: 0;
    z-index: 10000;
    box-sizing: border-box;
    display: grid;
    place-items: center;
    padding: 24px;
    overflow: auto;
    opacity: 0;
    pointer-events: none;
    transition: opacity .22s ease;
}

.vc-cart-offer.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.vc-cart-offer__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .72);
}

.vc-cart-offer__dialog {
    position: relative;
    box-sizing: border-box;
    width: min(100%, 760px);
    max-width: calc(100vw - 48px);
    max-height: calc(100vh - 48px);
    overflow: auto;
    display: grid;
    grid-template-columns: minmax(220px, .42fr) minmax(0, 1fr);
    gap: 28px;
    padding: 28px;
    border: 1px solid rgba(156, 255, 0, .24);
    background:
        linear-gradient(135deg, rgba(156, 255, 0, .08), transparent 38%),
        #0a0a0a;
    box-shadow: 0 24px 90px rgba(0, 0, 0, .6);
    transform: translateY(14px) scale(.98);
    transition: transform .22s ease;
}

.vc-cart-offer.is-visible .vc-cart-offer__dialog {
    transform: translateY(0) scale(1);
}

.vc-cart-offer__close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 34px;
    height: 34px;
    border: 0;
    background: transparent;
    color: #ffffff;
    cursor: pointer;
    font-size: 28px;
    line-height: 1;
}

.vc-cart-offer__close:hover,
.vc-cart-offer__close:focus-visible {
    color: #ff7777;
}

.vc-cart-offer__media {
    align-self: stretch;
    min-height: 260px;
    background: #111111;
}

.vc-cart-offer__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vc-cart-offer__content {
    min-width: 0;
    align-self: center;
    padding-right: 18px;
}

.vc-cart-offer__eyebrow {
    margin: 0 0 10px;
    color: var(--vc-green);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .06em;
    line-height: 1.2;
    text-transform: uppercase;
}

.vc-cart-offer h2 {
    margin: 0 0 14px;
    color: #ffffff;
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1.06;
}

.vc-cart-offer__description {
    margin: 0 0 20px;
    color: var(--vc-muted);
    font-size: 16px;
    line-height: 1.62;
}

.vc-cart-offer__price {
    display: flex;
    align-items: baseline;
    gap: 14px;
    margin-bottom: 26px;
}

.vc-cart-offer__price del {
    color: #8d8d8d;
    font-size: 18px;
    font-weight: 700;
}

.vc-cart-offer__price strong {
    color: #ffffff;
    font-size: 34px;
    font-weight: 700;
    line-height: 1;
}

.vc-cart-offer__actions {
    display: grid;
    grid-template-columns: minmax(0, .42fr) minmax(0, 1fr);
    gap: 12px;
}

.vc-cart-offer__decline,
.vc-cart-offer__add {
    min-height: 54px;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    font: inherit;
    font-weight: 700;
    padding: 0 22px;
}

.vc-cart-offer__decline {
    background: #161616;
    color: #ffffff;
}

.vc-cart-offer__decline:hover,
.vc-cart-offer__decline:focus-visible {
    background: #222222;
}

.vc-cart-offer__add {
    background: linear-gradient(90deg, var(--vc-green) 0%, var(--vc-green-dark) 100%);
    color: #050505;
}

.vc-cart-offer__add:hover,
.vc-cart-offer__add:focus-visible {
    filter: brightness(1.08);
}

.vc-cart-offer__add.is-loading {
    opacity: .7;
    cursor: progress;
}

body.woocommerce-cart.vc-cart-is-updating .vc-cart__items,
body.woocommerce-cart.vc-cart-is-updating .vc-cart__actions,
body.woocommerce-cart.vc-cart-is-updating .cart_totals {
    opacity: .46;
    pointer-events: none;
    transition: opacity .18s ease;
}

body.woocommerce-cart.vc-cart-is-updating .cart-collaterals {
    position: relative;
}

body.woocommerce-cart.vc-cart-is-updating .cart-collaterals::after {
    content: "";
    position: absolute;
    top: 24px;
    right: 0;
    z-index: 5;
    width: 38px;
    height: 38px;
    border: 3px solid rgba(255, 255, 255, .2);
    border-top-color: #a3ff00;
    border-radius: 999px;
    animation: vc-shop-spin .72s linear infinite;
}

.vc-cart-installation {
    display: grid;
    gap: 7px;
    margin-top: 12px;
    padding: 0;
    border: 0;
    background: transparent;
}

.vc-cart-installation.is-loading {
    opacity: .58;
    pointer-events: none;
}

.vc-cart-installation__radios {
    display: flex;
    align-items: center;
    gap: 18px;
}

.vc-cart-installation__radios label {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    width: auto;
    color: var(--vc-muted);
    font-size: 14px;
    line-height: 1.35;
    cursor: pointer;
}

.vc-cart-installation__radios input {
    width: auto;
    height: auto;
    margin: 0;
    accent-color: var(--vc-green);
    cursor: pointer;
}

.vc-cart-installation strong {
    color: #ffffff;
    font-size: 14px;
    line-height: 1.2;
}

.vc-cart-installation label {
    color: var(--vc-muted);
    font-size: 13px;
    line-height: 1.3;
}

.vc-cart-installation select {
    width: 100%;
    min-height: 42px;
    padding: 0 12px;
    border: 1px solid rgba(255, 255, 255, .14);
    background: #101010;
    color: #ffffff;
    font: inherit;
}

.vc-cart-installation p {
    margin: 0;
    color: var(--vc-muted);
    font-size: 13px;
    line-height: 1.45;
}

.vc-cart-installation__required {
    color: var(--vc-green) !important;
    font-weight: 700;
}

.vc-cart-installation__summary {
    width: fit-content;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--vc-green);
    font: inherit;
    font-size: 13px;
    line-height: 1.45;
    text-align: left;
    cursor: pointer;
}

.vc-cart-installation__summary:hover,
.vc-cart-installation__summary:focus-visible {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.vc-cart-installation__summary em {
    color: var(--vc-green);
    font-style: normal;
    opacity: .78;
}

.vc-cart-installation__summary span:not(:empty) {
    color: var(--vc-green);
}

.vc-installation-modal[hidden] {
    display: none;
}

.vc-installation-modal {
    position: fixed;
    inset: 0;
    z-index: 10020;
    display: grid;
    place-items: center;
    box-sizing: border-box;
    padding: 22px;
    overflow: hidden;
    overscroll-behavior: contain;
}

.vc-installation-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .72);
}

.vc-installation-modal__dialog {
    position: relative;
    z-index: 1;
    box-sizing: border-box;
    width: min(100%, 860px);
    max-height: min(760px, 90vh);
    overflow: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: #080808;
    color: #ffffff;
}

.vc-installation-modal__close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    color: #ffffff;
    cursor: pointer;
}

.vc-installation-modal h3 {
    margin: 0 44px 18px 0;
    color: #ffffff;
    font-size: 24px;
    line-height: 1.15;
}

.vc-installation-modal__intro {
    margin: -8px 44px 20px 0;
    color: var(--vc-muted);
    font-size: 14px;
    line-height: 1.55;
}

.vc-installation-modal__columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    margin-top: 20px;
}

.vc-installation-country {
    display: grid;
    align-content: start;
    gap: 8px;
}

.vc-installation-country h4 {
    margin: 0 0 6px;
    color: #ffffff;
    font-size: 18px;
    line-height: 1.2;
}

.vc-installation-place {
    display: grid;
    gap: 6px;
    padding: 6 0 8px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.vc-installation-place:last-child {
    border-bottom: 0;
}

.vc-installation-place__head {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
}

.vc-installation-place__head strong {
    color: #ffffff;
    font-size: 15px;
    line-height: 1.35;
}

.vc-installation-place__head em {
    display: inline-flex;
    align-items: center;
    min-height: 20px;
    padding: 0 8px;
    border-radius: 999px;
    background: rgba(163, 255, 0, .12);
    color: var(--vc-green);
    font-size: 11px;
    font-style: normal;
    font-weight: 700;
    line-height: 1;
}

.vc-installation-choice {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-size: 14px;
    line-height: 1.35;
    cursor: pointer;
}

.vc-installation-choice input {
    accent-color: var(--vc-green);
}

.vc-installation-choice strong {
    color: var(--vc-green);
    text-align: right;
    white-space: normal;
}

.vc-installation-choice--disabled {
    color: rgba(255, 255, 255, .58);
    cursor: default;
}

.vc-installation-choice--disabled em {
    color: rgba(255, 255, 255, .78);
    font-style: normal;
    white-space: nowrap;
}

.vc-installation-info-dot {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    border: 1px solid rgba(163, 255, 0, .68);
    border-radius: 999px;
    background: rgba(163, 255, 0, .08);
    color: var(--vc-green);
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    cursor: help;
}

.vc-installation-tooltip {
    position: absolute;
    display: none;
    left: 50%;
    bottom: calc(100% + 8px);
    z-index: 3;
    width: min(340px, 80vw);
    max-width: 340px;
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, .14);
    background: #111111;
    color: #ffffff;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.55;
    text-align: left;
    white-space: pre-line;
    transform: translateX(-50%);
    box-shadow: 0 16px 36px rgba(0, 0, 0, .36);
}

.vc-installation-info-dot:hover .vc-installation-tooltip,
.vc-installation-info-dot:focus-visible .vc-installation-tooltip,
.vc-installation-info-dot.is-open .vc-installation-tooltip {
    display: block;
}

.vc-installation-modal__footer {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 18px;
}

.vc-installation-modal__decline,
.vc-installation-modal__confirm {
    min-height: 44px;
    padding: 0 16px;
    border: 0;
    border-radius: 999px;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}

.vc-installation-modal__decline {
    background: rgba(255, 255, 255, .1);
    color: #ffffff;
}

.vc-installation-modal__confirm {
    background: linear-gradient(90deg, var(--vc-green) 0%, var(--vc-green-dark) 100%);
    color: #050505;
}

.vc-installation-modal__confirm:disabled {
    opacity: .45;
    cursor: not-allowed;
}

body.vc-installation-modal-open {
    overflow: hidden;
}

@media (max-width: 920px) {
    .vc-installation-modal__columns {
        grid-template-columns: 1fr;
    }

    .vc-product-modal__installation-columns {
        grid-template-columns: 1fr;
    }

    body.woocommerce-cart.vc-cart-is-updating .cart-collaterals::after {
        top: 0;
        right: 50%;
        margin-right: -19px;
    }
}

@media (max-width: 720px) {
    .vc-cart-offer {
        padding: 16px;
        place-items: center;
    }

    .vc-cart-offer__dialog {
        width: 100%;
        max-width: calc(100vw - 32px);
        max-height: min(680px, calc(100svh - 32px));
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 18px;
    }

    .vc-cart-offer__media {
        min-height: 190px;
        aspect-ratio: 1 / .68;
    }

    .vc-cart-offer__content {
        padding-right: 0;
    }

    .vc-cart-offer__actions {
        grid-template-columns: 1fr;
    }
}

/* Checkout */
body.woocommerce-checkout main.site-main {
    background: #050505;
    color: var(--vc-text);
    padding: clamp(62px, 8vw, 112px) var(--vc-x) clamp(82px, 9vw, 128px);
}

body.woocommerce-checkout .entry-header,
body.woocommerce-checkout .entry-content,
body.woocommerce-checkout .woocommerce {
    width: min(100%, 1480px);
    margin-inline: auto;
}

body.woocommerce-checkout .entry-title {
    margin: 0 0 52px;
    color: #ffffff;
    font-size: clamp(54px, 7vw, 96px);
    font-weight: 700;
    line-height: .95;
}

body.woocommerce-checkout .woocommerce-form-coupon-toggle,
body.woocommerce-checkout form.checkout_coupon,
body.woocommerce-checkout .woocommerce-remove-coupon {
    display: none !important;
}

body.woocommerce-checkout .woocommerce-notices-wrapper {
    margin-bottom: 28px;
}

body.woocommerce-checkout .woocommerce-info,
body.woocommerce-checkout .woocommerce-message,
body.woocommerce-checkout .woocommerce-error {
    margin: 0 0 20px;
    padding: 18px 20px;
    border: 1px solid rgba(163, 255, 0, .32);
    background: rgba(163, 255, 0, .06);
    color: #ffffff;
    list-style: none;
}

body.woocommerce-checkout form.checkout {
    display: grid;
    grid-template-columns: minmax(0, .58fr) minmax(390px, .42fr);
    grid-template-areas:
        "checkout-notices checkout-notices"
        "customer order-heading"
        "customer order-review";
    grid-template-rows: auto auto 1fr;
    gap: 0 clamp(42px, 5vw, 82px);
    align-items: start;
}

body.woocommerce-checkout form.checkout .woocommerce-NoticeGroup,
body.woocommerce-checkout form.checkout .woocommerce-NoticeGroup-checkout {
    grid-area: checkout-notices;
    margin: 0 0 28px;
}

body.woocommerce-checkout #customer_details {
    grid-area: customer;
    min-width: 0;
}

body.woocommerce-checkout #customer_details .col-1,
body.woocommerce-checkout #customer_details .col-2 {
    float: none;
    width: 100%;
}

body.woocommerce-checkout #customer_details .col-2 {
    margin-top: 28px;
}

body.woocommerce-checkout .woocommerce-billing-fields h3,
body.woocommerce-checkout .woocommerce-shipping-fields h3,
body.woocommerce-checkout .woocommerce-additional-fields h3,
body.woocommerce-checkout #order_review_heading {
    margin: 0 0 28px;
    color: #ffffff;
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 700;
    line-height: 1.08;
}

body.woocommerce-checkout .woocommerce-billing-fields__field-wrapper,
body.woocommerce-checkout .woocommerce-shipping-fields__field-wrapper,
body.woocommerce-checkout .woocommerce-additional-fields__field-wrapper {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 18px;
}

body.woocommerce-checkout .form-row {
    float: none !important;
    width: 100% !important;
    margin: 0;
    padding: 0;
}

body.woocommerce-checkout .form-row-wide,
body.woocommerce-checkout #billing_country_field,
body.woocommerce-checkout #shipping_country_field,
body.woocommerce-checkout #order_comments_field,
body.woocommerce-checkout #billing_company_field,
body.woocommerce-checkout #billing_ic_dph_field {
    grid-column: 1 / -1;
}

body.woocommerce-checkout #billing_first_name_field,
body.woocommerce-checkout #billing_last_name_field,
body.woocommerce-checkout #billing_address_2_field,
body.woocommerce-checkout #billing_postcode_field,
body.woocommerce-checkout #billing_city_field,
body.woocommerce-checkout #billing_phone_field,
body.woocommerce-checkout #billing_email_field {
    grid-column: auto;
}

body.woocommerce-checkout #billing_first_name_field {
    order: 10;
}

body.woocommerce-checkout #billing_last_name_field {
    order: 20;
}

body.woocommerce-checkout #billing_address_1_field {
    grid-column: 1 / -1;
    order: 30;
}

body.woocommerce-checkout #shipping_address_1_field {
    grid-column: 1 / -1;
    order: 30;
}

body.woocommerce-checkout #billing_address_2_field {
    order: 40;
}

body.woocommerce-checkout #shipping_address_2_field {
    order: 40;
}

body.woocommerce-checkout #billing_postcode_field {
    order: 50;
}

body.woocommerce-checkout #shipping_postcode_field {
    grid-column: auto;
    order: 50;
}

body.woocommerce-checkout #billing_city_field {
    order: 60;
}

body.woocommerce-checkout #shipping_city_field {
    grid-column: auto;
    order: 60;
}

body.woocommerce-checkout #billing_phone_field {
    order: 70;
}

body.woocommerce-checkout #billing_email_field {
    order: 80;
}

body.woocommerce-checkout #billing_country_field {
    order: 90;
}

body.woocommerce-checkout #billing_vc_company_billing_field {
    grid-column: 1 / -1;
    order: 95;
}

body.woocommerce-checkout #billing_company_field {
    grid-column: 1 / -1;
    order: 96;
}

body.woocommerce-checkout #billing_ico_field {
    order: 97;
}

body.woocommerce-checkout #billing_dic_field {
    order: 98;
}

body.woocommerce-checkout #billing_ic_dph_field {
    grid-column: 1 / -1;
    order: 99;
}

body.woocommerce-checkout:not(.vc-company-billing-enabled) .vc-company-billing-field {
    display: none !important;
}

body.woocommerce-checkout.vc-company-billing-enabled #billing_company_field label::after,
body.woocommerce-checkout.vc-company-billing-enabled #billing_ico_field label::after {
    content: " *";
    color: var(--vc-green);
}

body.woocommerce-checkout #billing_vc_company_billing_field label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
}

body.woocommerce-checkout #shipping_country_field {
    order: 70;
}

body.woocommerce-checkout #customer_details .col-2 {
    display: flex;
    flex-direction: column;
}

body.woocommerce-checkout .woocommerce-additional-fields {
    order: 1;
}

body.woocommerce-checkout .woocommerce-shipping-fields {
    order: 2;
    margin-top: 24px;
}

body.woocommerce-checkout .shipping_address {
    padding-top: 24px;
}

body.woocommerce-checkout #ship-to-different-address {
    margin: 0;
}

body.woocommerce-checkout #ship-to-different-address label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.25;
}

body.woocommerce-checkout #ship-to-different-address input {
    width: 14px;
    height: 14px;
}

body.woocommerce-checkout #ship-to-different-address span {
    font-size: inherit;
    font-weight: inherit;
}

body.woocommerce-checkout .form-row label {
    display: block;
    margin: 0 0 8px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.25;
}

body.woocommerce-checkout .required {
    color: var(--vc-green);
}

body.woocommerce-checkout .optional {
    display: none;
}

body.woocommerce-checkout .input-text,
body.woocommerce-checkout textarea,
body.woocommerce-checkout select,
body.woocommerce-checkout .select2-container--default .select2-selection--single {
    width: 100%;
    min-height: 52px;
    box-sizing: border-box;
    border: 1px solid rgba(255, 255, 255, .34);
    border-radius: 999px;
    background: #050505;
    color: #ffffff;
    font: inherit;
    outline: none;
    padding: 0 18px;
}

body.woocommerce-checkout textarea.input-text,
body.woocommerce-checkout textarea {
    min-height: 92px;
    border-radius: 28px;
    padding-block: 16px;
    resize: vertical;
}

body.woocommerce-checkout .input-text:focus,
body.woocommerce-checkout textarea:focus,
body.woocommerce-checkout select:focus,
body.woocommerce-checkout .select2-container--open .select2-selection--single {
    border-color: rgba(163, 255, 0, .82);
    box-shadow: 0 0 0 3px rgba(163, 255, 0, .12);
}

body.woocommerce-checkout .select2-container .select2-selection--single .select2-selection__rendered {
    color: #ffffff;
    line-height: 50px;
    padding-left: 0;
    padding-right: 24px;
}

body.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 50px;
    right: 14px;
}

body.woocommerce-checkout .select2-dropdown {
    border: 1px solid rgba(163, 255, 0, .34);
    background: #101010;
    color: #ffffff;
}

body.woocommerce-checkout .select2-results__option {
    color: #ffffff;
}

body.woocommerce-checkout .select2-container--default .select2-results__option--highlighted[aria-selected] {
    background: var(--vc-green);
    color: #050505;
}

body.woocommerce-checkout .woocommerce-form__label-for-checkbox,
body.woocommerce-checkout .woocommerce-shipping-fields label,
body.woocommerce-checkout .woocommerce-account-fields label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-weight: 500;
}

body.woocommerce-checkout input[type="checkbox"],
body.woocommerce-checkout input[type="radio"] {
    accent-color: #a3ff00;
}

body.woocommerce-checkout #order_review_heading,
body.woocommerce-checkout #order_review {
    grid-column: auto;
}

body.woocommerce-checkout #order_review_heading {
    grid-area: order-heading;
    margin-bottom: 0;
    padding: 36px 40px 0;
    background: #090909;
}

body.woocommerce-checkout #order_review {
    grid-area: order-review;
    padding: 22px 40px 40px;
    background: #090909;
    color: #ffffff;
}

body.woocommerce-checkout .woocommerce-checkout-review-order-table {
    width: 100%;
    margin: 0;
    border-collapse: collapse;
}

body.woocommerce-checkout .woocommerce-checkout-review-order-table thead {
    display: none;
}

body.woocommerce-checkout .woocommerce-checkout-review-order-table th,
body.woocommerce-checkout .woocommerce-checkout-review-order-table td {
    border: 0;
    padding: 18px 0;
    color: #ffffff;
    font-size: 16px;
    line-height: 1.35;
    vertical-align: top;
}

body.woocommerce-checkout .woocommerce-checkout-review-order-table th {
    text-align: left;
}

body.woocommerce-checkout .woocommerce-checkout-review-order-table tr {
    border-top: 1px solid rgba(255, 255, 255, .18);
}

body.woocommerce-checkout .woocommerce-checkout-review-order-table tr:first-child {
    border-top: 0;
}

body.woocommerce-checkout .woocommerce-checkout-review-order-table .product-name {
    padding-right: 18px;
    font-weight: 500;
    text-align: left;
    text-transform: none;
}

body.woocommerce-checkout .woocommerce-checkout-review-order-table .product-total,
body.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot td {
    text-align: right;
    font-weight: 700;
}

body.woocommerce-checkout .woocommerce-checkout-review-order-table .woocommerce-shipping-totals td {
    text-align: left;
}

body.woocommerce-checkout .woocommerce-checkout-review-order-table .woocommerce-shipping-totals {
    width: 100%;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;
    border-top: 0 !important;
}

body.woocommerce-checkout .woocommerce-checkout-review-order-table .cart-discount {
    border-bottom: 0;
}

body.woocommerce-checkout .woocommerce-checkout-review-order-table .cart-discount th,
body.woocommerce-checkout .woocommerce-checkout-review-order-table .cart-discount td {
    border-bottom: 1px solid rgba(255, 255, 255, .18);
}

body.woocommerce-checkout .woocommerce-checkout-review-order-table .woocommerce-shipping-totals th,
body.woocommerce-checkout .woocommerce-checkout-review-order-table .woocommerce-shipping-totals td {
    display: block;
    width: 100%;
    padding-inline: 0;
}

body.woocommerce-checkout .woocommerce-checkout-review-order-table .woocommerce-shipping-totals th {
    padding-bottom: 0;
}

body.woocommerce-checkout .woocommerce-checkout-review-order-table .woocommerce-shipping-totals td {
    padding-top: 0;
}

body.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot th {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    text-align: left;
    text-transform: none;
    letter-spacing: 0;
}

body.woocommerce-checkout .woocommerce-checkout-review-order-table tr.fee th {
    color: #ffffff;
}

body.woocommerce-checkout .vc-checkout-fee-location {
    display: block;
    margin-top: 4px;
    color: var(--vc-muted);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.35;
}

body.woocommerce-checkout .woocommerce-checkout-review-order-table .woocommerce-shipping-totals th,
body.woocommerce-checkout #payment .vc-checkout-section-title {
    color: #a3ff00;
}

body.woocommerce-checkout .woocommerce-checkout-review-order-table .order-total th,
body.woocommerce-checkout .woocommerce-checkout-review-order-table .order-total td {
    padding-top: 24px;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.1;
}

body.woocommerce-checkout .woocommerce-checkout-review-order-table .order-total {
    display: none;
}

body.woocommerce-checkout .woocommerce-checkout-review-order-table .includes_tax {
    display: none;
}

body.woocommerce-checkout .woocommerce-checkout-review-order-table .cart-discount .amount {
    color: #ffffff;
}

body.woocommerce-checkout .woocommerce-shipping-totals ul,
body.woocommerce-checkout #payment ul.payment_methods {
    margin: 0;
    padding: 0;
    list-style: none;
    width: 100%;
}

body.woocommerce-checkout .woocommerce-shipping-totals li,
body.woocommerce-checkout #payment ul.payment_methods li {
    box-sizing: border-box;
    width: 100%;
    min-width: 0;
    margin: 0;
    padding: 18px 0;
    border-top: 0;
}

body.woocommerce-checkout .woocommerce-shipping-totals li,
body.woocommerce-checkout #payment ul.payment_methods li {
    display: grid;
    grid-template-columns: 26px minmax(0, 1fr);
    column-gap: 16px;
    row-gap: 10px;
    align-items: start;
}

body.woocommerce-checkout .woocommerce-shipping-totals li:first-child,
body.woocommerce-checkout #payment ul.payment_methods li:first-child {
    border-top: 0;
}

body.woocommerce-checkout .woocommerce-shipping-totals label,
body.woocommerce-checkout #payment label {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
    min-width: 0;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.35;
    overflow-wrap: normal;
    text-align: left;
    word-break: normal;
}

body.woocommerce-checkout .woocommerce-shipping-totals label {
    display: flex;
    flex-wrap: wrap;
    gap: 0 .35em;
    align-items: baseline;
    justify-content: flex-start;
}

body.woocommerce-checkout .woocommerce-shipping-totals input[type="radio"],
body.woocommerce-checkout #payment ul.payment_methods input[type="radio"] {
    grid-column: 1;
    margin-top: .2em;
}

body.woocommerce-checkout .woocommerce-shipping-totals label,
body.woocommerce-checkout #payment ul.payment_methods label {
    grid-column: 2;
}

body.woocommerce-checkout #payment ul.payment_methods label img {
    flex: 0 1 auto;
    max-width: 100%;
    height: auto;
}

body.woocommerce-checkout .woocommerce-shipping-totals label .amount {
    margin-left: 0;
    white-space: nowrap;
}

body.woocommerce-checkout .vc-shipping-method-label__name {
    min-width: 0;
    overflow-wrap: normal;
    word-break: normal;
}

body.woocommerce-checkout .vc-shipping-method-label__price {
    color: #ffffff;
    text-align: left;
    white-space: nowrap;
}

body.woocommerce-checkout .vc-shipping-method-description {
    grid-column: 2;
    margin: 0;
    padding: 0;
    background: transparent;
    color: var(--vc-muted);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.45;
}

body.woocommerce-checkout .vc-shipping-method-description p {
    margin: 10px 0 0;
}

body.woocommerce-checkout .vc-shipping-method-description p:first-child {
    margin-top: 0;
}

body.woocommerce-checkout #payment {
    margin-top: 22px;
    background: transparent;
}

body.woocommerce-checkout #payment .vc-checkout-section-title {
    margin: 0;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, .18);
    color: #a3ff00;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.35;
}

body.woocommerce-checkout .vc-checkout-total {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 20px;
    margin-top: 18px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, .18);
    color: #ffffff;
}

body.woocommerce-checkout .vc-checkout-total__label,
body.woocommerce-checkout .vc-checkout-total__amount {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.1;
}

body.woocommerce-checkout .vc-checkout-total__amount {
    text-align: right;
}

body.woocommerce-checkout .vc-checkout-total .includes_tax {
    display: none;
}

body.woocommerce-checkout #payment div.payment_box {
    grid-column: 2;
    display: block !important;
    margin: 10px 0 0;
    padding: 0;
    background: transparent;
    color: var(--vc-muted);
    font-size: 14px;
    line-height: 1.45;
}

body.woocommerce-checkout #payment div.payment_box::before {
    display: none;
}

body.woocommerce-checkout .woocommerce-privacy-policy-text,
body.woocommerce-checkout .vc-checkout-privacy-text {
    margin: 24px 0;
    color: var(--vc-muted);
    font-size: 13px;
    line-height: 1.45;
}

body.woocommerce-checkout .vc-checkout-privacy-text .woocommerce-privacy-policy-text {
    margin: 0;
}

body.woocommerce-checkout .woocommerce-privacy-policy-text a,
body.woocommerce-checkout .vc-checkout-privacy-text a {
    color: var(--vc-green);
}

body.woocommerce-checkout .vc-checkout-consents {
    display: grid;
    gap: 12px;
    margin: 18px 0 22px;
}

body.woocommerce-checkout #payment .vc-checkout-consent {
    display: grid !important;
    grid-template-columns: 18px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    width: 100%;
    color: var(--vc-muted);
    cursor: pointer;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.45;
}

body.woocommerce-checkout #payment .vc-checkout-consent input {
    grid-column: 1;
    width: 16px;
    height: 16px;
    margin-top: .2em;
}

body.woocommerce-checkout #payment .vc-checkout-consent span {
    grid-column: 2;
    min-width: 0;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
}

body.woocommerce-checkout .vc-checkout-consent a {
    color: var(--vc-green);
}

body.woocommerce-checkout .vc-checkout-consent-error {
    display: none;
    margin: -4px 0 0 26px;
    color: #ff7777;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.45;
}

body.woocommerce-checkout .vc-checkout-consents.has-terms-error .vc-checkout-consent-error {
    display: block;
}

body.woocommerce-checkout #place_order {
    width: 100%;
    min-height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--vc-green) 0%, var(--vc-green-dark) 100%);
    color: #050505;
    cursor: pointer;
    font: inherit;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
}

body.woocommerce-checkout #place_order:hover,
body.woocommerce-checkout #place_order:focus-visible {
    filter: brightness(1.08);
}

body.woocommerce-checkout .blockUI.blockOverlay {
    background: rgba(5, 5, 5, .58) !important;
}

body.woocommerce-checkout form.checkout.processing #order_review {
    position: relative;
}

body.woocommerce-checkout form.checkout.processing #order_review::after {
    content: "";
    position: absolute;
    top: 28px;
    right: 40px;
    width: 38px;
    height: 38px;
    border: 3px solid rgba(255, 255, 255, .2);
    border-top-color: #a3ff00;
    border-radius: 999px;
    animation: vc-shop-spin .72s linear infinite;
}

@media (max-width: 1024px) {
    body.woocommerce-checkout form.checkout {
        grid-template-columns: 1fr;
        grid-template-areas:
            "checkout-notices"
            "customer"
            "order-heading"
            "order-review";
        gap: 34px;
    }

    body.woocommerce-checkout #order_review_heading,
    body.woocommerce-checkout #order_review {
        grid-column: 1;
    }
}

@media (max-width: 720px) {
    body.woocommerce-checkout main.site-main {
        box-sizing: border-box;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
        padding: 34px 0 72px;
    }

    body.woocommerce-checkout .entry-header,
    body.woocommerce-checkout .entry-content,
    body.woocommerce-checkout .woocommerce {
        box-sizing: border-box;
        width: min(100% - 32px, 560px);
        max-width: calc(100vw - 32px);
        min-width: 0;
        overflow-x: hidden;
    }

    body.woocommerce-checkout form.checkout,
    body.woocommerce-checkout #customer_details,
    body.woocommerce-checkout #order_review_heading,
    body.woocommerce-checkout #order_review,
    body.woocommerce-checkout .woocommerce-billing-fields__field-wrapper,
    body.woocommerce-checkout .woocommerce-shipping-fields__field-wrapper,
    body.woocommerce-checkout .woocommerce-additional-fields__field-wrapper {
        box-sizing: border-box;
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    body.woocommerce-checkout .entry-title {
        margin-bottom: 34px;
        font-size: clamp(42px, 13vw, 64px);
    }

    body.woocommerce-checkout .woocommerce-billing-fields__field-wrapper,
    body.woocommerce-checkout .woocommerce-shipping-fields__field-wrapper,
    body.woocommerce-checkout .woocommerce-additional-fields__field-wrapper {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    body.woocommerce-checkout #order_review_heading {
        box-sizing: border-box;
        padding: 26px 22px 0;
    }

    body.woocommerce-checkout #order_review {
        box-sizing: border-box;
        padding: 18px 22px 28px;
        overflow-x: hidden;
    }

    body.woocommerce-checkout .woocommerce-checkout-review-order-table {
        display: block;
        table-layout: auto;
        max-width: 100%;
    }

    body.woocommerce-checkout .woocommerce-checkout-review-order-table tbody,
    body.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot {
        display: block;
        width: 100%;
    }

    body.woocommerce-checkout .woocommerce-checkout-review-order-table tr {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 14px;
        width: 100%;
    }

    body.woocommerce-checkout .woocommerce-checkout-review-order-table th,
    body.woocommerce-checkout .woocommerce-checkout-review-order-table td,
    body.woocommerce-checkout .woocommerce-checkout-review-order-table .product-name,
    body.woocommerce-checkout .woocommerce-checkout-review-order-table .product-total {
        max-width: 100%;
        overflow-wrap: anywhere;
        word-break: normal;
    }

    body.woocommerce-checkout .woocommerce-checkout-review-order-table .product-total,
    body.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot td {
        padding-left: 12px;
    }

    body.woocommerce-checkout .woocommerce-checkout-review-order-table .woocommerce-shipping-totals {
        display: block;
        padding: 22px 0;
    }

    body.woocommerce-checkout .woocommerce-checkout-review-order-table .woocommerce-shipping-totals th,
    body.woocommerce-checkout .woocommerce-checkout-review-order-table .woocommerce-shipping-totals td {
        display: block;
        width: 100%;
        padding: 0;
    }

    body.woocommerce-checkout .woocommerce-checkout-review-order-table .woocommerce-shipping-totals th {
        margin-bottom: 18px;
    }

    body.woocommerce-checkout .woocommerce-checkout-review-order-table .woocommerce-shipping-totals td {
        padding-left: 0;
        text-align: left;
    }

    body.woocommerce-checkout .woocommerce-shipping-totals li,
    body.woocommerce-checkout #payment ul.payment_methods li {
        min-width: 0;
    }

    body.woocommerce-checkout .woocommerce-shipping-totals li {
        grid-template-columns: 26px minmax(0, 1fr);
        column-gap: 16px;
        padding: 12px 0;
    }

    body.woocommerce-checkout .woocommerce-shipping-totals label {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 6px 14px;
        align-items: start;
        width: 100%;
        font-size: 16px;
        line-height: 1.35;
    }

    body.woocommerce-checkout .vc-shipping-method-label__price {
        justify-self: end;
    }

    body.woocommerce-checkout .woocommerce-shipping-totals label,
    body.woocommerce-checkout #payment label,
    body.woocommerce-checkout .vc-checkout-consent {
        min-width: 0;
        overflow-wrap: anywhere;
    }

    body.woocommerce-checkout .woocommerce-shipping-totals label,
    body.woocommerce-checkout #payment label {
        overflow-wrap: normal;
        word-break: normal;
    }

    body.woocommerce-checkout #payment .vc-checkout-consent {
        display: grid !important;
        grid-template-columns: 18px minmax(0, 1fr);
        align-items: start;
        overflow-wrap: normal;
        word-break: normal;
    }

    body.woocommerce-checkout .vc-checkout-total {
        align-items: flex-start;
        gap: 14px;
    }

    body.woocommerce-checkout .vc-checkout-total__amount {
        max-width: 58%;
        overflow-wrap: anywhere;
    }

    body.woocommerce-checkout .woocommerce-checkout-review-order-table .order-total th,
    body.woocommerce-checkout .woocommerce-checkout-review-order-table .order-total td {
        font-size: 21px;
    }

    body.woocommerce-checkout .vc-checkout-total__label,
    body.woocommerce-checkout .vc-checkout-total__amount {
        font-size: 21px;
    }
}

body.woocommerce-order-received main.site-main {
    width: min(100% - calc(var(--vc-x) * 2), 1180px);
    margin: 0 auto;
    padding: 54px 0 96px;
}

body.woocommerce-order-received .entry-header {
    display: none;
}

body.woocommerce-order-received .woocommerce-notices-wrapper {
    margin-bottom: 24px;
}

.vc-thankyou {
    color: #ffffff;
}

.vc-thankyou__hero,
.vc-thankyou__failed {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
    gap: clamp(28px, 5vw, 72px);
    align-items: end;
    min-height: 440px;
    padding: clamp(34px, 5vw, 64px);
    background:
        linear-gradient(115deg, rgba(8, 8, 8, .98) 0%, rgba(14, 14, 14, .96) 55%, rgba(30, 52, 24, .78) 100%),
        url("assets/img/landing-hero.webp?2") center / cover;
    box-shadow: 0 28px 80px rgba(0, 0, 0, .34);
}

.vc-thankyou__hero::before {
    display: none;
}

.vc-thankyou__hero-content,
.vc-thankyou__receipt,
.vc-thankyou__failed > * {
    position: relative;
    z-index: 1;
}

.vc-thankyou__logo {
    display: block;
    width: min(220px, 60vw);
    height: auto;
    margin-bottom: clamp(40px, 8vw, 86px);
}

.vc-thankyou__eyebrow {
    margin: 0 0 24px;
    color: var(--vc-green);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: .12em;
}

.vc-thankyou h1 {
    max-width: 820px;
    margin: 0;
    color: #ffffff;
    font-size: clamp(44px, 7vw, 92px);
    font-weight: 700;
    line-height: .94;
}

.vc-thankyou__lead,
.vc-thankyou__failed p:not(.vc-thankyou__eyebrow) {
    max-width: 720px;
    margin: 22px 0 0;
    color: #d6d6d6;
    font-size: clamp(17px, 2vw, 22px);
    line-height: 1.45;
}

.vc-thankyou__receipt {
    justify-self: end;
    width: min(100%, 420px);
    padding: 24px;
    background: rgba(5, 5, 5, .82);
    backdrop-filter: blur(12px);
    box-shadow: 0 20px 58px rgba(0, 0, 0, .26);
}

.vc-thankyou__receipt span,
.vc-thankyou__receipt small,
.vc-thankyou__overview-item span {
    display: block;
    color: var(--vc-muted);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.vc-thankyou__receipt strong {
    display: block;
    margin-top: 14px;
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1;
}

.vc-thankyou__receipt small {
    margin-top: 18px;
    color: var(--vc-green);
    font-size: clamp(18px, 2.2vw, 24px);
    letter-spacing: 0;
    text-transform: none;
    white-space: nowrap;
}

.vc-thankyou__receipt small .amount {
    display: inline-flex;
    align-items: baseline;
    gap: .18em;
    white-space: nowrap;
}

.vc-thankyou__receipt small .woocommerce-Price-currencySymbol {
    display: inline !important;
    white-space: nowrap;
}

.vc-thankyou__receipt small bdi {
    white-space: nowrap;
}

.vc-thankyou__overview {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    background: transparent;
}

.vc-thankyou__overview-item {
    min-width: 0;
    padding: 24px;
    background: #101010;
}

.vc-thankyou__overview-item:last-child {
    border-right: 0;
}

.vc-thankyou__overview-item strong {
    display: block;
    margin-top: 10px;
    overflow-wrap: anywhere;
    color: #ffffff;
    font-size: 18px;
    line-height: 1.25;
}

.vc-thankyou__next,
.vc-thankyou__details {
    margin-top: 34px;
    padding: clamp(26px, 4vw, 44px);
    background: #090909;
}

.vc-thankyou__next-head {
    display: grid;
    grid-template-columns: minmax(180px, 260px) minmax(0, 1fr);
    gap: 28px;
    align-items: end;
    margin-bottom: 32px;
}

.vc-thankyou__next h2 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(28px, 4vw, 48px);
    line-height: 1;
}

.vc-thankyou__steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    background: transparent;
}

.vc-thankyou__step {
    min-width: 0;
    padding: 26px;
    background: #0d0d0d;
}

.vc-thankyou__step span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin-bottom: 24px;
    border-radius: 999px;
    background: rgba(156, 255, 0, .1);
    color: var(--vc-green);
    font-size: 13px;
    font-weight: 700;
}

.vc-thankyou__step strong {
    display: block;
    color: #ffffff;
    font-size: 19px;
    line-height: 1.2;
}

.vc-thankyou__step p {
    margin: 12px 0 0;
    color: var(--vc-muted);
    font-size: 15px;
    line-height: 1.5;
}

.vc-thankyou__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.vc-thankyou__button {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    border: 0;
    border-radius: 999px;
    background: #151515;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
}

.vc-thankyou__button:hover,
.vc-thankyou__button:focus-visible {
    border-color: rgba(156, 255, 0, .58);
    color: var(--vc-green);
}

.vc-thankyou__button--primary {
    border-color: transparent;
    background: linear-gradient(90deg, var(--vc-green) 0%, var(--vc-green-dark) 100%);
    color: #050505;
}

.vc-thankyou__button--primary:hover,
.vc-thankyou__button--primary:focus-visible {
    color: #050505;
    filter: brightness(1.08);
}

.vc-thankyou__details {
    color: var(--vc-muted);
}

.vc-thankyou__details h2,
.vc-thankyou__details h3 {
    margin: 0 0 20px;
    color: #ffffff;
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.1;
}

.vc-thankyou__details p {
    color: var(--vc-muted);
    line-height: 1.55;
}

.vc-thankyou__details .woocommerce-order-details,
.vc-thankyou__details .woocommerce-customer-details,
.vc-thankyou__details .woocommerce-bacs-bank-details {
    margin-top: 34px;
}

.vc-thankyou__details table.shop_table {
    width: 100%;
    border-collapse: collapse;
    border: 0;
    color: #ffffff;
}

.vc-thankyou__details table.shop_table th,
.vc-thankyou__details table.shop_table td {
    padding: 16px 0;
    border: 0;
    text-align: left;
    vertical-align: top;
}

.vc-thankyou__details table.shop_table td:last-child,
.vc-thankyou__details table.shop_table th:last-child {
    text-align: right;
}

.vc-thankyou__details table.shop_table tfoot tr:last-child th,
.vc-thankyou__details table.shop_table tfoot tr:last-child td {
    border-bottom: 0;
    color: var(--vc-green);
    font-size: 20px;
}

.vc-thankyou__details ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.vc-thankyou__details li {
    padding: 10px 0;
}

.vc-thankyou__details address {
    padding: 20px;
    background: #0d0d0d;
    color: var(--vc-muted);
    font-style: normal;
    line-height: 1.55;
}

.vc-thankyou__failed {
    display: block;
    min-height: 0;
}

.vc-thankyou__failed h1 {
    max-width: 760px;
}

@media (max-width: 980px) {
    .vc-thankyou__hero {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .vc-thankyou__receipt {
        justify-self: start;
    }

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

    .vc-thankyou__overview-item:nth-child(2n) {
        border-right: 0;
    }

    .vc-thankyou__next-head,
    .vc-thankyou__steps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    body.woocommerce-order-received main.site-main {
        width: min(100% - 32px, 560px);
        padding: 34px 0 72px;
    }

    .vc-thankyou__hero,
    .vc-thankyou__failed,
    .vc-thankyou__next,
    .vc-thankyou__details {
        padding: 24px;
    }

    .vc-thankyou__hero::before {
        inset: 10px;
    }

    .vc-thankyou__logo {
        margin-bottom: 52px;
    }

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

    .vc-thankyou__overview-item,
    .vc-thankyou__overview-item:nth-child(2n) {
        border-right: 0;
    }

    .vc-thankyou__actions,
    .vc-thankyou__button {
        width: 100%;
    }

    .vc-thankyou__details table.shop_table td:last-child,
    .vc-thankyou__details table.shop_table th:last-child {
        text-align: left;
    }
}

.vc-single-product {
    background: #050505;
    color: var(--vc-text);
}

.vc-single-product > .vc-container {
    width: min(100% - calc(var(--vc-x) * 2), 1380px);
    padding-block: 42px 96px;
}

.vc-product-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    align-items: center;
    margin-bottom: 28px;
    color: var(--vc-muted);
    font-size: 14px;
}

.vc-product-breadcrumb a {
    color: #ffffff;
    text-decoration: none;
}

.vc-product-breadcrumb a:hover,
.vc-product-breadcrumb a:focus-visible {
    color: var(--vc-green);
}

.vc-product-detail {
    overflow: visible;
}

.vc-product-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, .72fr);
    gap: clamp(28px, 4vw, 58px);
    align-items: start;
}

.vc-product-gallery {
    min-width: 0;
}

.vc-product-gallery.has-thumbs {
    display: grid;
    grid-template-columns: 108px minmax(0, 1fr);
    gap: 10px;
}

.vc-product-gallery__main {
    display: grid;
    place-items: center;
    min-height: clamp(360px, 48vw, 670px);
    margin: 0;
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, .08);
}

.vc-product-gallery.has-thumbs .vc-product-gallery__main {
    grid-column: 2;
    grid-row: 1;
}

.vc-product-gallery__main a {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
}

.vc-product-gallery__image {
    display: block;
    width: 100%;
    height: 100%;
    max-height: 670px;
    object-fit: contain;
}

.vc-product-gallery__thumbs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(86px, 1fr));
    gap: 10px;
    margin-top: 10px;
}

.vc-product-gallery.has-thumbs .vc-product-gallery__thumbs {
    grid-column: 1;
    grid-row: 1;
    grid-template-columns: 1fr;
    align-content: start;
    max-height: clamp(360px, 48vw, 670px);
    margin-top: 0;
    overflow: auto;
}

.vc-product-gallery__thumb {
    aspect-ratio: 1 / 1;
    min-width: 0;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 0;
    background: #0d0d0d;
    cursor: pointer;
    overflow: hidden;
}

.vc-product-gallery__thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .72;
    transition: opacity .18s ease, transform .18s ease;
}

.vc-product-gallery__thumb:hover img,
.vc-product-gallery__thumb:focus-visible img,
.vc-product-gallery__thumb.is-active img {
    opacity: 1;
}

.vc-product-gallery__thumb:hover img,
.vc-product-gallery__thumb:focus-visible img {
    transform: scale(1.04);
}

.vc-product-gallery__thumb.is-active {
    border-color: var(--vc-green);
}

.vc-product-summary {
    position: sticky;
    top: 24px;
    padding: clamp(24px, 3vw, 38px);
    background: #090909;
    border: 1px solid rgba(255, 255, 255, .08);
}

.vc-product-summary__availability {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    margin-bottom: 18px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(156, 255, 0, .1);
    color: var(--vc-green);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.vc-product-summary__availability--within_8_days {
    background: rgba(255, 255, 255, .08);
    color: #ffffff;
}

.vc-product-summary__availability--on_order {
    background: rgba(255, 193, 7, .12);
    color: #ffd166;
}

.vc-product-summary h1 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(34px, 4vw, 56px);
    line-height: .98;
}

.vc-product-summary__cats {
    margin-top: 12px;
    color: var(--vc-muted);
    font-size: 14px;
}

.vc-product-summary__cats a {
    color: inherit;
    text-decoration: none;
}

.vc-product-summary__price-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px 28px;
    margin-top: 24px;
}

.vc-product-summary__price {
    margin-top: 0;
}

.vc-product-summary__price .price {
    display: block;
    margin: 0;
    color: var(--vc-green);
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 700;
    line-height: 1;
}

.vc-product-summary__price del {
    margin-right: 10px;
    color: var(--vc-muted);
    font-size: .65em;
}

.vc-product-summary__excerpt {
    margin-top: 22px;
    color: var(--vc-muted);
    font-size: 16px;
    line-height: 1.6;
}

.vc-product-summary__excerpt p {
    margin: 0 0 14px;
}

.vc-product-summary__purchase {
    margin-top: 26px;
}

.vc-product-summary form.cart {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 10px;
    align-items: stretch;
    margin: 0;
}

.vc-product-summary form.variations_form {
    display: block;
}

.vc-product-summary form.grouped_form {
    display: block;
}

.vc-product-summary form.cart > .single_add_to_cart_button:first-child:last-child {
    grid-column: 1 / -1;
}

.vc-product-summary .quantity {
    margin: 0;
}

.vc-product-summary .quantity input.qty {
    width: 100%;
    height: 56px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 0;
    background: #101010;
    color: #ffffff;
    text-align: center;
}

.vc-product-summary .single_add_to_cart_button,
.vc-product-summary button.button,
.vc-product-summary .button.alt {
    position: relative;
    min-height: 56px;
    padding: 0 24px;
    border: 0;
    border-radius: 0;
    background: linear-gradient(90deg, var(--vc-green) 0%, var(--vc-green-dark) 100%);
    color: #050505;
    font-weight: 700;
    text-transform: none;
    cursor: pointer;
}

.vc-product-summary .single_add_to_cart_button:hover,
.vc-product-summary button.button:hover,
.vc-product-summary .button.alt:hover {
    filter: brightness(1.08);
}

.vc-product-summary .single_add_to_cart_button.loading,
.vc-product-summary .single_add_to_cart_button:disabled {
    cursor: wait;
    pointer-events: none;
}

.vc-product-summary .single_add_to_cart_button.loading {
    color: transparent !important;
}

.vc-product-summary .single_add_to_cart_button.loading::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 22px;
    height: 22px;
    margin: -11px 0 0 -11px;
    border: 2px solid rgba(5, 5, 5, .22);
    border-top-color: #050505;
    border-radius: 999px;
    animation: vc-spin .7s linear infinite;
}

.vc-product-summary table.variations {
    width: 100%;
    margin: 0 0 16px;
    border-collapse: collapse;
}

.vc-product-summary table.variations th,
.vc-product-summary table.variations td {
    display: block;
    padding: 0;
    text-align: left;
}

.vc-product-summary table.variations label {
    display: block;
    margin: 0 0 8px;
    color: #ffffff;
    font-weight: 700;
}

.vc-product-summary table.variations select {
    width: 100%;
    min-height: 54px;
    margin-bottom: 14px;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 0;
    background: #101010;
    color: #ffffff;
}

.vc-product-summary .single_variation_wrap form.cart,
.vc-product-summary .woocommerce-variation-add-to-cart,
.vc-product-summary .woocommerce-variation-add-to-cart-disabled {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 10px;
}

.vc-product-summary table.group_table {
    width: 100%;
    margin: 0 0 18px;
    border-collapse: collapse;
}

.vc-product-summary table.group_table td {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.vc-product-summary table.group_table td:first-child {
    width: 90px;
}

.vc-product-summary table.group_table a {
    color: #ffffff;
    text-decoration: none;
}

.vc-product-summary .woocommerce-variation-price {
    margin-bottom: 14px;
}

.vc-product-summary .stock {
    color: var(--vc-muted);
}

.vc-product-trust {
    display: grid;
    gap: 10px;
    margin: 26px 0 0;
    padding: 0;
    list-style: none;
}

.vc-product-trust li {
    padding: 15px 16px;
    background: #0d0d0d;
}

.vc-product-trust strong,
.vc-product-trust span {
    display: block;
}

.vc-product-trust strong {
    color: #ffffff;
    font-size: 15px;
}

.vc-product-trust span {
    margin-top: 4px;
    color: var(--vc-muted);
    font-size: 14px;
    line-height: 1.35;
}

.vc-product-compatibility {
    margin-top: 18px;
    padding: 18px 20px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .012)),
        rgba(6, 6, 6, .72);
}

.vc-product-compatibility > strong {
    display: block;
    margin-bottom: 12px;
    color: #ffffff;
    font-size: 15px;
}

.vc-product-compatibility ul {
    display: grid;
    gap: 9px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.vc-product-compatibility li {
    display: grid;
    grid-template-columns: minmax(92px, .35fr) minmax(0, 1fr);
    gap: 12px;
    color: var(--vc-muted);
    font-size: 14px;
    line-height: 1.4;
}

.vc-product-compatibility span {
    color: rgba(255, 255, 255, .64);
}

.vc-product-compatibility em {
    color: #ffffff;
    font-style: normal;
}

.vc-product-delivery-link {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-top: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--vc-green);
    font: inherit;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.3;
    text-decoration: underline;
    text-underline-offset: 4px;
    cursor: pointer;
}

.vc-product-delivery-link:hover,
.vc-product-delivery-link:focus-visible {
    color: #ffffff;
}

.vc-mock-product__notice {
    margin-top: 22px;
    padding: 20px;
    background:
        linear-gradient(135deg, rgba(156, 255, 0, .1), rgba(255, 255, 255, .025)),
        rgba(16, 16, 16, .72);
}

.vc-mock-product__notice strong {
    display: block;
    color: #ffffff;
}

.vc-mock-product__notice p {
    margin: 8px 0 0;
    color: var(--vc-muted);
    font-size: 15px;
    line-height: 1.55;
}

.vc-mock-product__notice .vc-product-story__button {
    margin-top: 18px;
}

.vc-mock-product__price-label {
    display: block;
    margin-bottom: 7px;
    color: var(--vc-muted);
    font-size: 14px;
    line-height: 1.2;
}

.vc-mock-product__form {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}

.vc-mock-product__form label {
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
}

.vc-mock-product__form > div {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
}

.vc-mock-product__form input[type="email"] {
    box-sizing: border-box;
    width: 100%;
    min-height: 50px;
    padding: 0 16px;
    border: 1px solid rgba(255, 255, 255, .08);
    background: #151515;
    color: #ffffff;
    font: inherit;
}

.vc-mock-product__form button {
    min-height: 50px;
    padding: 0 22px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--vc-green) 0%, var(--vc-green-dark) 100%);
    color: #050505;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}

.vc-mock-product__form button:disabled {
    opacity: .68;
    cursor: wait;
}

.vc-mock-product__honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.vc-mock-product__message {
    margin-top: 14px;
    padding: 12px 14px;
    background: rgba(255, 255, 255, .08);
    color: #ffffff;
    font-size: 14px;
    line-height: 1.4;
}

.vc-mock-product__message--success {
    background: rgba(156, 255, 0, .12);
}

.vc-mock-product__message--error {
    background: rgba(255, 80, 80, .14);
}

.vc-product-info {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
    gap: clamp(28px, 4vw, 58px);
    margin-top: clamp(52px, 7vw, 96px);
}

.vc-product-info article,
.vc-product-checklist,
.vc-product-after {
    background: #090909;
    border: 1px solid rgba(255, 255, 255, .08);
}

.vc-product-info article,
.vc-product-checklist {
    padding: clamp(24px, 4vw, 44px);
}

.vc-product-info h2,
.vc-product-checklist h2,
.vc-product-after h2 {
    margin: 0 0 18px;
    color: #ffffff;
    font-size: clamp(26px, 3vw, 40px);
    line-height: 1.05;
}

.vc-product-info__content,
.vc-product-info article > p,
.vc-product-checklist li {
    color: var(--vc-muted);
    font-size: 16px;
    line-height: 1.65;
}

.vc-product-info__content p:first-child {
    margin-top: 0;
}

.vc-product-info__content p:last-child {
    margin-bottom: 0;
}

.vc-product-checklist ul {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.vc-product-checklist li {
    position: relative;
    padding-left: 24px;
}

.vc-product-checklist li::before {
    content: "";
    position: absolute;
    top: .72em;
    left: 0;
    width: 8px;
    height: 8px;
    background: var(--vc-green);
}

.vc-product-after {
    margin-top: 34px;
    padding: clamp(24px, 4vw, 44px);
}

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

.vc-product-after .product {
    width: auto !important;
    margin: 0 !important;
    padding: 0;
    background: #0d0d0d;
}

@media (max-width: 1080px) {
    .vc-product-hero,
    .vc-product-info {
        grid-template-columns: 1fr;
    }

    .vc-product-summary {
        position: static;
    }
}

@media (max-width: 720px) {
    .vc-single-product > .vc-container {
        width: min(100% - 32px, 640px);
        padding-block: 28px 72px;
    }

    .vc-product-gallery__main {
        min-height: 300px;
    }

    .vc-product-gallery.has-thumbs {
        display: block;
    }

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

    .vc-product-gallery.has-thumbs .vc-product-gallery__thumbs {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        max-height: none;
        margin-top: 10px;
        overflow: visible;
    }

    .vc-product-summary form.cart,
    .vc-product-summary .single_variation_wrap form.cart,
    .vc-product-summary .woocommerce-variation-add-to-cart,
    .vc-product-summary .woocommerce-variation-add-to-cart-disabled {
        grid-template-columns: 1fr;
    }

    .vc-product-summary .quantity input.qty {
        max-width: 120px;
    }

    .vc-product-after .products {
        grid-template-columns: 1fr;
    }
}

/* Single product: full-width promo layout */
.vc-single-product {
    position: relative;
    isolation: isolate;
    background:
        radial-gradient(circle at 70% 6%, rgba(156, 255, 0, .045), transparent 28%),
        linear-gradient(135deg, rgba(255, 255, 255, .025), transparent 54%),
        #030303;
    overflow: hidden;
}

.vc-single-product::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background-image:
        linear-gradient(45deg, rgba(255, 255, 255, .052) 25%, transparent 25%, transparent 75%, rgba(255, 255, 255, .052) 75%),
        linear-gradient(45deg, rgba(255, 255, 255, .032) 25%, transparent 25%, transparent 75%, rgba(255, 255, 255, .032) 75%);
    background-position: 0 0, 8px 8px;
    background-size: 16px 16px;
    opacity: .06;
    pointer-events: none;
}

.vc-single-product__inner {
    width: 100%;
}

.vc-single-product .vc-product-hero {
    display: grid;
    grid-template-columns: minmax(0, 40fr) minmax(0, 60fr);
    gap: 0;
    align-items: stretch;
    min-height: min(56vw, 820px);
    background: transparent;
}

.vc-single-product .vc-product-gallery {
    display: flex;
    flex-direction: column;
    min-width: 0;
    min-height: 100%;
    background: rgba(8, 8, 8, .46);
}

.vc-single-product .vc-product-gallery.has-thumbs {
    display: flex;
    grid-template-columns: none;
    gap: 0;
}

.vc-single-product .vc-product-gallery__main,
.vc-single-product .vc-product-gallery.has-thumbs .vc-product-gallery__main {
    grid-column: auto;
    grid-row: auto;
    flex: 1 1 auto;
    min-height: 0;
    margin: 0;
    background: transparent;
    border: 0;
}

.vc-single-product .vc-product-gallery__main {
    display: flex;
}

.vc-single-product .vc-product-gallery__main a {
    aspect-ratio: 1 / 1;
    width: 100%;
    align-self: center;
    min-height: 0;
    background: #101010;
    cursor: zoom-in;
}

.vc-single-product .vc-product-gallery__image {
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: cover;
}

.vc-single-product .vc-product-gallery__thumbs,
.vc-single-product .vc-product-gallery.has-thumbs .vc-product-gallery__thumbs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(74px, 1fr));
    gap: 8px;
    max-height: none;
    margin-top: 10px;
    overflow: visible;
}

.vc-single-product .vc-product-gallery__thumb {
    border: 0;
    background: #101010;
}

.vc-single-product .vc-product-gallery__thumb img {
    opacity: .58;
}

.vc-single-product .vc-product-gallery__thumb.is-active img,
.vc-single-product .vc-product-gallery__thumb:hover img,
.vc-single-product .vc-product-gallery__thumb:focus-visible img {
    opacity: 1;
}

.vc-single-product .vc-product-gallery__thumb.is-active {
    border: 0;
    outline: 2px solid var(--vc-green);
    outline-offset: -2px;
}

.vc-single-product .vc-product-summary {
    position: relative;
    isolation: isolate;
    top: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100%;
    padding: clamp(30px, 3vw, 50px) clamp(44px, 7vw, 126px);
    background: transparent;
    border: 0;
    overflow: hidden;
}

.vc-single-product .vc-product-summary::before {
    display: none;
}

.vc-single-product .vc-product-summary__cats {
    display: none;
}

.vc-single-product .vc-product-summary__availability {
    align-self: flex-start;
    width: auto;
}

.vc-single-product .vc-product-summary h1 {
    max-width: 680px;
    font-size: clamp(28px, 3vw, 44px);
    line-height: 1.06;
}

.vc-product-review-summary {
    display: inline;
    grid-template-columns: auto auto 1fr;
    gap: 6px 10px;
    align-items: baseline;
    width: fit-content;
    margin-top: 12px;
    color: #ffffff;
    text-decoration: none;
}

.vc-product-review-summary strong {
    color: #ffffff;
    font-size: 16px;
    line-height: 1;
}

.vc-product-review-summary span {
    color: var(--vc-green);
    font-size: 15px;
    letter-spacing: 1px;
}

.vc-product-review-summary small {
    color: var(--vc-muted);
    font-size: 14px;
}

.vc-product-review-summary em {
    grid-column: 1 / -1;
    color: var(--vc-green);
    font-size: 14px;
    font-style: normal;
    text-decoration: underline;
    text-decoration-color: rgba(156, 255, 0, .45);
    text-underline-offset: .2em;
}

.vc-single-product .vc-product-summary__price .price {
    color: #ffffff;
    font-size: clamp(24px, 2.2vw, 32px);
}

.vc-single-product .vc-product-summary__excerpt,
.vc-single-product .vc-product-summary__content {
    max-width: 760px;
    color: var(--vc-muted);
    font-size: 16px;
    line-height: 1.66;
}

.vc-single-product .vc-product-summary__content {
    margin-top: 34px;
}

.vc-single-product .vc-product-summary__content h2,
.vc-single-product .vc-product-summary__content h3,
.vc-single-product .vc-product-summary__content h4 {
    margin: 30px 0 12px;
    color: #ffffff;
    line-height: 1.14;
}

.vc-single-product .vc-product-summary__content h2 {
    font-size: clamp(24px, 2.4vw, 34px);
}

.vc-single-product .vc-product-summary__content h3 {
    font-size: clamp(21px, 2vw, 28px);
}

.vc-single-product .vc-product-summary__content ul {
    margin: 12px 0 20px;
    padding-left: 18px;
}

.vc-single-product .vc-product-summary__content li {
    margin-bottom: 7px;
}

.vc-single-product .vc-product-trust {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 760px;
}

.vc-single-product .vc-product-trust li {
    background: rgba(255, 255, 255, .045);
}

.vc-product-points {
    display: grid;
    gap: 8px;
    max-width: 760px;
    margin: 20px 0 0;
    padding: 0;
    color: var(--vc-muted);
    list-style: none;
    font-size: 15px;
    line-height: 1.45;
}

.vc-product-points li {
    position: relative;
    padding-left: 18px;
}

.vc-product-points li::before {
    content: "";
    position: absolute;
    top: .65em;
    left: 0;
    width: 6px;
    height: 6px;
    background: var(--vc-green);
}

.vc-single-product .vc-product-summary .quantity input.qty,
.vc-single-product .vc-product-summary table.variations select {
    border: 0;
}

.vc-single-product .vc-product-summary form.cart,
.vc-single-product .vc-product-summary .single_variation_wrap form.cart,
.vc-single-product .vc-product-summary .woocommerce-variation-add-to-cart,
.vc-single-product .vc-product-summary .woocommerce-variation-add-to-cart-disabled {
    grid-template-columns: 76px minmax(180px, 320px);
    justify-content: start;
    gap: 12px;
}

.vc-single-product .vc-product-summary .quantity {
    position: relative;
    width: 76px;
    height: 50px;
    background: #101010;
    overflow: hidden;
}

.vc-single-product .vc-product-summary .quantity::before,
.vc-single-product .vc-product-summary .quantity::after {
    display: none;
    position: absolute;
    right: 10px;
    z-index: 1;
    color: var(--vc-green);
    font-size: 11px;
    line-height: 1;
    pointer-events: none;
}

.vc-single-product .vc-product-summary .quantity::before {
    content: "▲";
    top: 10px;
}

.vc-single-product .vc-product-summary .quantity::after {
    content: "▼";
    bottom: 10px;
}

.vc-single-product .vc-product-summary .quantity input.qty {
    width: 100%;
    max-width: none;
    height: 100%;
    padding: 0 26px 0 12px;
    background: transparent;
    color: #ffffff;
    font-weight: 700;
    appearance: textfield;
    -moz-appearance: textfield;
}

.vc-single-product .vc-product-summary .quantity input.qty::-webkit-outer-spin-button,
.vc-single-product .vc-product-summary .quantity input.qty::-webkit-inner-spin-button {
    margin: 0;
    opacity: 0;
}

.vc-qty-step {
    position: absolute;
    right: 6px;
    z-index: 2;
    width: 22px;
    height: 19px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--vc-green);
    font-size: 10px;
    line-height: 1;
    cursor: pointer;
}

.vc-qty-step--up {
    top: 6px;
}

.vc-qty-step--down {
    bottom: 6px;
}

.vc-single-product .vc-product-summary .single_add_to_cart_button,
.vc-single-product .vc-product-summary button.button,
.vc-single-product .vc-product-summary .button.alt {
    min-height: 50px;
    border-radius: 999px;
    padding-inline: 28px;
    font-size: 16px;
    white-space: nowrap;
}

.vc-product-detail--virtual-cockpit .vc-product-summary form.cart {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    grid-template-columns: none;
    gap: 14px 18px;
}

.vc-product-detail--virtual-cockpit .vc-product-summary__purchase {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px 18px;
}

.vc-product-detail--virtual-cockpit .vc-product-summary__purchase form.cart {
    position: relative;
    z-index: 4;
    flex: 1 1 100%;
}

.vc-product-detail--virtual-cockpit .vc-product-summary__purchase > *:not(form) {
    flex: 0 1 280px;
    margin: 0 !important;
}

.vc-product-detail--virtual-cockpit .vc-product-summary__purchase iframe {
    display: block;
    max-width: 100%;
}

.vc-product-detail--virtual-cockpit .vc-product-summary .quantity {
    display: none !important;
}

.vc-product-detail--virtual-cockpit .vc-product-summary .single_add_to_cart_button,
.vc-product-detail--virtual-cockpit .vc-product-summary button.button,
.vc-product-detail--virtual-cockpit .vc-product-summary .button.alt {
    position: relative;
    z-index: 5;
    pointer-events: auto;
    grid-column: 1 / -1;
    flex: 0 0 min(100%, 320px);
    min-height: 52px;
    font-size: 16px;
}

.vc-single-product .added_to_cart,
.vc-single-product .vc-product-summary__purchase .added_to_cart,
.vc-single-product .vc-product-summary .added_to_cart {
    display: none !important;
}

.vc-product-detail--virtual-cockpit .vc-product-summary form.cart > na-splatky-button {
    display: block !important;
    flex: 0 1 320px;
    max-width: 100%;
    margin-top: 0 !important;
}

body.vc-lang-not-sk .vc-product-detail--virtual-cockpit .vc-product-summary form.cart > na-splatky-button {
    display: none !important;
}

.vc-single-product .vc-product-trust {
    gap: 10px;
}

.vc-single-product .vc-product-trust li {
    position: relative;
    min-height: 104px;
    padding: 16px 16px 16px 58px;
}

.vc-product-trust__icon {
    position: absolute;
    top: 16px;
    left: 16px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    margin: 0 !important;
    border-radius: 999px;
    background: rgba(156, 255, 0, .1);
    color: var(--vc-green) !important;
    font-size: 10px !important;
    font-weight: 700;
    line-height: 1;
}

.vc-product-points {
    display: none !important;
}

.vc-product-fixed-info {
    display: none;
}

.vc-product-how {
    display: grid;
    grid-template-columns: minmax(0, 60fr) minmax(0, 40fr);
    grid-auto-rows: 1fr;
    gap: clamp(28px, 5vw, 72px);
    align-items: stretch;
    width: min(100% - calc(var(--vc-x) * 2), 1480px);
    margin: 0 auto;
    padding: clamp(70px, 8vw, 118px) 0 0;
}

.vc-product-how__copy,
.vc-product-how__media {
    align-self: stretch;
    min-height: 100%;
}

.vc-product-how__copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
    padding: clamp(30px, 4vw, 58px);
    background: rgba(255, 255, 255, .035);
}

.vc-product-how__copy .vc-eyebrow {
    color: var(--vc-green);
}

.vc-product-how__copy h2 {
    max-width: 820px;
    margin: 0 0 22px;
    color: #ffffff;
    font-size: clamp(30px, 3.4vw, 54px);
    line-height: 1.04;
}

.vc-product-how__copy p,
.vc-product-how__copy li {
    max-width: 860px;
    color: var(--vc-muted);
    font-size: 16px;
    line-height: 1.68;
}

.vc-product-how__copy p {
    margin: 0 0 18px;
}

.vc-product-how__copy ul {
    margin: 6px 0 18px;
    padding-left: 20px;
}

.vc-product-how__copy li + li {
    margin-top: 8px;
}

.vc-product-how__media {
    margin: 0;
    background: rgba(0, 0, 0, .42);
    overflow: hidden;
}

.vc-product-how__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vc-product-customize {
    display: grid;
    grid-template-columns: minmax(0, 60fr) minmax(0, 40fr);
    grid-auto-rows: 1fr;
    gap: clamp(28px, 5vw, 72px);
    align-items: stretch;
    width: min(100% - calc(var(--vc-x) * 2), 1480px);
    margin: 0 auto;
    padding: clamp(70px, 8vw, 118px) 0 0;
}

.vc-product-customize__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-self: stretch;
    min-height: 100%;
    box-sizing: border-box;
    padding: clamp(30px, 4vw, 58px);
    background: rgba(255, 255, 255, .035);
}

.vc-product-customize__content h2 {
    margin: 0 0 22px;
    color: #ffffff;
    font-size: clamp(30px, 3.4vw, 54px);
    line-height: 1.04;
}

.vc-product-customize .vc-eyebrow {
    color: var(--vc-green);
}

.vc-product-customize__content p,
.vc-product-customize__content li {
    color: var(--vc-muted);
    font-size: 16px;
    line-height: 1.68;
}

.vc-product-customize__content p {
    margin: 0 0 18px;
}

.vc-product-customize__content ul {
    margin: 6px 0 0;
    padding-left: 20px;
}

.vc-product-customize__content li + li {
    margin-top: 8px;
}

.vc-product-customize__gallery {
    display: flex;
    flex-direction: column;
    align-self: stretch;
    min-height: 100%;
    gap: 10px;
}

.vc-product-customize__main,
.vc-product-customize__thumbs button {
    aspect-ratio: 1 / 1;
    margin: 0;
    background: rgba(0, 0, 0, .35);
    overflow: hidden;
}

.vc-product-customize__main {
    flex: 1 1 auto;
    cursor: zoom-in;
}

.vc-product-customize__main img,
.vc-product-customize__thumbs img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vc-product-customize__main img {
    transition: opacity .38s ease;
}

.vc-product-customize__main img.is-fading {
    opacity: .18;
}

.vc-product-customize__thumbs {
    flex: 0 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.vc-product-customize__thumbs button {
    padding: 0;
    border: 0;
    cursor: pointer;
    opacity: .56;
}

.vc-product-customize__thumbs button.is-active,
.vc-product-customize__thumbs button:hover,
.vc-product-customize__thumbs button:focus-visible {
    opacity: 1;
    outline: 2px solid var(--vc-green);
    outline-offset: -2px;
}

.vc-product-story {
    display: grid;
    grid-template-columns: minmax(0, 40fr) minmax(0, 60fr);
    grid-auto-rows: 1fr;
    gap: clamp(28px, 5vw, 72px);
    align-items: stretch;
    width: min(100% - calc(var(--vc-x) * 2), 1480px);
    margin: 0 auto;
    padding: clamp(70px, 8vw, 118px) 0 0;
}

.vc-product-story__copy,
.vc-product-story__video {
    align-self: stretch;
    height: 100%;
    min-height: 100%;
}

.vc-product-story__copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgba(255, 255, 255, .035);
}

.vc-product-story__copy-inner {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
    padding: clamp(30px, 4vw, 58px);
}

.vc-product-story__copy-inner .vc-eyebrow {
    color: var(--vc-green)
}

.vc-product-story__copy h2 {
    max-width: 780px;
    margin: 0 0 22px;
    color: #ffffff;
    font-size: clamp(30px, 3.4vw, 54px);
    line-height: 1.04;
}

.vc-product-story__copy p,
.vc-product-story__copy li {
    max-width: 820px;
    color: var(--vc-muted);
    font-size: 16px;
    line-height: 1.68;
}

.vc-product-story__copy p {
    margin: 0 0 18px;
}

.vc-product-story__copy ul {
    margin: 6px 0 0;
    padding-left: 20px;
}

.vc-product-story__copy li + li {
    margin-top: 8px;
}

.vc-product-story__video {
    display: grid;
    align-items: stretch;
}

.vc-product-story__video-frame {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 100%;
    background: rgba(0, 0, 0, .42);
    overflow: hidden;
}

.vc-product-story__video-frame iframe,
.vc-product-story__video-frame video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    object-fit: cover;
}

.vc-product-story__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    min-height: 52px;
    margin-top: 30px;
    padding: 0 24px;
    border-radius: 999px;
    background: #ffffff;
    color: #050505;
    font-weight: 700;
    text-decoration: none;
}

.vc-product-story__commerce {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-top: 30px;
}

.vc-product-story__commerce strong {
    margin-right: 8px;
    color: #ffffff;
    font-size: clamp(22px, 2vw, 30px);
    line-height: 1;
}

.vc-product-story__commerce .amount {
    color: inherit;
}

.vc-product-story__button--cart {
    position: relative;
    background: linear-gradient(90deg, var(--vc-green) 0%, var(--vc-green-dark) 100%);
}

.vc-product-story__commerce .added_to_cart {
    display: none !important;
}

.vc-product-story__button--cart.loading,
.vc-product-story__button--cart.added {
    pointer-events: none;
}

.vc-product-story__button--cart.loading {
    color: transparent !important;
}

.vc-product-story__button--cart.loading::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid rgba(5, 5, 5, .24);
    border-top-color: #050505;
    border-radius: 999px;
    animation: vc-product-button-spin .72s linear infinite;
}

@keyframes vc-product-button-spin {
    to {
        transform: rotate(360deg);
    }
}

.vc-product-story__button:hover,
.vc-product-story__button:focus-visible {
    color: #050505;
    filter: brightness(1.08);
}

.vc-product-fixed-info article {
    position: relative;
}

.vc-product-fixed-info article::before,
.vc-product-fixed-info article::after {
    content: "";
    display: block;
    width: 2px;
    height: 96px;
    margin: 0 auto 34px;
    background: rgba(156, 255, 0, .55);
}

.vc-product-fixed-info article::after {
    margin: 44px auto 0;
}

.vc-product-fixed-info h2,
.vc-product-fixed-info h3 {
    color: #ffffff;
    line-height: 1.12;
}

.vc-product-fixed-info h2 {
    margin: 0 0 20px;
    font-size: clamp(28px, 3vw, 42px);
}

.vc-product-fixed-info h3 {
    margin: 34px 0 12px;
    font-size: clamp(21px, 2vw, 27px);
}

.vc-product-fixed-info p,
.vc-product-fixed-info li {
    color: var(--vc-muted);
    font-size: 16px;
    line-height: 1.68;
}

.vc-product-fixed-info ul {
    margin: 14px 0 22px;
    padding-left: 20px;
}

.vc-product-after {
    width: min(100% - calc(var(--vc-x) * 2), 1380px);
    margin: clamp(52px, 7vw, 96px) auto 0;
    padding: 0 0 86px;
    background: transparent;
    border: 0;
}

.vc-product-reviews-section {
    width: min(100% - calc(var(--vc-x) * 2), 1380px);
    margin: clamp(52px, 7vw, 96px) auto 0;
}

.vc-product-reviews-section h2 {
    margin: 0 0 28px;
    color: #ffffff;
    font-size: clamp(28px, 3vw, 44px);
    line-height: 1.08;
    text-align: center;
}

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

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

.vc-product-lightbox img {
    display: block;
    max-width: min(100%, 1500px);
    max-height: calc(100svh - 72px);
    object-fit: contain;
}

.vc-product-lightbox__close {
    position: fixed;
    top: 18px;
    right: 18px;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 999px;
    background: #ffffff;
    color: #050505;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.vc-lightbox-open {
    overflow: hidden;
}

.vc-product-modal[hidden] {
    display: none;
}

.vc-product-modal {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: grid;
    place-items: center;
    box-sizing: border-box;
    width: 100%;
    height: 100svh;
    padding: 24px;
    background: rgba(0, 0, 0, .82);
    overflow: hidden;
    overscroll-behavior: contain;
}

.vc-product-modal__panel {
    position: relative;
    box-sizing: border-box;
    width: min(100%, 900px);
    max-height: 80svh;
    padding: clamp(26px, 4vw, 46px);
    overflow: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    background:
        radial-gradient(circle at 16% 12%, rgba(132, 255, 0, .12), transparent 26%),
        repeating-linear-gradient(135deg, rgba(255, 255, 255, .025) 0 1px, transparent 1px 14px),
        #090909;
    color: #ffffff;
    box-shadow: 0 24px 90px rgba(0, 0, 0, .65);
}

.vc-product-modal__panel h2 {
    max-width: 560px;
    margin: 0 0 22px;
    color: #ffffff;
    font-size: clamp(26px, 3vw, 38px);
    line-height: 1.08;
}

.vc-product-modal__panel ul {
    display: grid;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.vc-product-modal__panel li {
    display: grid;
    gap: 4px;
    padding-left: 18px;
    border-left: 3px solid var(--vc-green);
}

.vc-product-modal__panel strong {
    color: #ffffff;
}

.vc-product-modal__panel span,
.vc-product-modal__note {
    color: var(--vc-muted);
    font-size: 15px;
    line-height: 1.55;
}

.vc-product-modal__note {
    margin: 22px 0 0;
}

.vc-product-modal__home {
    display: grid;
    gap: 6px;
    margin: 0 0 24px;
    padding: 18px;
    border: 1px solid rgba(163, 255, 0, .24);
    background: rgba(163, 255, 0, .07);
}

.vc-product-modal__home strong,
.vc-product-modal__installations h3,
.vc-product-modal__installation-country h4,
.vc-product-modal__installation-place h5 {
    color: #ffffff;
}

.vc-product-modal__home p {
    margin: 0;
    color: var(--vc-muted);
    font-size: 15px;
    line-height: 1.55;
}

.vc-product-modal__installations {
    margin: 0 0 24px;
}

.vc-product-modal__installations h3 {
    margin: 0 0 14px;
    font-size: 20px;
    line-height: 1.2;
}

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

.vc-product-modal__installation-country {
    display: grid;
    align-content: start;
    gap: 14px;
}

.vc-product-modal__installation-country h4 {
    margin: 0;
    font-size: 17px;
    line-height: 1.2;
}

.vc-product-modal__installation-place {
    display: grid;
    gap: 8px;
    padding: 0 0 14px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.vc-product-modal__installation-place h5 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin: 0;
    font-size: 15px;
    line-height: 1.3;
}

.vc-product-modal__installation-place h5 em {
    display: inline-flex;
    align-items: center;
    min-height: 20px;
    padding: 0 8px;
    border-radius: 999px;
    background: rgba(163, 255, 0, .12);
    color: var(--vc-green);
    font-size: 11px;
    font-style: normal;
    font-weight: 700;
    line-height: 1;
}

.vc-product-modal__installation-place ul {
    display: grid;
    gap: 6px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.vc-product-modal__installation-place li {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    padding: 0;
    border: 0;
    color: #ffffff;
}

.vc-product-modal__installation-place li span {
    color: #ffffff;
}

.vc-product-modal__installation-place li strong {
    color: var(--vc-green);
    text-align: right;
    white-space: normal;
}

.vc-product-modal__installation-place li em {
    color: rgba(255, 255, 255, .68);
    font-size: 14px;
    font-style: normal;
    white-space: nowrap;
}

.vc-product-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    background: #ffffff;
    color: #050505;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
}

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

.vc-single-product .vc-product-summary__availability,
.vc-single-product .vc-product-summary__price .price,
.vc-single-product .vc-product-summary .single_add_to_cart_button,
.vc-single-product .vc-product-summary button.button,
.vc-single-product .vc-product-summary .button.alt,
.vc-single-product .vc-product-summary .quantity input.qty,
.vc-single-product .vc-product-trust strong,
.vc-single-product .vc-product-trust__icon,
.vc-single-product .vc-product-delivery-link,
.vc-single-product .vc-product-story__button,
.vc-single-product h1,
.vc-single-product h2,
.vc-single-product h3,
.vc-single-product strong {
    font-weight: 700 !important;
}

@media (max-width: 1080px) {
    .vc-single-product .vc-product-hero {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .vc-product-story {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }

    .vc-product-customize {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }

    .vc-product-how {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }

    .vc-product-story__video-frame {
        aspect-ratio: 16 / 9;
        height: auto;
        min-height: 0;
    }

    .vc-single-product .vc-product-summary {
        min-height: 0;
        padding: 48px var(--vc-x) 58px;
    }

    .vc-single-product .vc-product-gallery {
        padding: var(--vc-x);
    }
}

@media (max-width: 720px) {
    .vc-product-modal {
        align-items: stretch;
        justify-items: stretch;
        padding: 12px;
    }

    .vc-product-modal__panel {
        width: 100%;
        max-width: none;
        max-height: calc(100svh - 24px);
        padding: 24px 16px 18px;
    }

    .vc-product-modal__panel h2 {
        max-width: calc(100% - 46px);
        font-size: 25px;
    }

    .vc-product-modal__installation-columns {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .vc-product-modal__installation-place li {
        grid-template-columns: 1fr;
        gap: 2px;
    }

    .vc-product-modal__installation-place li strong {
        text-align: left;
    }

    .vc-installation-modal {
        align-items: stretch;
        justify-items: stretch;
        padding: 12px;
    }

    .vc-installation-modal__dialog {
        width: 100%;
        max-height: calc(100svh - 24px);
        padding: 22px 16px 16px;
    }

    .vc-installation-modal h3,
    .vc-installation-modal__intro {
        margin-right: 46px;
    }

    .vc-installation-modal__columns {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .vc-installation-choice {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .vc-installation-choice strong,
    .vc-installation-choice--disabled span:last-child {
        grid-column: 2;
        text-align: left;
    }

    .vc-installation-modal__footer {
        position: sticky;
        bottom: -16px;
        display: grid;
        grid-template-columns: 1fr;
        margin-inline: -16px;
        margin-bottom: -16px;
        padding: 12px 16px 16px;
        background: linear-gradient(180deg, rgba(8, 8, 8, .72), #080808 28%);
    }

    .vc-installation-modal__decline,
    .vc-installation-modal__confirm {
        width: 100%;
    }

    .vc-single-product .vc-product-gallery,
    .vc-single-product .vc-product-gallery.has-thumbs {
        min-height: 0;
    }

    .vc-single-product .vc-product-gallery__main,
    .vc-single-product .vc-product-gallery.has-thumbs .vc-product-gallery__main {
        flex: 0 0 auto;
        width: 100%;
        aspect-ratio: 1 / 1;
    }

    .vc-single-product .vc-product-gallery__main a {
        display: block;
        height: auto;
        min-height: 0;
        aspect-ratio: 1 / 1;
    }

    .vc-single-product .vc-product-gallery__image {
        display: block;
        aspect-ratio: 1 / 1;
        height: auto;
        max-height: none;
        object-fit: cover;
    }

    .vc-single-product .vc-product-gallery__thumbs,
    .vc-single-product .vc-product-gallery.has-thumbs .vc-product-gallery__thumbs {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

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

    .vc-single-product .vc-product-trust {
        grid-template-columns: 1fr;
    }

    .vc-product-compatibility li {
        grid-template-columns: 1fr;
        gap: 2px;
    }

    .vc-mock-product__form > div {
        grid-template-columns: 1fr;
    }

    .vc-product-story__copy {
        padding: 0;
    }

    .vc-product-customize__content {
        padding: 34px 24px;
    }

    .vc-product-how__copy {
        padding: 34px 24px;
    }

    .vc-product-how__media {
        aspect-ratio: 16 / 9;
    }

    .vc-product-customize__gallery {
        grid-template-columns: 1fr;
        align-self: start;
        min-height: 0;
    }

    .vc-product-customize__main {
        flex: 0 0 auto;
        width: 100%;
        aspect-ratio: 1 / 1;
    }

    .vc-product-customize__main img {
        width: 100%;
        height: 100%;
        aspect-ratio: 1 / 1;
        object-fit: cover;
    }

    .vc-product-customize__thumbs button {
        aspect-ratio: 1 / 1;
    }

    .vc-single-product .vc-product-summary__purchase,
    .vc-single-product .vc-product-summary__purchase form.cart {
        width: 100%;
    }

    .vc-product-detail--virtual-cockpit .vc-product-summary .single_add_to_cart_button,
    .vc-product-detail--virtual-cockpit .vc-product-summary button.button,
    .vc-product-detail--virtual-cockpit .vc-product-summary .button.alt {
        flex-basis: 100%;
        width: 100%;
        max-width: none;
    }

    .vc-product-story__copy-inner {
        padding: 34px 24px;
    }

    .vc-product-review-summary {
        grid-template-columns: auto auto;
    }

    .vc-product-review-summary small,
    .vc-product-review-summary em {
        grid-column: 1 / -1;
    }
}


/* Custom */

.vc-installation-place__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0;
  cursor: pointer;
  list-style: none;
}

.vc-installation-place__head::-webkit-details-marker {
  display: none;
}

.vc-installation-place__title {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.vc-installation-place__title strong {
  color: #fff;
}

.vc-installation-place__title em {
  font-style: normal;
  font-size: 12px;
  color: #a3ff00;
  border: 1px solid rgba(163,255,0,.35);
  border-radius: 999px;
  padding: 3px 8px;
}

.vc-installation-place__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.vc-installation-chevron {
  width: 9px;
  height: 9px;
  border-right: 2px solid #a3ff00;
  border-bottom: 2px solid #a3ff00;
  transform: rotate(45deg);
  transition: transform .2s ease;
}

.vc-installation-place[open] .vc-installation-chevron {
  transform: rotate(-135deg);
}

.vc-installation-place__body {
  padding: 0 16px 16px;
  border-top: 1px solid rgba(255,255,255,.08);
}
