@font-face {
    font-family: "ClearVyzr Poppins";
    src: url("../fonts/poppins-400-latin.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "ClearVyzr Poppins";
    src: url("../fonts/poppins-500-latin.woff2") format("woff2");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "ClearVyzr Poppins";
    src: url("../fonts/poppins-600-latin.woff2") format("woff2");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "ClearVyzr Poppins";
    src: url("../fonts/poppins-700-latin.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "ClearVyzr Jost";
    src: url("../fonts/jost-normal-latin.woff2") format("woff2");
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "ClearVyzr Jost";
    src: url("../fonts/jost-italic-latin.woff2") format("woff2");
    font-weight: 100 900;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "ClearVyzr Montserrat";
    src: url("../fonts/montserrat-normal-latin.woff2") format("woff2");
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "ClearVyzr Montserrat";
    src: url("../fonts/montserrat-italic-latin.woff2") format("woff2");
    font-weight: 100 900;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "FontAwesome";
    src: url("../fonts/fa-solid-900.woff2") format("woff2");
    font-weight: 900;
    font-style: normal;
    font-display: block;
}

@font-face {
    font-family: "ETmodules";
    src: url("../fonts/etmodules.woff") format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: block;
}

:root {
    --cv-black: #000;
    --cv-ink: #252323;
    --cv-muted: rgba(0, 0, 0, .68);
    --cv-soft: #f3f3f3;
    --cv-button: #8f8f8f;
    --cv-max: 1920px;
    --cv-header-h: 76px;
    --cv-font-body: "ClearVyzr Poppins", "Poppins", Helvetica, Arial, Lucida, sans-serif;
    --cv-font-nav: "ClearVyzr Jost", "Jost", Helvetica, Arial, Lucida, sans-serif;
    --cv-font-accent: "ClearVyzr Montserrat", "Montserrat", Helvetica, Arial, Lucida, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.clearvyzr-theme {
    margin: 0;
    color: var(--cv-muted);
    background: #fff;
    font-family: var(--cv-font-body);
    font-size: 16px;
    line-height: 1.8;
    font-weight: 400;
}

.cv-page {
    overflow-x: hidden;
    padding-top: var(--cv-header-h);
}

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

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

.cv-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    background: #fff;
    box-shadow: 0 2px 18px rgba(0, 0, 0, .1);
    transition: box-shadow .25s ease;
}

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

.cv-header__inner {
    min-height: var(--cv-header-h);
    width: 95%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    gap: 32px;
    transition: min-height .25s ease, padding .25s ease;
}

.cv-header.is-shrunk {
    box-shadow: 0 2px 14px rgba(0, 0, 0, .12);
}

.cv-header.is-shrunk .cv-header__inner {
    min-height: 58px;
}

.cv-logo {
    width: auto;
    max-width: 200px;
    flex: 0 0 auto;
}

.cv-logo img {
    width: auto;
    max-height: 64px;
    transition: max-height .25s ease;
}

.cv-header.is-shrunk .cv-logo img {
    max-height: 46px;
}

.cv-region-fallback-notice {
    padding: 9px 24px;
    border-bottom: 1px solid rgba(0, 0, 0, .08);
    background: #f7f7f7;
    color: rgba(0, 0, 0, .62);
    font-family: var(--cv-font-nav);
    font-size: 13px;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
}

.cv-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    font-family: var(--cv-font-nav);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: #383838;
}

.cv-nav > a {
    transition: color .2s ease;
}

.cv-nav > a:hover {
    color: #8f8f8f;
}

.cv-nav > a[aria-current="page"],
.cv-mobile-panel a[aria-current="page"] {
    color: #8f8f8f;
}

.cv-lang__button,
.cv-region__button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 0;
    background: transparent;
    color: #383838;
    font-family: var(--cv-font-nav);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    cursor: pointer;
    padding: 0;
}

.cv-chevron {
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
}

.cv-header__region {
    margin-left: auto;
}

.cv-header-buy {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 8px 24px;
    background: #000;
    color: #fff !important;
    border-radius: 0;
    font-family: var(--cv-font-accent);
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0;
    text-transform: uppercase;
    transition: background-color .2s ease, transform .2s ease;
}

.cv-header-buy:hover {
    background: #383838;
    transform: translateY(-1px);
}

.cv-region,
.cv-lang {
    position: relative;
    font-family: var(--cv-font-nav);
}

.cv-region__button {
    min-height: 39px;
    padding: 9px 15px;
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .04);
    font-weight: 600;
}

.cv-region__menu,
.cv-lang__menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 180px;
    padding: 8px;
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .14);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity .18s ease, transform .18s ease;
}

.cv-lang__menu {
    right: auto;
    left: 0;
    min-width: 84px;
}

.cv-region.is-open .cv-region__menu,
.cv-lang.is-open .cv-lang__menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.cv-region__menu a,
.cv-lang__menu a {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 9px 10px;
    border-radius: 10px;
    line-height: 1.2;
}

.cv-region__menu a:hover,
.cv-lang__menu a:hover,
.cv-lang__menu a[aria-current="true"] {
    background: #f4f4f4;
}

.cv-menu-toggle {
    display: none;
    width: 34px;
    height: 34px;
    border: 0;
    background: transparent;
    padding: 6px;
    margin-left: auto;
}

.cv-menu-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    margin: 5px 0;
    background: #111;
}

.cv-mobile-panel {
    padding: 12px 30px 24px;
    border-top: 1px solid rgba(0, 0, 0, .08);
}

.cv-mobile-panel a {
    display: block;
    padding: 10px 0;
    color: #222;
}

.cv-hero {
    position: relative;
    min-height: clamp(360px, 22vw, 450px);
    display: flex;
    align-items: flex-end;
    padding: 0;
    background-image: var(--cv-hero-image);
    background-size: cover;
    background-position: center top;
}

.cv-hero__panel {
    width: 90%;
    max-width: var(--cv-max);
    margin: 0 auto;
    min-height: clamp(258px, 17vw, 300px);
    padding: 40px 80px 30px;
    background: rgba(255, 255, 255, .82);
}

.cv-hero__panel p {
    margin: 0;
    padding-bottom: 10px;
    color: var(--cv-ink);
    font-family: var(--cv-font-accent);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
}

.cv-hero__panel h1 {
    margin: 0;
    padding-bottom: 10px;
    color: #000;
    font-family: var(--cv-font-accent);
    font-size: clamp(48px, 4.2vw, 76px);
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: normal;
    max-width: 100%;
}

.cv-accessories {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 90%;
    max-width: var(--cv-max);
    min-height: 1068.5px;
    margin: 0 auto;
    overflow: hidden;
}

.cv-accessories__image--left {
    position: relative;
    background: #202020;
    padding: min(5.4vw, 115.2px);
    overflow: hidden;
}

.cv-accessories__image--left img {
    display: block;
    width: 66%;
    max-width: none;
    margin: -154.8px auto 30px;
    border-radius: 6px;
    position: relative;
    z-index: 2;
}

.cv-accessories__primary-copy {
    position: relative;
    z-index: 3;
    max-width: 700px;
    margin: 0;
    color: rgba(255, 255, 255, .89);
}

.cv-accessories__primary-copy h2 {
    margin: 0;
    padding-bottom: 10px;
    color: #fff;
    font-family: var(--cv-font-accent);
    font-size: clamp(38px, 3.66vw, 50px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: normal;
}

.cv-accessories__primary-copy p {
    margin: 0 0 15px;
    padding-bottom: 10px;
    color: rgba(255, 255, 255, .89);
    font-family: var(--cv-font-accent);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.5;
}

.cv-accessories__copy {
    position: relative;
    overflow: hidden;
    background: #f3f3f3;
    padding: min(5.4vw, 115.2px);
}

.cv-accessories__copy h2 {
    max-width: 700px;
    margin: 0;
    padding-bottom: 10px;
    color: #000;
    font-family: var(--cv-font-accent);
    font-size: clamp(38px, 3.66vw, 50px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: normal;
}

.cv-accessories__copy p {
    max-width: 700px;
    margin: 0 0 15px;
    padding-bottom: 10px;
    color: var(--cv-ink);
    font-family: var(--cv-font-accent);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.5;
}

.cv-accessories__side-product {
    position: relative;
    display: block;
    width: 98.5%;
    max-width: none;
    margin-top: -221px;
    margin-right: -80%;
    border-radius: 6px;
    transform: translateX(221px);
}

.cv-button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 15px 30px;
    border: 0;
    border-radius: 0;
    background: var(--cv-button);
    color: #fff !important;
    font-family: var(--cv-font-accent);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.7;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: background-color .2s ease, color .2s ease;
}

.cv-button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
    background: #383838;
    color: #fff !important;
}

.cv-button--outline {
    min-height: 44px;
    padding: 12px 20px;
    border: 1px solid #000;
    background: transparent;
    color: #000 !important;
    font-size: 13px;
}

.cv-button--outline:hover {
    background: #000;
    color: #fff !important;
}

.cv-products {
    width: 90%;
    max-width: var(--cv-max);
    min-height: 775px;
    margin: 163px auto 81px;
    padding: 41px 0;
}

.cv-products__toolbar {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
    min-height: 41px;
    margin: 0 0 16px;
    color: #939393;
    font-size: 14px;
    font-weight: 500;
    line-height: 28.8px;
}

.cv-products__toolbar p {
    margin: 0;
}

.cv-products__toolbar select {
    width: 176px;
    min-height: 41px;
    border: 1px solid #111;
    border-radius: 0;
    background: #fff;
    color: #555;
    font-family: var(--cv-font-body);
    font-size: 16px;
    font-weight: 400;
    padding: 0 12px;
}

.cv-product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 5.5%;
    min-height: 636px;
}

.cv-product-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-height: 100%;
}

.cv-product-card__image {
    display: block;
    overflow: hidden;
    background: #f4f4f4;
}

.cv-product-card__image img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    transition: transform .35s ease;
}

.cv-product-card:hover .cv-product-card__image img {
    transform: scale(1.04);
}

.cv-product-card h3 {
    margin: 0;
    color: #000;
    font-family: var(--cv-font-accent);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
}

.cv-product-card__price,
.cv-product-card__availability {
    color: #333;
    font-family: var(--cv-font-accent);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.cv-product-card .cv-button {
    align-self: flex-start;
    min-height: 38px;
    margin-top: 6px;
    padding: 10px 22px;
    font-size: 13px;
}

.cv-product-card .cv-button--outline {
    min-width: 116px;
}

.cv-product-card .cv-button--product-primary {
    background: #383838;
    color: #fff !important;
    font-size: 16px;
    letter-spacing: normal;
    text-transform: none;
}

.cv-product-card .cv-button--product-primary:hover {
    background: #000;
}

.cv-waitlist {
    min-height: min(1100px, calc(100vh - var(--cv-header-h)));
    padding: clamp(110px, 10.3vw, 210px) 5% 96px;
    background-image: var(--cv-waitlist-image);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #333;
    text-align: center;
}

.cv-waitlist__content {
    width: min(100%, 860px);
    margin: 0 auto;
}

.cv-waitlist h1 {
    margin: 0 0 18px;
    color: #333;
    font-family: var(--cv-font-nav);
    font-size: clamp(40px, 2.93vw, 60px);
    font-weight: 500;
    line-height: 1.2;
}

.cv-waitlist__intro {
    max-width: 800px;
    margin: 0 auto;
    color: #333;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.7;
}

.cv-waitlist__lead,
.cv-waitlist h2 {
    margin: 72px 0 22px;
    color: #333;
    font-family: var(--cv-font-nav);
    font-size: 24px;
    font-weight: 500;
    line-height: 1.3;
}

.cv-waitlist__form {
    width: min(100%, 600px);
    min-height: 128px;
    margin: 0 auto;
    padding: 31px;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 0 18px rgba(0, 0, 0, .16);
}

.cv-waitlist__form .fluentform {
    margin: 0;
}

.cv-waitlist__form #fluentform_4 {
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    font-family: Helvetica, Arial, sans-serif !important;
}

.cv-waitlist__form form,
.cv-waitlist__form .ff-el-group:not(.ff_submit_btn_wrapper) {
    margin: 0;
}

.cv-waitlist__form form,
.cv-waitlist__form #fluentform_4 form {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.cv-waitlist__form .ff-el-input--label,
.cv-waitlist__form label {
    display: none !important;
}

.cv-waitlist__form .ff-el-group:not(.ff_submit_btn_wrapper) {
    flex: 1 1 auto;
}

.cv-waitlist__form #fluentform_4 .ff-el-group {
    margin-bottom: 0 !important;
}

.cv-waitlist__form input[type="email"],
.cv-waitlist__form input[type="text"],
.cv-waitlist__form #fluentform_4 .ff-el-form-control {
    width: 100%;
    min-height: 54px;
    margin-bottom: 0 !important;
    border: 1px solid #dcdcdc !important;
    border-radius: 10px !important;
    background: #f8f9fa !important;
    padding: 0 18px !important;
    color: #333;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 54px;
}

.cv-waitlist__form .ff-btn-submit,
.cv-waitlist__form button[type="submit"],
.cv-waitlist__form #fluentform_4 .ff-btn-submit {
    min-width: 214px;
    min-height: 54px;
    width: 260px !important;
    border: 1px solid #000 !important;
    border-radius: 10px !important;
    background: #000 !important;
    color: #fff !important;
    cursor: pointer;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    padding: 0 18px !important;
    text-transform: none !important;
    transition: background-color .2s ease, color .2s ease;
}

.cv-waitlist__form .ff-btn-submit:hover,
.cv-waitlist__form button[type="submit"]:hover {
    background: #333;
    color: #fff;
}

.cv-waitlist__switcher {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.cv-waitlist__switcher label {
    color: #333;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
}

.cv-waitlist__switcher select {
    min-width: 140px;
    border: 1px solid #ccc;
    border-radius: 5px;
    appearance: none;
    background-color: #fff;
    background-image: url('data:image/svg+xml;utf8,<svg fill="black" height="12" viewBox="0 0 24 24" width="12" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
    background-position: right 10px center;
    background-repeat: no-repeat;
    background-size: 12px;
    color: #333;
    cursor: pointer;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.4;
    padding: 10px 35px 10px 15px;
}

.cv-waitlist__switcher select:hover {
    border-color: #000;
}

.cv-waitlist h2 {
    margin-top: 52px;
    margin-bottom: 21px;
}

.cv-waitlist__social {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.cv-waitlist__social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 1px solid #000;
    background: transparent;
    color: #000;
    transition: transform .2s ease, background-color .2s ease, color .2s ease;
}

.cv-waitlist__social a:hover {
    background: #000;
    color: #fff;
    transform: translateY(-1px);
}

.cv-waitlist__social svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.cv-content-page {
    padding: 70px 0;
}

.cv-content-page__inner {
    width: 90%;
    max-width: 1180px;
    margin: 0 auto;
}

.cv-content-page__inner > h1 {
    margin: 0 0 28px;
    color: #000;
    font-family: var(--cv-font-accent);
    font-size: clamp(40px, 5vw, 72px);
    line-height: 1.18;
}

.cv-contact-hero {
    display: flex;
    align-items: center;
    min-height: clamp(238px, 17.2vw, 345px);
    padding: 4% 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.cv-contact-hero__inner {
    width: 80%;
    max-width: 1080px;
    margin: 0 auto;
    text-align: center;
}

.cv-contact-hero h1 {
    margin: 0;
    padding-bottom: 10px;
    color: #000;
    font-family: var(--cv-font-accent);
    font-size: clamp(30px, 3.125vw, 60px);
    font-weight: 700;
    line-height: 1.2;
}

.cv-contact-page {
    padding: 4% 0;
    background: #fff;
}

.cv-contact-page__inner {
    display: grid;
    grid-template-columns: minmax(0, 64.833%) minmax(0, 29.667%);
    gap: 5.5%;
    width: 90%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 2% 0;
}

.cv-contact-page h3 {
    margin: 0;
    padding-bottom: 10px;
    color: #000;
    font-family: var(--cv-font-accent);
    font-size: 30px;
    font-weight: 700;
    line-height: 1.3;
}

.cv-contact-form,
.cv-contact-info {
    min-width: 0;
}

.cv-contact-form .fluentform,
.cv-contact-form .fluentform_wrapper_1 {
    box-sizing: border-box;
    width: 100%;
    margin-top: 40px;
    padding: 38px 40px 58px;
    border-radius: 4px;
    background: #f7f7f7;
}

.cv-contact-form .fluentform *,
.cv-contact-form .fluentform_wrapper_1 * {
    box-sizing: border-box;
}

.cv-contact-form .ff-el-group {
    margin-bottom: 24px;
}

.cv-contact-form .ff-el-input--label label {
    display: none;
    color: #333;
    font-family: var(--cv-font-body);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.7;
}

.cv-contact-form .ff-el-form-control,
.cv-contact-form input[type="text"],
.cv-contact-form input[type="email"],
.cv-contact-form input[type="tel"],
.cv-contact-form input[type="file"],
.cv-contact-form textarea {
    width: 100%;
    min-height: 40px;
    padding: 10px 16px !important;
    border: 0 !important;
    border-bottom: 1px solid #c8c8c8 !important;
    border-radius: 0;
    background: transparent !important;
    color: #333;
    font-family: var(--cv-font-body) !important;
    font-size: 16px;
    line-height: 1.7;
    box-shadow: none;
}

.cv-contact-form select,
.cv-contact-form select.ff-el-form-control {
    width: 100%;
    min-height: 40px;
    padding: 8px 12px !important;
    border: 1px solid #d8d8d8 !important;
    border-radius: 3px;
    background: #fff !important;
    color: #333;
    font-family: var(--cv-font-body) !important;
    font-size: 16px;
    line-height: 1.7;
    box-shadow: none;
}

.cv-contact-form .ff-el-form-control::placeholder,
.cv-contact-form input::placeholder,
.cv-contact-form textarea::placeholder {
    color: #666;
    opacity: 1;
}

.cv-contact-form textarea,
.cv-contact-form textarea.ff-el-form-control {
    min-height: 118px;
    resize: vertical;
}

.cv-contact-form .ff_file_upload_holder {
    display: inline-flex;
}

.cv-contact-form .ff_upload_btn.ff-btn {
    display: inline-flex;
    align-items: center;
    min-height: 49px;
    padding: 12px 22px;
    border-radius: 0;
    background: #737982;
    color: #fff;
    font-family: var(--cv-font-body);
    font-size: 16px;
    font-weight: 500;
}

.cv-contact-form .ff-text-right {
    text-align: right;
}

.cv-contact-form .ff-btn-submit,
.cv-contact-form button[type="submit"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 30px !important;
    border: 0;
    border-radius: 0;
    background: #3f3f3f !important;
    color: #fff;
    font-family: var(--cv-font-accent);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.7;
    letter-spacing: 0;
    text-transform: none;
}

.cv-contact-form .ff-btn-submit:hover,
.cv-contact-form button[type="submit"]:hover {
    background: #000 !important;
}

.cv-contact-info__item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 0;
    padding: 0 0 10px;
    border-bottom: 0;
    color: #333;
    font-family: var(--cv-font-body);
    font-size: 18px;
    line-height: 1.7;
}

.cv-contact-info__item:hover {
    color: #383838;
}

.cv-contact-info__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: #8f8f8f;
    color: #fff;
}

.cv-contact-info__icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.cv-floating-buy-now {
    display: none;
}

.cv-account-hero {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    min-height: clamp(220px, 13.3vw, 272px);
    padding: 18px 0 40px;
    background: #f7f7f7;
}

.cv-account-hero__inner {
    width: 90%;
    max-width: 1920px;
    margin: 0 auto;
    text-align: center;
}

.cv-account-hero h1 {
    margin: 0;
    color: #252323;
    font-family: var(--cv-font-body);
    font-size: clamp(46px, 3.75vw, 72px);
    font-weight: 700;
    line-height: 1.15;
    text-transform: capitalize;
}

.woocommerce-account .cv-account-page {
    padding: 128px 0 32px;
}

.woocommerce-account .cv-content-page__inner {
    width: 90.4%;
    max-width: 1850px;
}

.woocommerce-account .woocommerce .u-columns.col2-set {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 72px;
}

.woocommerce-account .woocommerce .u-columns.col2-set::before,
.woocommerce-account .woocommerce .u-columns.col2-set::after {
    content: none;
}

.woocommerce-account .woocommerce .u-columns.col2-set .u-column1,
.woocommerce-account .woocommerce .u-columns.col2-set .u-column2 {
    float: none;
    width: auto;
    margin: 0;
}

.woocommerce-account .woocommerce h2 {
    margin: 0;
    padding-bottom: 50px;
    color: #252323;
    font-family: var(--cv-font-body);
    font-size: clamp(34px, 2.45vw, 46px);
    font-weight: 700;
    line-height: 1.18;
}

.woocommerce-account .woocommerce form.login,
.woocommerce-account .woocommerce form.register {
    margin: 0;
    min-height: 346px;
    padding: 33px 28px;
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 0;
    background: #fff;
}

.woocommerce-account .woocommerce form .form-row {
    margin: 0 0 21px;
    padding: 0;
}

.woocommerce-account .woocommerce form label {
    margin-bottom: 6px;
    color: #5b5b5b;
    font-family: var(--cv-font-body);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.7;
}

.woocommerce-account .woocommerce form .input-text {
    min-height: 50px;
    padding: 12px 16px;
    border: 0;
    border-radius: 0;
    background: #eee;
    color: #333;
    font-family: var(--cv-font-body);
    font-size: 17px;
    line-height: 1.7;
    box-shadow: none;
}

.woocommerce-account .woocommerce button.button,
.woocommerce-account .woocommerce input.button,
.woocommerce-account .woocommerce .button {
    min-height: 54px;
    padding: 12px 36px !important;
    border: 1px solid #252323 !important;
    background: transparent !important;
    color: #252323 !important;
    font-family: var(--cv-font-body) !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    letter-spacing: 1px;
    line-height: 1.7 !important;
}

.woocommerce-account .woocommerce button.button:hover,
.woocommerce-account .woocommerce input.button:hover,
.woocommerce-account .woocommerce .button:hover {
    background: #252323 !important;
    color: #fff !important;
}

.woocommerce-account .woocommerce .woocommerce-form-login__rememberme {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin: 0 0 0 14px;
    color: #5b5b5b;
    font-size: 17px;
    vertical-align: middle;
}

.woocommerce-account .woocommerce .woocommerce-form-login__rememberme input {
    width: 16px;
    height: 16px;
}

.woocommerce-account .woocommerce-LostPassword {
    margin: 19px 0 0;
}

.woocommerce-account .woocommerce-LostPassword a {
    color: #252323;
    font-size: 16px;
}

.woocommerce-account .woocommerce form.register p {
    margin: 0 0 22px;
    color: #5b5b5b;
    font-size: 17px;
    line-height: 1.7;
}

.cv-policy-hero {
    padding: 4% 0;
    background: #f7f7f7;
}

.cv-policy-hero__inner {
    width: 80%;
    max-width: 1080px;
    margin: 0 auto;
    text-align: center;
}

.cv-policy-hero h1 {
    margin: 0;
    padding-bottom: 10px;
    color: #000;
    font-family: var(--cv-font-accent);
    font-size: clamp(30px, 3.125vw, 60px);
    font-weight: 700;
    line-height: 1.2;
}

.cv-policy-page {
    padding: 4% 0;
    background: #fff;
}

.cv-policy-page__inner {
    width: 80%;
    max-width: 1080px;
    margin: 0 auto;
    color: var(--cv-muted);
    font-family: var(--cv-font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
}

.cv-policy-page__inner p {
    margin: 0;
    padding-bottom: 16px;
}

.cv-policy-page__inner h3 {
    margin: 0;
    padding-bottom: 10px;
    color: #000;
    font-family: var(--cv-font-accent);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
}

.cv-policy-page__inner ul {
    margin: 0 0 16px 1.2em;
    padding: 0 0 0 1em;
}

.cv-policy-page__inner li {
    margin: 0;
    padding: 0;
}

.cv-policy-page__inner li p {
    padding-bottom: 0;
}

.cv-policy-page__inner hr {
    height: 1px;
    margin: 26px 0;
    border: 0;
    background: rgba(0, 0, 0, .1);
}

.cv-policy-page__inner a {
    color: #000;
    font-weight: 700;
    text-decoration: underline;
}

.single-product .cv-content-page {
    padding: 82px 0 102px;
    background: #383838;
    color: #fff;
}

.single-product .cv-content-page__inner {
    width: 80%;
    max-width: none;
}

.single-product div.product::after {
    content: "";
    display: block;
    clear: both;
}

.single-product .woocommerce-product-gallery {
    float: left;
    width: 47.25% !important;
    margin: 60px 0 0;
    opacity: 1 !important;
}

.single-product .woocommerce-product-gallery__trigger {
    top: 16px;
    right: 16px;
}

.single-product .woocommerce-product-gallery__image img {
    display: block;
    width: 100%;
    height: auto;
}

.single-product.woocommerce div.product div.images .flex-control-thumbs {
    margin: 0 !important;
    padding-top: 51.6px !important;
    overflow: visible;
}

.single-product .flex-control-thumbs li {
    width: 20% !important;
    margin: 0 6.666% 51.6px 0 !important;
}

.single-product .flex-control-thumbs li:nth-child(4n) {
    margin-right: 0 !important;
}

.single-product .flex-control-thumbs img {
    width: 100%;
    opacity: .44;
    border: 1px solid transparent;
}

.single-product .flex-control-thumbs img.flex-active,
.single-product .flex-control-thumbs img:hover {
    opacity: 1;
    border-color: #ea2c59;
}

.single-product .summary.entry-summary {
    float: right;
    width: 47.25% !important;
    margin: 60px 0 0;
    color: #fff;
}

.single-product .summary.entry-summary a {
    color: inherit;
}

.single-product .cv-product-breadcrumb {
    margin: 0;
    color: #fff;
    font-size: 14px;
    line-height: 28.8px;
}

.single-product .product_title {
    margin: 0 0 10px;
    padding: 0;
    color: #fff;
    font-family: var(--cv-font-body);
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: normal;
}

.single-product div.product p.price {
    margin: 0 0 20px;
    color: #fff;
    font-family: var(--cv-font-body);
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
}

.single-product span.availability_date {
    display: inline-block;
    margin: 16px 0 18px;
    padding: 6px 14px;
    border-radius: 4px;
    background: #2c2c2c;
    box-shadow: 0 1px 2px rgba(255, 255, 255, .05);
    color: #e0e0e0;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 17.6px;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: .3px;
}

.single-product .woocommerce-product-details__short-description,
.single-product .woocommerce-product-details__short-description p {
    margin: 0;
    color: #fff;
    font-size: 16px;
    line-height: 25.6px;
}

.single-product.woocommerce div.product form.cart {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 16px;
    margin: 45px 0 45px !important;
    padding-left: 0;
}

.single-product.woocommerce div.product form.cart div.quantity {
    float: none !important;
    width: 69px;
    height: 50px;
    margin: 0 20px 0 0 !important;
}

.single-product form.cart .quantity input.qty {
    width: 69px;
    height: 50px;
    padding: 5px;
    border: 1px solid rgba(255, 255, 255, .7);
    border-radius: 0;
    background: transparent;
    color: #fff;
    font-family: var(--cv-font-body);
    font-size: 16px;
    line-height: 27.2px;
    text-align: center;
}

.single-product.woocommerce div.product form.cart .single_add_to_cart_button.button.alt,
.single-product.woocommerce div.product form.cart .buy-now-button {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    height: 50px !important;
    min-height: 50px !important;
    padding: 12px 30px !important;
    border: 2px solid #fff !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: #fff !important;
    font-family: var(--cv-font-body) !important;
    font-size: 14px !important;
    line-height: 23.8px !important;
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
}

.single-product.woocommerce div.product form.cart .single_add_to_cart_button.button.alt {
    width: 190px !important;
    padding-right: 30px !important;
    padding-left: 30px !important;
    font-weight: 400 !important;
}

.single-product.woocommerce div.product form.cart .buy-now-button {
    width: 119px !important;
    padding-right: 24px !important;
    padding-left: 24px !important;
    font-weight: 600 !important;
    line-height: 16.8px !important;
}

.single-product.woocommerce div.product form.cart .single_add_to_cart_button.button.alt:hover,
.single-product.woocommerce div.product form.cart .buy-now-button:hover {
    background: #fff !important;
    color: #000 !important;
}

.single-product.clearvyzr-product-preorder.woocommerce div.product form.cart .buy-now-button {
    display: none !important;
}

.single-product #gift-this-product.gift-this-product-main-container {
    flex-basis: 100%;
    width: 100%;
    margin: 0 0 24px !important;
    padding: 0 !important;
    border: 0 !important;
    background: none !important;
    box-shadow: none !important;
    text-align: left;
}

.single-product #gift-toggle-btn {
    display: inline-block;
    padding: 0;
    border: 0;
    background: transparent;
    color: #aaa;
    font-size: 14px;
    line-height: 28.8px;
    cursor: pointer;
}

.single-product #gift-toggle-btn:hover {
    color: #fff;
}

.single-product #gift-this-product .gift-toggle-content {
    display: none;
    margin-top: 10px;
}

.single-product #gift-this-product.is-open .gift-toggle-content {
    display: block;
}

.single-product #gift-this-product .gift-toggle-content button,
.single-product #gift-this-product .gift-toggle-content a {
    display: inline-block !important;
    margin-top: 10px;
    padding: 6px 14px !important;
    border: 1px solid #ccc !important;
    border-radius: 6px !important;
    background: #f5f5f5 !important;
    box-shadow: none !important;
    color: #333 !important;
    font-size: 13px !important;
    text-decoration: none !important;
}

.single-product #wc_bis_product_form {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin: 30px 0 40px;
}

.single-product #wc_bis_email {
    width: 100%;
    max-width: 300px;
    padding: 12px 16px;
    border: 1px solid #fff !important;
    border-radius: 6px;
    background: transparent !important;
    color: #fff !important;
}

.single-product #wc_bis_email::placeholder {
    color: #ccc !important;
}

.single-product #wc_bis_send_form,
.single-product a.button.product_type_simple:not(.add_to_cart_button) {
    padding: 10px 20px !important;
    border: 0 !important;
    border-radius: 4px;
    background: #fff !important;
    color: #000 !important;
    font-weight: 700;
    text-transform: uppercase;
}

.single-product #wc_bis_send_form:hover,
.single-product a.button.product_type_simple:not(.add_to_cart_button):hover {
    background: #f0f0f0 !important;
    color: #111 !important;
}

.single-product .wc_bis_form_title {
    margin-bottom: 8px;
    color: #fff !important;
    font-size: 16px;
}

.single-product .wc-stripe-clear,
.single-product .wc-stripe-product-checkout-container {
    display: none !important;
}

.single-product .product_meta {
    margin-top: 0;
    padding-top: 6px;
    border-top: 1px solid rgba(255, 255, 255, .38);
    color: #fff;
    font-size: 14px;
    line-height: 28.8px;
}

.single-product .product_meta a {
    color: #fff;
}

.single-product .product_meta .sku_wrapper::after {
    content: " / ";
}

.single-product .woocommerce-tabs {
    clear: both;
    box-sizing: border-box;
    min-height: 697px;
    margin-top: 208px;
    padding-top: 176px;
    color: #fff;
}

.single-product.woocommerce div.product .woocommerce-tabs ul.tabs {
    display: block;
    height: 46px;
    margin: 0;
    padding: 0 !important;
    border: 0;
    background: transparent !important;
}

.single-product.woocommerce div.product .woocommerce-tabs ul.tabs::before,
.single-product.woocommerce div.product .woocommerce-tabs ul.tabs::after {
    display: none;
}

.single-product.woocommerce div.product .woocommerce-tabs ul.tabs li {
    display: table;
    float: left;
    height: 46px;
    margin: 0 30px 0 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0;
    background: transparent !important;
    box-shadow: none !important;
}

.single-product.woocommerce div.product .woocommerce-tabs ul.tabs li::before,
.single-product.woocommerce div.product .woocommerce-tabs ul.tabs li::after {
    display: none;
}

.single-product.woocommerce div.product .woocommerce-tabs ul.tabs li a {
    display: table-cell;
    padding: 0 !important;
    color: #939393;
    font-family: var(--cv-font-body);
    font-size: 18px;
    font-weight: 600;
    line-height: 30.6px;
    vertical-align: top;
}

.single-product.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
    border-bottom: 3px solid #ea2c59;
}

.single-product.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
    color: #fff;
}

.single-product .woocommerce-Tabs-panel {
    margin: 50px 0 0 !important;
    padding: 0 !important;
    color: #fff;
    font-size: 16px;
    line-height: 28.8px;
}

.single-product .woocommerce-Tabs-panel h2 {
    display: none;
}

.single-product .woocommerce-Tabs-panel p {
    margin: 0 0 16px;
}

.cv-wp-content {
    color: #333;
}

.cv-footer {
    padding-top: 20px;
    background: #f7f7f7;
    color: #464646;
    font-family: var(--cv-font-nav);
}

.cv-footer__grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-items: start;
    gap: 56px;
    width: 90%;
    max-width: var(--cv-max);
    margin: 0 auto;
    padding: 41px 0;
}

.cv-footer__logo {
    width: 170px;
    margin-bottom: 16px;
}

.cv-footer h3 {
    margin: 0 0 27.6px;
    padding-bottom: 10px;
    color: #464646;
    font-family: var(--cv-font-nav);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.3;
    text-transform: uppercase;
}

.cv-footer p {
    display: block;
    margin: 0 0 28px;
    color: #939393;
    font-size: 15px;
    line-height: 28.8px;
}

.cv-footer p:last-child {
    margin-bottom: 0;
}

.cv-footer a {
    display: block;
    margin: 0 0 8px;
    color: #939393;
    font-family: var(--cv-font-body);
    font-size: 16px;
    line-height: 1.4;
}

.cv-footer a:hover {
    color: #000;
}

.cv-footer__bar {
    width: 100%;
    min-height: 71px;
    padding: 20px 10%;
    position: relative;
    background: #eee;
    color: #464646;
    font-family: var(--cv-font-body);
    font-size: 15px;
    line-height: 28.8px;
    text-align: center;
}

.cv-footer__social {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    margin: 0;
    position: absolute;
    top: 20px;
    right: 10%;
}

.cv-footer__social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    margin: 0;
    border-radius: 50%;
    background: #000;
    color: #fff;
    transition: background-color .2s ease, transform .2s ease;
}

.cv-footer__social a:nth-child(2) {
    background: #ea2c59;
}

.cv-footer__social a:hover {
    background: #000;
    transform: translateY(-1px);
}

.cv-footer__social svg {
    width: 12px;
    height: 12px;
    fill: currentColor;
}

.cv-scroll-scene {
    position: relative;
    overflow: hidden;
}

.cv-reveal-enabled [data-cv-reveal] {
    opacity: 0;
    transform: translate3d(0, 28px, 0);
    transition:
        opacity .72s cubic-bezier(.22, 1, .36, 1),
        transform .72s cubic-bezier(.22, 1, .36, 1);
    transition-delay: var(--cv-reveal-delay, 0ms);
    will-change: opacity, transform;
}

.cv-reveal-enabled [data-cv-reveal].is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.checkout-wc #cfw-header {
    border-bottom: 1px solid rgba(0, 0, 0, .08);
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 10px 32px rgba(0, 0, 0, .05);
}

.checkout-wc #cfw-header .row,
.checkout-wc #cfw-footer .wrap {
    max-width: 1180px;
    margin-right: auto;
    margin-left: auto;
}

.checkout-wc #cfw_trust_badges_list {
    margin-top: 34px;
    padding-top: 28px;
    border-top: 1px solid rgba(0, 0, 0, .22);
}

.checkout-wc #cfw-trust-badges {
    display: grid;
    gap: 22px;
}

.checkout-wc #cfw-trust-badges .items-center,
.cv-trust-badge-row,
.checkout-wc #cfw-trust-badges .cv-trust-badge-row,
.checkout-wc #cfw_trust_badges_list .cv-trust-badge-row,
.checkout-wc .cv-trust-badge-row {
    position: relative;
    display: block !important;
    margin: 0 !important;
    padding-left: 34px;
}

.checkout-wc #cfw-trust-badges .items-center::before {
    content: "";
    position: absolute;
    top: 1px;
    left: 0;
    width: 18px;
    height: 18px;
    border: 1px solid rgba(0, 0, 0, .28);
    border-radius: 50%;
    background: #fff;
}

.checkout-wc #cfw-trust-badges .items-center::after {
    content: "";
    position: absolute;
    top: 6px;
    left: 5px;
    width: 8px;
    height: 4px;
    border-bottom: 2px solid #111;
    border-left: 2px solid #111;
    transform: rotate(-45deg);
}

.cv-trust-badge-row::before,
.cv-trust-badge-row::after,
.checkout-wc #cfw-trust-badges .cv-trust-badge-row::before,
.checkout-wc #cfw-trust-badges .cv-trust-badge-row::after,
.checkout-wc #cfw_trust_badges_list .cv-trust-badge-row::before,
.checkout-wc #cfw_trust_badges_list .cv-trust-badge-row::after,
.checkout-wc .cv-trust-badge-row::before,
.checkout-wc .cv-trust-badge-row::after {
    content: none !important;
}

.cv-trust-check,
.checkout-wc #cfw-trust-badges .cv-trust-check,
.checkout-wc #cfw_trust_badges_list .cv-trust-check,
.checkout-wc .cv-trust-check {
    position: absolute;
    top: 1px;
    left: 0;
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, .28);
    border-radius: 50%;
    background: #fff;
    color: #111;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    pointer-events: none;
}

.checkout-wc #cfw-trust-badges img,
.checkout-wc #cfw-trust-badges img.cv-checkout-trust-icon,
.checkout-wc #cfw-trust-badges img[alt="Rider Obsessed"],
.checkout-wc #cfw-trust-badges img[alt="30-Day Satisfaction Guarantee"],
.checkout-wc #cfw-trust-badges img[alt="Made in Canada"],
.checkout-wc #cfw-trust-badges img[alt="Made in North America"] {
    display: none !important;
}

.checkout-wc #cfw-trust-badges .items-center:has(img[alt^="Free Shipping"]) {
    display: none !important;
}

.checkout-wc #cfw-trust-badges .ml-5 {
    margin-left: 0 !important;
}

.checkout-wc #cfw_trust_badges_list .cfw-tw .text-base,
.checkout-wc #cfw_trust_badges_list .cfw-tw span[class*="text-base"] {
    color: #333 !important;
    font-family: var(--cv-font-accent);
    font-size: 15px !important;
    font-weight: 700 !important;
    line-height: 1.25 !important;
    letter-spacing: .01em;
}

.checkout-wc #cfw_trust_badges_list .cfw-tw p,
.checkout-wc #cfw_trust_badges_list .cfw-tw blockquote {
    margin: 0;
    color: rgba(0, 0, 0, .72);
    font-family: var(--cv-font-nav);
    font-size: 15px;
    line-height: 1.5;
}

.checkout-wc #cfw-footer {
    border-top: 1px solid rgba(0, 0, 0, .08);
    background: #f4f4f4;
}

.checkout-wc #cfw-footer .cfw-footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px 28px;
    padding: 18px 0;
    color: rgba(0, 0, 0, .62);
    font-family: var(--cv-font-nav);
    font-size: 14px;
    line-height: 1.4;
}

.checkout-wc #cfw-footer p {
    margin: 0;
    color: rgba(0, 0, 0, .58);
}

.checkout-wc #cfw-footer .menu-primary-container {
    margin-left: auto;
}

.checkout-wc #cfw-footer .menu {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.checkout-wc #cfw-footer .menu a {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 8px 11px;
    border-radius: 999px;
    color: rgba(0, 0, 0, .62);
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    transition: background-color .18s ease, color .18s ease;
}

.checkout-wc #cfw-footer .menu a:hover {
    background: #fff;
    color: #000;
}

.checkout-wc #cfw-footer .trp-language-switcher-container {
    position: relative;
}

.checkout-wc #cfw-footer .trp-language-switcher-container > a {
    position: relative;
    border: 1px solid rgba(0, 0, 0, .13);
    background: #fff;
    color: #111;
    padding-right: 30px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, .04);
}

.checkout-wc #cfw-footer .trp-language-switcher-container > a::before {
    content: "Language";
    margin-right: 8px;
    color: rgba(0, 0, 0, .46);
    font-size: 12px;
    font-weight: 500;
}

.checkout-wc #cfw-footer .trp-language-switcher-container > a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 12px;
    width: 6px;
    height: 6px;
    margin-top: -4px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg);
}

.checkout-wc #cfw-footer .trp-language-switcher-container .sub-menu {
    position: absolute;
    right: 0;
    bottom: calc(100% + 8px);
    min-width: 128px;
    margin: 0;
    padding: 6px;
    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 18px 44px rgba(0, 0, 0, .12);
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
    z-index: 5;
}

.checkout-wc #cfw-footer .trp-language-switcher-container:hover .sub-menu,
.checkout-wc #cfw-footer .trp-language-switcher-container:focus-within .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.checkout-wc #cfw-footer .trp-language-switcher-container .sub-menu a {
    display: flex;
    justify-content: space-between;
    width: 100%;
    min-height: 30px;
    padding: 8px 10px;
    border-radius: 10px;
}

.checkout-wc #cfw-store-policies-container {
    width: 100%;
}

.checkout-wc #cfw-store-policies-container:empty {
    display: none;
}

@media (max-width: 780px) {
    .checkout-wc #cfw-footer .cfw-footer-inner {
        justify-content: center;
        text-align: center;
    }

    .checkout-wc #cfw-footer .menu-primary-container {
        width: 100%;
        margin-left: 0;
    }

    .checkout-wc #cfw-footer .menu {
        justify-content: center;
        flex-wrap: wrap;
    }
}

.cv-main-fallback {
    min-height: 82vh;
    display: grid;
    place-items: center;
    padding: 80px 5%;
    background: radial-gradient(circle at 50% 20%, #fff 0, #f1f1f1 38%, #cfcfcf 100%);
    text-align: center;
}

.cv-main-fallback p,
.cv-ready p {
    margin: 0;
    padding-bottom: 16px;
    color: #000;
    font-family: var(--cv-font-accent);
    font-weight: 500;
}

.cv-main-fallback h1,
.cv-ready h2 {
    margin: 0 0 10px;
    padding-bottom: 10px;
    color: #000;
    font-family: var(--cv-font-accent);
    font-size: 50px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: normal;
}

.cv-love {
    padding: 4% 0;
    background: #fff;
}

.cv-love__inner {
    width: 90%;
    max-width: var(--cv-max);
    margin: 0 auto;
}

.cv-love h2 {
    min-height: 216px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-family: var(--cv-font-accent);
    font-size: 50px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
}

.cv-love__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 5.5%;
    padding: 2% 0 4%;
}

.cv-love__column {
    display: grid;
    gap: 57px;
}

.cv-love__item {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 18px;
    align-items: start;
    font-family: var(--cv-font-accent);
}

.cv-love__icon {
    width: 40px;
    height: 40px;
    color: #0a0000;
    display: block;
    font-family: "FontAwesome";
    font-size: 40px;
    font-style: normal;
    font-weight: 900;
    line-height: 1;
    text-align: center;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.cv-love__icon::before {
    display: block;
}

.cv-love__icon--spray::before {
    content: "\f5bd";
}

.cv-love__icon--clip {
    font-family: "ETmodules";
    font-weight: 400;
}

.cv-love__icon--clip::before {
    content: "\e016";
}

.cv-love__icon--pad::before {
    content: "\f0eb";
}

.cv-love__icon--compact::before {
    content: "\f042";
}

.cv-love__icon--blend::before {
    content: "\f0c1";
}

.cv-love__icon--riders::before {
    content: "\f007";
}

.cv-love__item h3 {
    margin: 0 0 10px;
    color: #252323;
    font-family: var(--cv-font-accent);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.cv-love__item p {
    margin: 0;
    color: rgba(0, 0, 0, .6);
    font-family: var(--cv-font-accent);
    font-size: 16px;
    line-height: 1.8;
}

.cv-testimonial {
    padding: 0;
    margin-bottom: 30px;
    background: #fff;
    text-align: center;
}

.cv-testimonial blockquote {
    width: 90%;
    max-width: var(--cv-max);
    margin: 0 auto;
    min-height: 213px;
    padding-top: 79px;
    background: #f7f7f7;
}

.cv-testimonial p {
    margin: 0;
    color: #000;
    font-family: var(--cv-font-accent);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.7;
}

.cv-testimonial cite {
    display: block;
    margin-top: 0;
    color: #000;
    font-family: var(--cv-font-accent);
    font-style: normal;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.7;
}

.cv-ready {
    min-height: 575px;
    padding: 148px 0 40px;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
}

.cv-ready > * {
    width: 90%;
    max-width: var(--cv-max);
    margin-left: auto;
    margin-right: auto;
}

.cv-ready .cv-button {
    width: auto;
    margin-top: 67px;
    background: #0a0000;
}

.cv-footer .fluentform,
.cv-footer .fluentform_wrapper_3 {
    max-width: 460px;
    min-height: 106px;
}

.cv-footer__grid > div:nth-child(5) p {
    margin-bottom: -4px;
    font-size: 16px;
}

.cv-footer .ff-el-input--label {
    display: none;
}

.cv-footer input[type="text"],
.cv-footer input[type="email"] {
    width: 100%;
    border: 0;
    border-bottom: 1px solid #aaa;
    border-radius: 0;
    background: transparent;
    padding: 10px 0;
    color: #333;
    font-size: 16px;
}

@media (max-width: 980px) {
    :root {
        --cv-header-h: 70px;
    }

    .cv-header__inner {
        width: 100%;
        padding: 0 30px;
        flex-wrap: wrap;
    }

    .cv-nav {
        display: none;
    }

    .cv-header__region {
        margin-left: auto;
    }

    .cv-header.is-shrunk .cv-header__inner {
        min-height: 58px;
    }

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

    .cv-hero {
        min-height: 360px;
        padding-top: 120px;
    }

    .cv-hero__panel {
        padding: 30px 40px;
    }

    .cv-hero__panel h1 {
        font-size: 40px;
    }

    .cv-accessories {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .cv-accessories__image--left img {
        transform: translateY(85px);
        margin-top: -18%;
    }

    .cv-accessories__copy h2 {
        margin-top: 44px;
        font-size: 32px;
    }

    .cv-accessories__copy p {
        font-size: 20px;
    }

    .cv-accessories__side-product {
        position: relative;
        right: auto;
        bottom: auto;
        margin: 30px -20% -14% auto;
        width: 85%;
        transform: none;
    }

    .cv-product-grid,
    .cv-love__grid,
    .cv-footer__grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .cv-products,
    .cv-product-grid {
        min-height: auto;
    }

    .cv-products {
        margin: 40px auto 0;
        padding: 40px 0;
    }

    .cv-love {
        padding: 40px 0;
    }

    .cv-love h2 {
        min-height: auto;
        margin-bottom: 30px;
        font-size: 32px;
    }

    .cv-love__column {
        gap: 34px;
    }

    .cv-testimonial p,
    .cv-testimonial cite {
        font-size: 16px;
    }

    .cv-ready h2 {
        font-size: 30px;
    }

    .cv-ready {
        min-height: auto;
        padding: 40px 0;
    }

    .cv-ready .cv-button {
        margin-top: 24px;
    }

    .cv-footer__social {
        position: static;
        justify-content: center;
        margin-bottom: 12px;
    }

    .cv-products__toolbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .cv-contact-hero {
        min-height: 220px;
    }

    .cv-contact-page__inner {
        grid-template-columns: 1fr;
        gap: 36px;
        width: 90%;
    }

    .cv-contact-page h3 {
        font-size: 26px;
    }

    .woocommerce-account .cv-content-page__inner {
        width: 90%;
    }

    .woocommerce-account .woocommerce .u-columns.col2-set {
        grid-template-columns: minmax(0, 1fr) !important;
        gap: 40px;
        width: 100%;
        max-width: 100%;
    }

    .woocommerce-account .woocommerce .u-columns.col2-set .u-column1,
    .woocommerce-account .woocommerce .u-columns.col2-set .u-column2 {
        float: none;
        width: 100% !important;
        max-width: 100%;
        min-width: 0;
        margin: 0 0 34px;
    }

    .single-product .cv-content-page {
        padding: 48px 0 72px;
    }

    .single-product .cv-content-page__inner {
        width: 90%;
    }

    .single-product .woocommerce-product-gallery,
    .single-product .summary.entry-summary {
        float: none;
        width: 100% !important;
        margin: 0 0 40px;
    }

    .single-product.woocommerce div.product div.images .flex-control-thumbs {
        padding-top: 24px !important;
    }

    .single-product .flex-control-thumbs li {
        width: 22% !important;
        margin: 0 4% 24px 0 !important;
    }

    .single-product .flex-control-thumbs li:nth-child(4n) {
        margin-right: 0 !important;
    }

    .single-product .product_title {
        font-size: clamp(32px, 8vw, 40px);
    }

    .single-product.woocommerce div.product form.cart {
        align-items: flex-start;
        margin: 32px 0 32px !important;
    }

    .single-product .woocommerce-tabs {
        min-height: auto;
        margin-top: 24px;
        padding-top: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .cv-reveal-enabled [data-cv-reveal] {
        opacity: 1;
        transform: none;
        transition: none;
        transition-delay: 0ms;
    }
}

@media (max-width: 767px) {
    .admin-bar .cv-header {
        top: 46px;
    }

    .cv-header__inner {
        padding: 0 30px;
    }

    .cv-logo {
        max-width: 150px;
    }

    .cv-header__region {
        transform: scale(.92);
        transform-origin: right center;
    }

    .cv-header-buy {
        display: none;
    }

    .home.clearvyzr-region-main .cv-floating-buy-now {
        position: fixed;
        right: 22px;
        bottom: 22px;
        z-index: 9998;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 46px;
        padding: 12px 20px;
        background: #000;
        box-shadow: 0 12px 28px rgba(0, 0, 0, .2);
        color: #fff;
        font-family: var(--cv-font-accent);
        font-size: 13px;
        font-weight: 700;
        letter-spacing: .16em;
        line-height: 1;
        text-decoration: none;
        text-transform: uppercase;
    }

    .home.clearvyzr-region-main .cv-floating-buy-now:hover {
        transform: translateY(-2px);
    }

    .cv-hero {
        min-height: 300px;
        padding-top: 80px;
    }

    .cv-hero__panel {
        width: 90%;
        padding: 20px;
    }

    .cv-hero__panel p {
        font-size: 12px;
    }

    .cv-hero__panel h1 {
        font-size: 28px;
    }

    .cv-accessories__copy h2 {
        font-size: 18px;
    }

    .cv-accessories__primary-copy h2 {
        font-size: 18px;
    }

    .cv-accessories__copy p,
    .cv-accessories__primary-copy p {
        font-size: 13px;
    }

    .cv-love {
        padding: 30px 0;
    }

    .cv-love h2,
    .cv-ready h2 {
        font-size: 24px;
    }

    .cv-love__item {
        grid-template-columns: 40px 1fr;
    }

    .cv-love__item h3 {
        font-size: 16px;
    }

    .cv-love__item p {
        font-size: 13px;
    }

    .cv-testimonial {
        padding-top: 0;
    }

    .cv-testimonial blockquote {
        min-height: auto;
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .cv-testimonial p,
    .cv-testimonial cite {
        font-size: 13px;
    }

    .cv-ready p {
        font-size: 13px;
    }

    .cv-button {
        min-height: 44px;
        padding: 10px 20px;
        font-size: 14px;
    }

    .cv-contact-hero h1 {
        font-size: 30px;
    }

    .cv-contact-page {
        padding: 40px 0;
    }

    .cv-contact-form .fluentform,
    .cv-contact-form .fluentform_wrapper_1 {
        padding: 28px 24px 40px;
    }

    .cv-contact-form .ff-text-right {
        text-align: left;
    }

    .cv-contact-form .ff-el-form-control,
    .cv-contact-form input[type="text"],
    .cv-contact-form input[type="email"],
    .cv-contact-form textarea {
        font-size: 14px;
    }

    .woocommerce-account .cv-account-hero {
        min-height: 190px;
        padding: 44px 0 32px;
    }

    .woocommerce-account .cv-account-hero h1 {
        font-size: 40px;
    }

    .woocommerce-account .cv-account-page {
        padding: 40px 0;
    }

    .woocommerce-account .cv-content-page__inner,
    .woocommerce-account .woocommerce,
    .woocommerce-account .woocommerce .u-columns.col2-set,
    .woocommerce-account .woocommerce .u-columns.col2-set .u-column1,
    .woocommerce-account .woocommerce .u-columns.col2-set .u-column2 {
        width: calc(100vw - 50px) !important;
        max-width: calc(100vw - 50px) !important;
        margin-right: auto !important;
        margin-left: auto !important;
    }

    .woocommerce-account .woocommerce h2 {
        padding-bottom: 24px;
        font-size: 28px;
    }

    .woocommerce-account .woocommerce form.login,
    .woocommerce-account .woocommerce form.register {
        width: calc(100vw - 50px) !important;
        max-width: calc(100vw - 50px);
        padding: 24px;
        overflow: hidden;
    }

    .woocommerce-account .woocommerce form .input-text {
        max-width: 100%;
    }

    .woocommerce-account .woocommerce form label,
    .woocommerce-account .woocommerce form .input-text,
    .woocommerce-account .woocommerce form.register p,
    .woocommerce-account .woocommerce-LostPassword a,
    .woocommerce-account .woocommerce .woocommerce-form-login__rememberme {
        font-size: 15px;
    }

    .cv-waitlist {
        min-height: auto;
        padding: 90px 24px 88px;
        background-position: top center;
    }

    .cv-waitlist h1 {
        font-size: 40px;
    }

    .cv-waitlist__lead,
    .cv-waitlist h2 {
        margin-top: 42px;
        font-size: 20px;
    }

    .cv-waitlist__form {
        padding: 22px;
    }

    .cv-waitlist__form form {
        flex-direction: column;
        align-items: stretch;
    }

    .cv-waitlist__form .ff-btn-submit,
    .cv-waitlist__form button[type="submit"] {
        width: 100%;
        min-width: 0;
    }
}
