@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: 66px;
    --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;
}

/* Homepage: the body shows behind the transparent header strip while the
   scroll-sequence is in view. Match it to the scroll-sequence's neutral
   gray so the buffer reads as one continuous backdrop with the helmet hero
   (instead of a stripe of white peeking through behind the dark-mode nav). */
body.home.clearvyzr-theme,
body.cv-main-home-page.clearvyzr-theme {
    background: #666769;
}

/* 404 page: same trick — the header is transparent in dark mode, so the body
   bg shows through. Match it to the page background (#0b0b0b) so the header
   reads as solid black instead of a stripe of white peeking through. */
body.cv-page-404.clearvyzr-theme {
    background: #0b0b0b;
}

body.cv-page-404.clearvyzr-theme .cv-header {
    background: #0b0b0b !important;
}

.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: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: clamp(20px, 3vw, 40px);
    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: 56px;
}

.cv-logo {
    grid-column: 1;
    justify-self: start;
    width: auto;
    max-width: 200px;
}

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

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

.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 {
    grid-column: 2;
    justify-self: center;
    align-self: stretch;
    display: flex;
    align-items: stretch;
    gap: clamp(28px, 3vw, 52px);
    font-family: var(--cv-font-nav);
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    color: #8a8a8a;
}

/* Each nav link fills the full header height so the active underline can sit
   flush against the header's bottom edge. */
.cv-nav > a {
    position: relative;
    display: flex;
    align-items: center;
    color: #8a8a8a;
    transition: color .2s ease;
    letter-spacing: 0.005em;
}

.cv-nav > a > span {
    display: inline-block;
    position: relative;
}

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

.cv-nav > a[aria-current="page"] {
    color: #111;
    font-weight: 600;
}

/* Underline indicator — width matches the label, anchored flush against the
   very bottom of the header bar (the link <a> spans the full header height). */
.cv-nav > a[aria-current="page"]::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: calc(100% - 4px);
    height: 2px;
    background: #111;
}

.cv-mobile-panel a[aria-current="page"] {
    color: #111;
    font-weight: 600;
}

.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 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    padding: 0 22px;
    background: #000;
    color: #fff !important;
    border-radius: 0;
    font-family: var(--cv-font-accent);
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.04em;
    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;
}

/* ============================================================
   Contact page  —  page-contact-us.php
   1:1 port of the example Contact.html design.
   ============================================================ */

/* HERO */
.cv-contact-hero {
    padding: clamp(64px, 8vw, 100px) clamp(28px, 5vw, 48px) clamp(40px, 5vw, 60px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    background: #fff;
}

.cv-contact-hero__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: end;
}

.cv-contact-hero h1 {
    margin: 0;
    color: #0a0a0a;
    font-family: var(--cv-font-accent);
    font-size: clamp(48px, 5.4vw, 78px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.03em;
}

.cv-contact-hero__copy p {
    margin: 0;
    max-width: 460px;
    color: #4a4a4a;
    font-family: var(--cv-font-body);
    font-size: 17px;
    line-height: 1.75;
}

/* Eyebrow shared across page sections */
.cv-contact-eyebrow {
    margin-bottom: 18px;
    color: #8a8a8a;
    font-family: var(--cv-font-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

/* CONTACT GRID — form + aside */
.cv-contact-grid {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    background: #fff;
}

.cv-contact-grid__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    padding: clamp(60px, 7vw, 80px) clamp(28px, 5vw, 48px);
}

/* Form column — style FluentForm output to match the example */
.cv-contact-form {
    min-width: 0;
}

.cv-contact-form .fluentform,
.cv-contact-form [class*="fluentform_wrapper_"] {
    width: 100%;
    margin: 0;
    padding: 0;
    border-radius: 0;
    background: transparent;
}

.cv-contact-form .fluentform *,
.cv-contact-form [class*="fluentform_wrapper_"] * {
    box-sizing: border-box;
}

.cv-contact-form fieldset {
    margin: 0;
    padding: 0;
    border: 0;
}

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

/* Hide FluentForm labels — we use placeholder-only inputs */
.cv-contact-form .ff-el-input--label {
    display: none;
}

/* Re-show only the file upload label (it's hidden by ff-el-form-hide_label) */
.cv-contact-form .ff-el-form-hide_label .ff-el-input--label {
    display: none;
}

/* Inputs (text, email, tel, url) */
.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="url"],
.cv-contact-form textarea,
.cv-contact-form select {
    width: 100%;
    height: 52px;
    min-height: 52px;
    padding: 14px 18px !important;
    border: 1.5px solid rgba(0, 0, 0, 0.14) !important;
    border-radius: 0 !important;
    background: #fff !important;
    color: #1a1a1a !important;
    font-family: var(--cv-font-body) !important;
    font-size: 15px !important;
    line-height: 1.4;
    box-shadow: none !important;
    outline: none !important;
    transition: border-color 0.15s ease, background 0.15s ease;
}

.cv-contact-form .ff-el-form-control:hover,
.cv-contact-form input:hover,
.cv-contact-form textarea:hover,
.cv-contact-form select:hover {
    border-color: rgba(0, 0, 0, 0.32) !important;
}

.cv-contact-form .ff-el-form-control:focus,
.cv-contact-form input:focus,
.cv-contact-form textarea:focus,
.cv-contact-form select:focus {
    border-color: #0a0a0a !important;
    background: #fff !important;
}

/* Native <select> with clean chevron — overrides any FF leftovers */
.cv-contact-form select,
.cv-contact-form select.ff-el-form-control {
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%231a1a1a' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3.5 6.5l4.5 4 4.5-4'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 18px center !important;
    background-size: 14px !important;
    padding-right: 46px !important;
    cursor: pointer;
}

.cv-contact-form select option {
    color: #1a1a1a;
    background: #fff;
    padding: 10px;
}

/* Textarea sizing */
.cv-contact-form textarea,
.cv-contact-form textarea.ff-el-form-control {
    height: auto;
    min-height: 148px;
    resize: vertical;
    line-height: 1.6;
    padding: 14px 18px !important;
}

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

/* Two-column row (email + phone) — FluentForm uses .ff-t-container */
.cv-contact-form .ff-t-container {
    display: flex !important;
    gap: 16px !important;
}

.cv-contact-form .ff-t-container .ff-t-cell {
    flex: 1 1 0 !important;
    min-width: 0;
}

/* File upload — clean dashed drop-zone style */
.cv-contact-form .ff_file_upload_holder {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    min-height: 56px;
    padding: 14px 18px;
    border: 1.5px dashed rgba(0, 0, 0, 0.18);
    background: #fafaf8;
    color: #4a4a4a;
    font-family: var(--cv-font-body);
    font-size: 14px;
    cursor: pointer;
    transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.cv-contact-form .ff_file_upload_holder:hover {
    border-color: rgba(0, 0, 0, 0.5);
    background: #f3f2ef;
    color: #0a0a0a;
}

.cv-contact-form .ff_upload_btn,
.cv-contact-form .ff_upload_btn.ff-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: inherit !important;
    font-family: var(--cv-font-body) !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
    box-shadow: none !important;
}

.cv-contact-form .ff_upload_btn::before {
    content: '';
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21.44 11.05l-9.19 9.19a6 6 0 01-8.49-8.49l9.19-9.19a4 4 0 015.66 5.66l-9.2 9.19a2 2 0 01-2.83-2.83l8.49-8.49'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.cv-contact-form .ff-uploaded-list {
    margin-top: 10px;
    font-size: 13px;
    color: #4a4a4a;
}

.cv-contact-form .ff-uploaded-list .ff-upload-preview {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    margin: 4px 6px 0 0;
    background: #f3f2ef;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 0;
    font-size: 12px;
    color: #1a1a1a;
}

/* Hide the FluentForm tooltip icon next to the upload — we show inline help below */
.cv-contact-form .ff-el-form-hide_label .ff-el-tooltip {
    display: none;
}

/* Inline help message under the upload (visible — overrides FF tooltip-only mode) */
.cv-contact-form .ff-el-form-hide_label::after {
    content: 'JPG, PNG, WEBP \00B7  Max 5MB per file  \00B7  Up to 3 files';
    display: block;
    margin-top: 8px;
    color: #8a8a8a;
    font-family: var(--cv-font-body);
    font-size: 12px;
    line-height: 1.6;
}

/* Submit button — proper CTA */
.cv-contact-form .ff-text-right,
.cv-contact-form .ff_submit_btn_wrapper {
    margin-top: 28px;
    text-align: left;
}

.cv-contact-form .ff-btn-submit,
.cv-contact-form button[type="submit"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 54px;
    padding: 16px 40px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: #0a0a0a !important;
    color: #fff !important;
    font-family: var(--cv-font-accent) !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    letter-spacing: 0.06em !important;
    text-transform: uppercase !important;
    cursor: pointer;
    transition: background 0.15s ease, transform 0.15s ease;
}

.cv-contact-form .ff-btn-submit::after,
.cv-contact-form button[type="submit"]::after {
    content: '\2192';
    font-size: 16px;
    line-height: 1;
    transition: transform 0.15s ease;
}

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

.cv-contact-form .ff-btn-submit:hover::after,
.cv-contact-form button[type="submit"]:hover::after {
    transform: translateX(3px);
}

/* Inline validation errors */
.cv-contact-form .error,
.cv-contact-form .text-danger {
    margin-top: 6px;
    color: #c44a3a;
    font-family: var(--cv-font-body);
    font-size: 12px;
    line-height: 1.4;
}

.cv-contact-form__fallback {
    margin: 0;
    color: #4a4a4a;
    font-family: var(--cv-font-body);
    font-size: 15px;
    line-height: 1.7;
}

.cv-contact-form__fallback a {
    color: #0a0a0a;
    border-bottom: 1px solid #0a0a0a;
}

/* Aside column */
.cv-contact-aside {
    min-width: 0;
    padding-top: 4px;
}

.cv-contact-aside__title {
    margin: 0 0 36px;
    color: #0a0a0a;
    font-family: var(--cv-font-accent);
    font-size: 28px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.cv-contact-info-block {
    padding: 20px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.cv-contact-info-block:last-of-type {
    margin-bottom: 32px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.cv-contact-info-block__key {
    margin-bottom: 8px;
    color: #8a8a8a;
    font-family: var(--cv-font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.cv-contact-info-block__val {
    color: #0a0a0a;
    font-family: var(--cv-font-accent);
    font-size: 17px;
    font-weight: 500;
    letter-spacing: -0.01em;
}

.cv-contact-info-block__val a {
    color: #0a0a0a;
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    transition: border-color 0.15s ease;
}

.cv-contact-info-block__val a:hover {
    border-color: #0a0a0a;
}

.cv-contact-info-block__sub {
    margin-top: 6px;
    color: #8a8a8a;
    font-family: var(--cv-font-body);
    font-size: 13px;
    line-height: 1.6;
}

.cv-contact-response {
    padding: 24px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #f5f4f2;
}

.cv-contact-response__label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    color: #8a8a8a;
    font-family: var(--cv-font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.cv-contact-response__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22a066;
    animation: cv-contact-pulse 2s ease-in-out infinite;
}

@keyframes cv-contact-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.cv-contact-response__text {
    color: #0a0a0a;
    font-family: var(--cv-font-accent);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
}

/* QUICK LINKS */
.cv-contact-quicklinks {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    background: #f5f4f2;
    padding: clamp(60px, 7vw, 80px) clamp(28px, 5vw, 48px);
}

.cv-contact-quicklinks__inner {
    max-width: 1100px;
    margin: 0 auto;
}

.cv-contact-quicklinks__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.cv-contact-quicklinks__head h2 {
    margin: 0;
    color: #0a0a0a;
    font-family: var(--cv-font-accent);
    font-size: clamp(28px, 3vw, 36px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.cv-contact-quicklinks__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.cv-contact-quicklinks__grid--two {
    grid-template-columns: repeat(2, 1fr);
}

.cv-contact-quicklink {
    display: block;
    padding: 32px;
    background: #fff;
    color: #1a1a1a;
    text-decoration: none;
    transition: background 0.15s ease;
}

.cv-contact-quicklink:hover {
    background: #f5f4f2;
    color: #1a1a1a;
}

.cv-contact-quicklink__icon {
    display: block;
    width: 28px;
    height: 28px;
    margin-bottom: 20px;
    color: #0a0a0a;
}

.cv-contact-quicklink__title {
    margin-bottom: 8px;
    color: #0a0a0a;
    font-family: var(--cv-font-accent);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.005em;
}

.cv-contact-quicklink__desc {
    margin: 0 0 16px;
    color: #8a8a8a;
    font-family: var(--cv-font-body);
    font-size: 13px;
    line-height: 1.7;
}

.cv-contact-quicklink__arrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #0a0a0a;
    font-family: var(--cv-font-accent);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
}

.cv-contact-quicklink__arrow::after {
    content: '\2192';
    font-size: 14px;
}

/* FAQ */
.cv-contact-faq {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    background: #fff;
    padding: clamp(60px, 7vw, 80px) clamp(28px, 5vw, 48px);
}

.cv-contact-faq__inner {
    max-width: 1100px;
    margin: 0 auto;
}

.cv-contact-faq__inner h2 {
    margin: 0 0 40px;
    color: #0a0a0a;
    font-family: var(--cv-font-accent);
    font-size: clamp(28px, 3vw, 36px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.cv-contact-faq__list {
    display: flex;
    flex-direction: column;
}

.cv-contact-faq__item {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.cv-contact-faq__item:last-child {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.cv-contact-faq__q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 0;
    color: #0a0a0a;
    font-family: var(--cv-font-body);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.5;
    cursor: pointer;
    list-style: none;
    user-select: none;
}

.cv-contact-faq__q::-webkit-details-marker {
    display: none;
}

.cv-contact-faq__tog {
    color: #b0b0b0;
    font-size: 22px;
    line-height: 1;
    transition: transform 0.22s ease;
}

.cv-contact-faq__item[open] .cv-contact-faq__tog {
    transform: rotate(45deg);
}

.cv-contact-faq__a {
    padding: 0 0 22px;
    color: #4a4a4a;
    font-family: var(--cv-font-body);
    font-size: 14px;
    line-height: 1.8;
}

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

.cv-account-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 0;
    padding: 56px 0 40px;
    background: #f7f7f7;
}

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

.cv-account-hero h1 {
    margin: 0;
    color: #1a1a1a;
    font-family: var(--cv-font-body);
    font-size: clamp(40px, 3.4vw, 60px);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.02em;
    text-transform: capitalize;
}

.cv-account-hero__sub {
    margin: 14px auto 0;
    max-width: 520px;
    color: #5a5a5a;
    font-size: 16px;
    line-height: 1.55;
}

/* ── Content area ── */
.woocommerce-account .cv-account-page {
    padding: 56px 0 80px;
    background: #fff;
}

.woocommerce-account .cv-content-page__inner {
    width: 92%;
    max-width: 980px;
    margin: 0 auto;
}

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

.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;
}

/* "Login" / "Register" headings sit above each card */
.woocommerce-account .woocommerce h2 {
    margin: 0 0 16px;
    padding: 0;
    color: #1a1a1a;
    font-family: var(--cv-font-body);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

/* ── Cards ── */
.woocommerce-account .woocommerce form.login,
.woocommerce-account .woocommerce form.register {
    margin: 0;
    min-height: 0;
    padding: 36px 32px;
    border: 1px solid #e2e2e2;
    border-radius: 0;
    background: #fff;
    box-shadow: none;
}

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

.woocommerce-account .woocommerce form label {
    display: block;
    margin-bottom: 8px;
    color: #444;
    font-family: var(--cv-font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1.4;
}

.woocommerce-account .woocommerce form .input-text {
    width: 100%;
    box-sizing: border-box;
    min-height: 52px;
    padding: 14px 16px;
    border: 1px solid #d2d2d2;
    border-radius: 0;
    background: #fff;
    color: #1a1a1a;
    font-family: var(--cv-font-body);
    font-size: 15px;
    line-height: 1.5;
    box-shadow: none;
    transition: border-color .15s ease;
}

.woocommerce-account .woocommerce form .input-text:focus {
    outline: none;
    border-color: #000;
}

/* Password show/hide toggle stays inside the field */
.woocommerce-account .woocommerce form .password-input {
    display: block;
    position: relative;
}

.woocommerce-account .woocommerce form .show-password-input {
    position: absolute;
    top: 50%;
    right: 14px;
    transform: translateY(-50%);
}

/* Square, uppercase brand button — matches .cv-button / header BUY NOW. */
.woocommerce-account .woocommerce button.button,
.woocommerce-account .woocommerce input.button,
.woocommerce-account .woocommerce .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 14px 32px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: #000 !important;
    color: #fff !important;
    font-family: var(--cv-font-accent) !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    line-height: 1 !important;
    cursor: pointer;
    transition: background-color .2s ease;
}

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

/* Login submit row: button + remember me on one tidy line */
.woocommerce-account .woocommerce form.login .form-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
}

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

.woocommerce-account .woocommerce .woocommerce-form-login__rememberme input {
    width: 16px;
    height: 16px;
    accent-color: #1a1a1a;
}

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

.woocommerce-account .woocommerce-LostPassword a {
    color: #1a1a1a;
    font-size: 14px;
    font-weight: 600;
    text-decoration: underline;
}

.woocommerce-account .woocommerce form.register p {
    margin: 0 0 18px;
    color: #5a5a5a;
    font-size: 14px;
    line-height: 1.6;
}

.woocommerce-account .woocommerce form.register p:last-of-type {
    margin-bottom: 22px;
}

/* ── Logged-in dashboard ── */
.woocommerce-account .woocommerce-MyAccount-navigation ul {
    margin: 0;
    padding: 0;
    list-style: none;
    border: 1px solid #e2e2e2;
    border-radius: 0;
    overflow: hidden;
}

.woocommerce-account .woocommerce-MyAccount-navigation li {
    margin: 0;
    border-bottom: 1px solid #f0f0f0;
}

.woocommerce-account .woocommerce-MyAccount-navigation li:last-child {
    border-bottom: 0;
}

.woocommerce-account .woocommerce-MyAccount-navigation li a {
    display: block;
    padding: 13px 18px;
    color: #444;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: background-color .12s ease, color .12s ease;
}

.woocommerce-account .woocommerce-MyAccount-navigation li a:hover {
    background: #f7f6f3;
    color: #1a1a1a;
}

.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a {
    background: #1a1a1a;
    color: #fff;
    font-weight: 600;
}

.woocommerce-account .woocommerce-MyAccount-content {
    color: #333;
    font-size: 15px;
    line-height: 1.6;
}

.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 #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 {
    background: #f7f7f7;
    color: #4a4a4a;
    font-family: var(--cv-font-body, 'Inter', system-ui, sans-serif);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.cv-footer__grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr 1.4fr;
    align-items: start;
    gap: clamp(32px, 4vw, 64px);
    max-width: 1280px;
    margin: 0 auto;
    padding: clamp(56px, 7vw, 80px) clamp(24px, 5vw, 48px) 48px;
}

/* Brand column with locale */
.cv-footer__brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 320px;
}

.cv-footer__wordmark {
    display: inline-block;
    width: 140px;
    line-height: 0;
}

.cv-footer__wordmark img {
    width: 100%;
    height: auto;
    display: block;
}

.cv-footer__tagline {
    margin: 0;
    color: #6a6a6a;
    font-size: 14px;
    line-height: 1.7;
}

/* Locale block — replaces the small chip with a more prominent shipping-to widget */
.cv-footer__locale-block {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
    padding: 14px 16px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: #1a1a1a;
    font-family: inherit;
    text-align: left;
    cursor: pointer;
    transition: border-color .15s ease, background .15s ease, transform .15s ease;
}

.cv-footer__locale-block:hover {
    border-color: rgba(0, 0, 0, 0.32);
    background: #fafaf8;
}

.cv-footer__locale-label {
    color: #8a8a8a;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.cv-footer__locale-row {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    line-height: 1.2;
    width: 100%;
}

.cv-footer__locale-flag {
    font-size: 16px;
    line-height: 1;
}

.cv-footer__locale-name {
    color: #0a0a0a;
    font-weight: 600;
}

.cv-footer__locale-meta {
    color: #8a8a8a;
    font-weight: 500;
    margin-left: auto;
    font-size: 12px;
}

.cv-footer__locale-caret {
    width: 12px;
    height: 12px;
    color: #8a8a8a;
    flex-shrink: 0;
    transition: transform .15s ease;
}

.cv-footer__locale-block:hover .cv-footer__locale-caret {
    transform: translateY(2px);
    color: #0a0a0a;
}

/* Link columns */
.cv-footer__col {
    display: flex;
    flex-direction: column;
}

.cv-footer h3 {
    margin: 0 0 18px;
    padding: 0;
    color: #0a0a0a;
    font-family: var(--cv-font-accent, var(--cv-font-body, 'Inter', system-ui, sans-serif));
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.cv-footer__col a,
.cv-footer a {
    display: block;
    margin: 0 0 12px;
    color: #6a6a6a;
    font-family: var(--cv-font-body, 'Inter', system-ui, sans-serif);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    text-decoration: none;
    transition: color .15s ease;
}

.cv-footer__col a:last-child {
    margin-bottom: 0;
}

.cv-footer__col a:hover,
.cv-footer a:hover {
    color: #0a0a0a;
}

/* Newsletter column */
.cv-footer__col--news p {
    margin: 0 0 18px;
    color: #8a8a8a;
    font-size: 13px;
    line-height: 1.65;
}

/* Bottom bar — 3-column: copyright (left) · socials (centre) · locale (right).
   The bar's content is centered within a 1280px max-width, but its background
   bleeds full-viewport-width via the box-shadow/clip-path trick so the colour
   strip runs edge-to-edge. */
.cv-footer__bar {
    width: 100%;
    padding: 20px clamp(24px, 5vw, 48px);
    background: #eeeeee;
    box-shadow: 0 0 0 100vmax #eeeeee;
    clip-path: inset(0 -100vmax);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    color: #8a8a8a;
    font-family: var(--cv-font-body, 'Inter', system-ui, sans-serif);
    font-size: 12px;
    line-height: 1.5;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
}

.cv-footer__copy {
    color: #8a8a8a;
    letter-spacing: 0.01em;
    grid-column: 1;
    justify-self: start;
}

.cv-footer__social {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    grid-column: 2;
    justify-self: center;
}

/* Locale chip (right side of the bar) — matches the original lozenge style:
   white pill with rounded-corner border, flag · country · language · currency,
   small caret on the right. */
.cv-footer__locale {
    grid-column: 3;
    justify-self: end;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 16px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 8px;
    color: #1a1a1a;
    font-family: inherit;
    font-size: 13px;
    line-height: 1;
    cursor: pointer;
    transition: border-color .15s ease, background .15s ease, transform .15s ease;
}

.cv-footer__locale:hover {
    border-color: rgba(0, 0, 0, 0.32);
    background: #fafaf8;
}

.cv-footer__locale .cv-footer__locale-flag {
    font-size: 15px;
    line-height: 1;
}

.cv-footer__locale-text {
    color: #1a1a1a;
    font-weight: 500;
}

.cv-footer__locale-text .sep {
    color: #c0c0c0;
    margin: 0 6px;
}

.cv-footer__locale .cv-footer__locale-caret {
    width: 12px;
    height: 12px;
    color: #8a8a8a;
    flex-shrink: 0;
    transition: transform .15s ease;
}

.cv-footer__locale:hover .cv-footer__locale-caret {
    transform: translateY(2px);
    color: #0a0a0a;
}

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

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

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

/* Mobile */
@media (max-width: 960px) {
    .cv-footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px 32px;
    }
    .cv-footer__brand {
        grid-column: 1 / -1;
    }
    .cv-footer__col--news {
        grid-column: 1 / -1;
    }
}

@media (max-width: 560px) {
    .cv-footer__grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .cv-footer__bar {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .cv-footer__copy,
    .cv-footer__social,
    .cv-footer__locale {
        grid-column: 1;
        justify-self: start;
    }
}

.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 [class*="fluentform_wrapper_"] {
    width: 100%;
    margin: 0;
    padding: 0;
    background: transparent;
}

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

.cv-footer .ff-el-group {
    margin: 0 0 10px;
}

.cv-footer .ff-t-container {
    display: flex !important;
    gap: 10px !important;
}

.cv-footer .ff-t-container .ff-t-cell {
    flex: 1 1 0 !important;
    min-width: 0;
}

.cv-footer input[type="text"],
.cv-footer input[type="email"],
.cv-footer .ff-el-form-control {
    width: 100% !important;
    height: 40px !important;
    padding: 8px 12px !important;
    border: 1.5px solid rgba(0, 0, 0, 0.12) !important;
    border-radius: 0 !important;
    background: #fff !important;
    color: #1a1a1a !important;
    font-family: var(--cv-font-body, 'Inter', system-ui, sans-serif) !important;
    font-size: 13px !important;
    line-height: 1.4;
    box-shadow: none !important;
    outline: none !important;
    transition: border-color .15s ease;
}

.cv-footer input:focus,
.cv-footer .ff-el-form-control:focus {
    border-color: #0a0a0a !important;
}

.cv-footer input::placeholder {
    color: #a8a8a8;
}

.cv-footer .ff-btn-submit,
.cv-footer button[type="submit"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 22px !important;
    margin-top: 6px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: #0a0a0a !important;
    color: #fff !important;
    font-family: var(--cv-font-accent, 'Inter', system-ui, sans-serif) !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    cursor: pointer;
    transition: background .15s ease, opacity .15s ease;
}

.cv-footer .ff-btn-submit:hover,
.cv-footer button[type="submit"]:hover {
    background: #1a1a1a !important;
    opacity: 1;
}

/* Hide the FF "powered by" / extra noise in the footer form */
.cv-footer .ff-el-group.ff_submit_btn_wrapper {
    margin-top: 4px;
}

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

    .cv-header__inner {
        width: 100%;
        padding: 0 24px;
        grid-template-columns: auto 1fr auto;
    }

    .cv-nav {
        display: none;
    }

    .cv-header__actions {
        grid-column: 2;
        justify-self: end;
    }

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

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

    .cv-menu-toggle {
        display: block;
        grid-column: 3;
        margin-left: 4px;
    }

    .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 {
        padding: 64px 28px 48px;
    }

    .cv-contact-hero__inner {
        grid-template-columns: 1fr;
        gap: 28px;
        align-items: start;
    }

    .cv-contact-grid__inner {
        grid-template-columns: 1fr;
        gap: 48px;
        padding: 56px 28px;
    }

    .cv-contact-quicklinks__head {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        margin-bottom: 32px;
    }

    .cv-contact-quicklinks__grid {
        grid-template-columns: 1fr;
    }

    .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: 44px;
    }

    .cv-contact-hero__copy p {
        font-size: 15px;
    }

    .cv-contact-aside__title {
        font-size: 24px;
    }

    .cv-contact-quicklink {
        padding: 24px;
    }

    .cv-contact-faq__inner h2,
    .cv-contact-quicklinks__head h2 {
        font-size: 26px;
    }

    .woocommerce-account .cv-account-hero {
        min-height: 0;
        padding: 40px 0 28px;
    }

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

    .cv-account-hero__sub {
        font-size: 15px;
    }

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

    .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 - 40px) !important;
        max-width: calc(100vw - 40px) !important;
        margin-right: auto !important;
        margin-left: auto !important;
    }

    /* Stack Login / Register on small screens */
    .woocommerce-account .woocommerce .u-columns.col2-set {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    .woocommerce-account .woocommerce h2 {
        margin-bottom: 14px;
        font-size: 20px;
    }

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

    .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;
    }
}

/* ─────────────────────────────────────────────── locale picker (pill + modal + welcome banner) */

.cv-header__actions {
    grid-column: 3;
    justify-self: end;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

/* Square icon button in the header (account, cart). Matches the locale pill height. */
.cv-header-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(0, 0, 0, .12);
    background: #fff;
    color: #111;
    transition: border-color .15s ease, background-color .15s ease;
}

.cv-header-icon:hover {
    border-color: rgba(0, 0, 0, .35);
    background: #fafafa;
}

.cv-header-icon svg {
    width: 18px;
    height: 18px;
    display: block;
}

.cv-locale-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 36px;
    background: transparent;
    border: 1px solid rgba(0, 0, 0, .12);
    padding: 0 14px;
    color: #383838;
    font-family: var(--cv-font-nav);
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
    cursor: pointer;
    transition: border-color .15s ease, color .15s ease, background-color .15s ease;
}

.cv-locale-pill:hover {
    border-color: #000;
    color: #000;
}

.cv-locale-pill__flag {
    font-size: 14px;
    line-height: 1;
}

.cv-locale-pill__code {
    font-weight: 600;
    letter-spacing: .02em;
}

.cv-locale-pill__sep {
    color: rgba(0, 0, 0, .25);
}

.cv-locale-pill__lang {
    font-weight: 600;
    letter-spacing: .04em;
}

.cv-locale-pill__chev {
    width: 8px;
    height: 8px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg);
    margin-left: 2px;
    margin-top: -3px;
}

/* Modal */

.cv-locale-modal {
    position: fixed;
    inset: 0;
    z-index: 100000;
    background: rgba(17, 17, 16, .48);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .22s ease;
}

.cv-locale-modal[hidden] {
    display: flex;
}

.cv-locale-modal.is-open {
    opacity: 1;
    pointer-events: auto;
}

.cv-locale-modal__panel {
    background: #fff;
    width: 100%;
    max-width: 560px;
    max-height: 92vh;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, .08);
    box-shadow: 0 28px 64px rgba(0, 0, 0, .18);
    transform: translateY(20px);
    opacity: 0;
    transition: transform .28s ease, opacity .28s ease;
    overflow: hidden;
    font-family: var(--cv-font-body);
}

.cv-locale-modal.is-open .cv-locale-modal__panel {
    transform: translateY(0);
    opacity: 1;
}

.cv-locale-modal__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 28px 32px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, .08);
}

.cv-locale-modal__head h3 {
    margin: 0 0 4px;
    font-family: var(--cv-font-accent);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.005em;
    color: #000;
}

.cv-locale-modal__head p {
    margin: 0;
    color: rgba(0, 0, 0, .56);
    font-size: 13px;
    line-height: 1.6;
}

.cv-locale-modal__close {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border: 0;
    background: transparent;
    color: rgba(0, 0, 0, .5);
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    transition: color .15s ease;
}

.cv-locale-modal__close:hover {
    color: #000;
}

.cv-locale-modal__body {
    padding: 8px 32px 20px;
    overflow-y: auto;
    flex: 1;
}

.cv-locale-modal__section {
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 0, 0, .08);
}

.cv-locale-modal__section:last-child {
    border-bottom: 0;
}

.cv-locale-modal__section-label {
    margin-bottom: 14px;
    color: rgba(0, 0, 0, .54);
    font-family: var(--cv-font-nav);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.cv-locale-modal__list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cv-locale-option[hidden] {
    display: none !important;
}

.cv-locale-option {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    padding: 12px 14px;
    background: #fff;
    border: 1px solid transparent;
    color: inherit;
    text-align: left;
    cursor: pointer;
    transition: background-color .15s ease, border-color .15s ease;
}

.cv-locale-option:hover {
    background: #f7f6f3;
}

.cv-locale-option.is-selected {
    border-color: #000;
    background: #fff;
}

.cv-locale-option__flag {
    font-size: 22px;
    line-height: 1;
    width: 26px;
    text-align: center;
    flex-shrink: 0;
}

.cv-locale-option__lang-code {
    width: 26px;
    flex-shrink: 0;
    color: rgba(0, 0, 0, .56);
    font-family: var(--cv-font-accent);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .04em;
    text-align: center;
}

.cv-locale-option__info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 0;
}

.cv-locale-option__name {
    color: #000;
    font-family: var(--cv-font-body);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.3;
}

.cv-locale-option__meta {
    color: rgba(0, 0, 0, .54);
    font-size: 12px;
    line-height: 1.4;
}

/* Coming-soon countries (UK, EU, AU, Global) — slightly muted so the visual
   priority lands on shipping regions (CA, US). The meta line picks up a
   warm accent color so the "Coming soon — notify me" string reads as a
   benefit, not a dead end. */
.cv-locale-option.is-coming-soon .cv-locale-option__name {
    color: rgba(0, 0, 0, .72);
}
.cv-locale-option.is-coming-soon .cv-locale-option__meta {
    color: #a8896a;
    font-weight: 600;
}

.cv-locale-option__check {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1.5px solid rgba(0, 0, 0, .22);
    background: #fff;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color .15s ease, background-color .15s ease;
}

.cv-locale-option.is-selected .cv-locale-option__check {
    border-color: #000;
    background: #000;
}

.cv-locale-option.is-selected .cv-locale-option__check::after {
    content: "";
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
}

.cv-locale-modal__foot {
    padding: 20px 32px;
    background: #f8f7f5;
    border-top: 1px solid rgba(0, 0, 0, .08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.cv-locale-modal__note {
    margin: 0;
    color: rgba(0, 0, 0, .54);
    font-size: 12px;
    line-height: 1.5;
    max-width: 320px;
}

.cv-locale-modal__apply {
    flex-shrink: 0;
    border: 0;
    background: #000;
    color: #fff;
    font-family: var(--cv-font-accent);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .04em;
    padding: 14px 30px;
    cursor: pointer;
    transition: background-color .15s ease, opacity .15s ease;
}

.cv-locale-modal__apply:hover {
    background: #222;
}

.cv-locale-modal__apply:disabled {
    opacity: .5;
    cursor: not-allowed;
}

/* Welcome banner */

.cv-locale-welcome {
    position: fixed;
    bottom: 24px;
    left: 50%;
    z-index: 9999;
    transform: translateX(-50%) translateY(180%);
    width: calc(100% - 32px);
    max-width: 560px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .08);
    box-shadow: 0 18px 36px rgba(0, 0, 0, .14);
    padding: 16px 18px;
    display: flex;
    align-items: center;
    gap: 16px;
    font-family: var(--cv-font-body);
    transition: transform .4s cubic-bezier(.2, .8, .2, 1);
}

.cv-locale-welcome[hidden] {
    display: flex;
}

.cv-locale-welcome.is-visible {
    transform: translateX(-50%) translateY(0);
}

.cv-locale-welcome__flag {
    font-size: 26px;
    line-height: 1;
    flex-shrink: 0;
}

.cv-locale-welcome__msg {
    flex: 1;
    min-width: 0;
    color: rgba(0, 0, 0, .68);
    font-size: 13px;
    line-height: 1.5;
}

.cv-locale-welcome__msg strong {
    display: block;
    margin-bottom: 2px;
    color: #000;
    font-weight: 600;
}

.cv-locale-welcome__actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.cv-locale-welcome__yes,
.cv-locale-welcome__no {
    font-family: var(--cv-font-accent);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .04em;
    padding: 10px 14px;
    cursor: pointer;
    transition: background-color .15s ease, border-color .15s ease, color .15s ease;
}

.cv-locale-welcome__yes {
    background: #000;
    color: #fff;
    border: 1px solid #000;
}

.cv-locale-welcome__yes:hover {
    background: #222;
}

.cv-locale-welcome__no {
    background: transparent;
    color: rgba(0, 0, 0, .68);
    border: 1px solid rgba(0, 0, 0, .15);
}

.cv-locale-welcome__no:hover {
    border-color: #000;
    color: #000;
}

@media (max-width: 720px) {
    .cv-locale-pill {
        padding: 6px 10px;
        font-size: 11px;
    }

    .cv-locale-pill__sep,
    .cv-locale-pill__lang {
        display: none;
    }

    .cv-locale-modal__head,
    .cv-locale-modal__body,
    .cv-locale-modal__foot {
        padding-left: 22px;
        padding-right: 22px;
    }

    .cv-locale-welcome {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        padding: 14px 16px 16px;
    }

    .cv-locale-welcome__actions {
        justify-content: center;
    }
}

/* ─────────────────────────────────────────────── main page: product feature */

.cv-pf {
    background: #fff;
    padding: clamp(72px, 9vw, 140px) clamp(24px, 5vw, 64px);
    color: #111;
}

.cv-pf__grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 5vw, 96px);
    align-items: center;
}

.cv-pf__img {
    aspect-ratio: 1 / 1;
    background: #f7f6f3;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cv-pf__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cv-pf__text { max-width: 520px; }

.cv-pf__tag {
    font-family: var(--cv-font-nav, 'Outfit', system-ui, sans-serif);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #8c8a82;
    margin-bottom: 18px;
}

.cv-pf__title {
    font-family: var(--cv-font-accent, 'Outfit', system-ui, sans-serif);
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.05;
    color: #111;
    margin: 0 0 18px;
}

.cv-pf__desc {
    font-size: 15px;
    line-height: 1.7;
    color: #555450;
    margin: 0 0 28px;
}

.cv-pf__points {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}

.cv-pf__points li {
    position: relative;
    padding: 14px 0 14px 32px;
    border-top: 1px solid #ececea;
    font-size: 14px;
    color: #2a2a28;
}

.cv-pf__points li:last-child { border-bottom: 1px solid #ececea; }

.cv-pf__points li::before {
    content: "—";
    position: absolute;
    left: 0;
    top: 14px;
    color: #111;
    font-weight: 600;
}

.cv-pf__price-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 24px;
}

.cv-pf__price {
    font-family: var(--cv-font-accent, 'Outfit', system-ui, sans-serif);
    font-size: 32px;
    font-weight: 700;
    color: #111;
    letter-spacing: -0.01em;
}

.cv-pf__price-currency {
    font-size: 13px;
    color: #8c8a82;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Coming-soon variant — used in place of the price row for visitors whose
   region isn't shipping yet (UK / EU / AU / Global). The slim badge keeps
   the layout rhythm close to the price row so the CTA underneath sits at the
   same vertical position regardless of which variant renders. */
.cv-pf__coming-soon {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 24px;
}

.cv-pf__coming-soon-badge {
    align-self: flex-start;
    padding: 4px 10px;
    border: 1px solid #d6d3c8;
    border-radius: 999px;
    background: #f7f5ee;
    color: #6f6a5a;
    font-family: var(--cv-font-accent, 'Outfit', system-ui, sans-serif);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.cv-pf__coming-soon-msg {
    font-size: 14px;
    color: #6f6a5a;
    line-height: 1.45;
}

/* Slight visual softening for the bottom CTA when we're in coming-soon
   mode — same component, calmer eyebrow color to match the messaging. */
.cv-final-cta--coming-soon .cv-final-cta__eyebrow {
    color: #6f6a5a;
}

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

.cv-pf__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    padding: 0 28px;
    font-family: var(--cv-font-accent, 'Outfit', system-ui, sans-serif);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-decoration: none;
    transition: opacity .15s ease, border-color .15s ease, color .15s ease, background-color .15s ease;
}

.cv-pf__btn--primary {
    background: #111;
    color: #fff !important;
    border: 1px solid #111;
}

.cv-pf__btn--primary:hover { opacity: .88; }

.cv-pf__btn--ghost {
    background: transparent;
    color: #111 !important;
    border: 1px solid #d8d6cf;
}

.cv-pf__btn--ghost:hover { border-color: #111; }

/* ─────────────────────────────────────────────── main page: testimonials */

.cv-testimonials {
    background: #f7f6f3;
    padding: clamp(72px, 9vw, 140px) clamp(24px, 5vw, 64px);
    color: #111;
}

.cv-testimonials__inner {
    max-width: 1280px;
    margin: 0 auto;
}

.cv-testimonials__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 56px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e0ddd5;
}

.cv-testimonials__eyebrow {
    font-family: var(--cv-font-nav, 'Outfit', system-ui, sans-serif);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #8c8a82;
    margin-bottom: 12px;
}

.cv-testimonials__title {
    font-family: var(--cv-font-accent, 'Outfit', system-ui, sans-serif);
    font-size: clamp(32px, 3.6vw, 48px);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.1;
    color: #111;
    margin: 0;
}

.cv-testimonials__avg {
    text-align: right;
    flex-shrink: 0;
}

.cv-testimonials__avg-num {
    font-family: var(--cv-font-accent, 'Outfit', system-ui, sans-serif);
    font-size: 40px;
    font-weight: 700;
    color: #111;
    line-height: 1;
}

.cv-testimonials__avg-stars {
    color: #111;
    letter-spacing: 4px;
    font-size: 16px;
    margin-top: 4px;
}

.cv-testimonials__avg-sub {
    font-size: 12px;
    color: #8c8a82;
    margin-top: 6px;
}

.cv-testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.cv-test-card {
    background: #fff;
    border: 1px solid #ececea;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.cv-test-card__stars {
    color: #111;
    letter-spacing: 3px;
    font-size: 14px;
}

.cv-test-card__quote {
    font-size: 15px;
    line-height: 1.7;
    font-style: italic;
    color: #2a2a28;
    margin: 0;
}

.cv-test-card__author {
    margin-top: auto;
    padding-top: 22px;
    border-top: 1px solid #f0eee8;
    display: flex;
    align-items: center;
    gap: 14px;
}

.cv-test-card__avatar {
    width: 40px;
    height: 40px;
    background: #ececea;
    color: #111;
    font-family: var(--cv-font-accent, 'Outfit', system-ui, sans-serif);
    font-size: 13px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.06em;
}

.cv-test-card__name {
    font-size: 14px;
    font-weight: 600;
    color: #111;
    line-height: 1.2;
}

.cv-test-card__loc {
    font-size: 12px;
    color: #8c8a82;
    margin-top: 3px;
}

/* ─────────────────────────────────────────────── main page: final CTA */

.cv-final-cta {
    background: #fff;
    padding: clamp(80px, 10vw, 160px) clamp(24px, 5vw, 64px);
    text-align: center;
    color: #111;
}

.cv-final-cta__eyebrow {
    font-family: var(--cv-font-nav, 'Outfit', system-ui, sans-serif);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #8c8a82;
    margin-bottom: 24px;
}

.cv-final-cta__title {
    font-family: var(--cv-font-accent, 'Outfit', system-ui, sans-serif);
    font-size: clamp(48px, 6vw, 96px);
    font-weight: 700;
    letter-spacing: -0.035em;
    line-height: 0.98;
    color: #111;
    margin: 0 auto 28px;
    max-width: 1000px;
}

.cv-final-cta__copy {
    font-size: 16px;
    line-height: 1.7;
    color: #555450;
    max-width: 560px;
    margin: 0 auto 40px;
}

.cv-final-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 56px;
    padding: 0 48px;
    background: #111;
    color: #fff !important;
    font-family: var(--cv-font-accent, 'Outfit', system-ui, sans-serif);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-decoration: none;
    transition: opacity .15s ease;
}

.cv-final-cta__btn:hover { opacity: .88; }

.cv-final-cta__meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 28px;
    font-size: 13px;
    color: #8c8a82;
}

.cv-final-cta__meta span[aria-hidden="true"] {
    color: #c0bdb5;
}

/* ─────────────────────────────────────────────── responsive */

@media (max-width: 900px) {
    .cv-pf__grid { grid-template-columns: 1fr; }
    .cv-pf__img { max-width: 100%; }
    .cv-testimonials__head { flex-direction: column; align-items: flex-start; }
    .cv-testimonials__avg { text-align: left; }
    .cv-testimonials__grid { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────────── main page: big statement */

.cv-statement {
    background: #0b0b0b;
    color: #fff;
    padding: clamp(80px, 11vw, 160px) clamp(24px, 5vw, 64px);
    text-align: center;
}

.cv-statement__inner {
    max-width: 1100px;
    margin: 0 auto;
}

.cv-statement__title {
    font-family: var(--cv-font-accent, 'Outfit', system-ui, sans-serif);
    font-size: clamp(40px, 5.5vw, 88px);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.05;
    color: #fff !important;
    margin: 0 auto 28px;
    text-wrap: balance;
}

.cv-statement__copy {
    font-size: 16px;
    line-height: 1.75;
    color: rgba(255, 255, 255, .65) !important;
    max-width: 620px;
    margin: 0 auto 40px;
}

.cv-statement__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    padding: 0 32px;
    background: #fff;
    color: #111 !important;
    font-family: var(--cv-font-accent, 'Outfit', system-ui, sans-serif);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: opacity .15s ease, transform .15s ease;
}

.cv-statement__btn:hover {
    opacity: .9;
    transform: translateY(-1px);
}

/* About page copied from the example site and adapted for the live ClearVyzr theme. */
.cv-about-hero {
    padding: clamp(74px, 7.4vw, 142px) 48px clamp(62px, 5.4vw, 104px);
    border-bottom: 1px solid rgba(0, 0, 0, .08);
    background: #fff;
}

.cv-about-hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 1.18fr);
    align-items: end;
    gap: clamp(42px, 5vw, 96px);
    max-width: 1100px;
    margin: 0 auto;
}

.cv-about-eyebrow {
    margin: 0 0 18px;
    color: rgba(0, 0, 0, .46);
    font-family: var(--cv-font-body);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.cv-about-hero h1,
.cv-about-section-head h2,
.cv-about-story h2,
.cv-about-numbers h2,
.cv-about-origin h2,
.cv-about-cta h2 {
    margin: 0;
    color: #000;
    font-family: var(--cv-font-body);
    font-weight: 700;
    letter-spacing: -.035em;
}

.cv-about-hero h1 {
    font-size: clamp(48px, 5.6vw, 84px);
    line-height: .98;
}

.cv-about-hero__copy p {
    max-width: 500px;
    margin: 0;
    color: rgba(0, 0, 0, .62);
    font-size: 17px;
    line-height: 1.78;
}

.cv-about-lead-image {
    aspect-ratio: 16 / 7;
    overflow: hidden;
    border-bottom: 1px solid rgba(0, 0, 0, .08);
    background: #f5f5f5;
}

.cv-about-lead-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cv-about-story,
.cv-about-founder {
    max-width: 880px;
    margin: 0 auto;
    padding: clamp(72px, 7vw, 110px) 48px;
    border-bottom: 1px solid rgba(0, 0, 0, .08);
}

.cv-about-story h2 {
    margin-bottom: 30px;
    font-size: clamp(34px, 3.2vw, 44px);
    line-height: 1.1;
}

.cv-about-story p {
    margin: 0 0 24px;
    color: rgba(0, 0, 0, .63);
    font-size: 17px;
    line-height: 1.86;
}

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

.cv-about-story strong {
    color: #242424;
    font-weight: 600;
}

.cv-about-story__pullquote {
    margin: 18px 0 24px;
    padding: 32px 0;
    border-top: 1px solid rgba(0, 0, 0, .10);
    border-bottom: 1px solid rgba(0, 0, 0, .10);
    color: #000;
    font-family: var(--cv-font-body);
    font-size: clamp(25px, 2.4vw, 32px);
    font-weight: 600;
    line-height: 1.28;
    letter-spacing: -.02em;
}

.cv-about-principles {
    padding: clamp(74px, 7.1vw, 112px) 48px;
    border-bottom: 1px solid rgba(0, 0, 0, .08);
    background: #f7f7f7;
}

.cv-about-principles__inner,
.cv-about-numbers__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.cv-about-section-head--split {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 48px;
    margin-bottom: clamp(42px, 4.3vw, 64px);
}

.cv-about-section-head h2,
.cv-about-numbers h2 {
    font-size: clamp(34px, 3.2vw, 44px);
    line-height: 1.05;
}

.cv-about-section-head p {
    max-width: 370px;
    margin: 0 0 6px;
    color: rgba(0, 0, 0, .58);
    font-size: 15px;
    line-height: 1.75;
}

.cv-about-principles__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, .08);
    background: rgba(0, 0, 0, .08);
}

.cv-about-principle-card {
    min-height: 280px;
    padding: 40px 32px;
    background: #fff;
}

.cv-about-principle-card__num {
    margin-bottom: 23px;
    color: rgba(0, 0, 0, .42);
    font-family: var(--cv-font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .1em;
    line-height: 1.2;
    text-transform: uppercase;
}

.cv-about-principle-card h3 {
    margin: 0 0 14px;
    color: #000;
    font-family: var(--cv-font-body);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.22;
    letter-spacing: -.018em;
}

.cv-about-principle-card p {
    margin: 0;
    color: rgba(0, 0, 0, .52);
    font-size: 14px;
    line-height: 1.82;
}

.cv-about-numbers {
    padding: clamp(74px, 7.1vw, 112px) 48px;
    border-bottom: 1px solid rgba(0, 0, 0, .08);
    background: #fff;
}

.cv-about-numbers h2 {
    margin-bottom: clamp(42px, 4.2vw, 62px);
}

.cv-about-numbers__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid rgba(0, 0, 0, .12);
}

.cv-about-number-cell {
    padding: 40px 32px;
    border-right: 1px solid rgba(0, 0, 0, .10);
}

.cv-about-number-cell:first-child {
    padding-left: 0;
}

.cv-about-number-cell:last-child {
    padding-right: 0;
    border-right: 0;
}

.cv-about-number-cell__value {
    margin-bottom: 11px;
    color: #000;
    font-family: var(--cv-font-body);
    font-size: clamp(46px, 4.7vw, 64px);
    font-weight: 700;
    line-height: .95;
    letter-spacing: -.04em;
}

.cv-about-number-cell__value span {
    color: rgba(0, 0, 0, .46);
    font-size: .44em;
    letter-spacing: -.02em;
}

.cv-about-number-cell__label {
    color: rgba(0, 0, 0, .52);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .1em;
    line-height: 1.25;
    text-transform: uppercase;
}

.cv-about-number-cell p {
    margin: 8px 0 0;
    color: rgba(0, 0, 0, .61);
    font-size: 13px;
    line-height: 1.7;
}

.cv-about-origin {
    padding: clamp(84px, 8vw, 128px) 48px;
    border-bottom: 1px solid rgba(0, 0, 0, .08);
    background: #000;
    color: #fff;
}

.cv-about-origin__inner {
    display: grid;
    grid-template-columns: minmax(280px, 1fr) minmax(360px, 1.4fr);
    align-items: center;
    gap: clamp(48px, 5vw, 92px);
    max-width: 1100px;
    margin: 0 auto;
}

.cv-about-origin .cv-about-eyebrow {
    color: rgba(255, 255, 255, .48);
}

.cv-about-origin h2 {
    margin-bottom: 24px;
    color: #fff;
    font-size: clamp(42px, 4.2vw, 56px);
    line-height: 1.02;
}

.cv-about-origin p {
    max-width: 380px;
    margin: 0;
    color: rgba(255, 255, 255, .62);
    font-size: 15px;
    line-height: 1.82;
}

.cv-about-origin__mark {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 4 / 3;
    border: 1px solid rgba(255, 255, 255, .10);
    background: rgba(255, 255, 255, .04);
}

.cv-about-origin__mark svg {
    width: 60%;
    height: 60%;
    fill: none;
    stroke: rgba(255, 255, 255, .52);
    stroke-width: 1;
}

.cv-about-founder .cv-about-eyebrow {
    margin-bottom: 14px;
}

.cv-about-founder__quote {
    margin: 0 0 32px;
    color: #000;
    font-family: var(--cv-font-body);
    font-size: clamp(23px, 2.1vw, 28px);
    font-weight: 500;
    line-height: 1.42;
    letter-spacing: -.018em;
}

.cv-about-founder__author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cv-about-founder__avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border: 1px solid rgba(0, 0, 0, .10);
    background: #f5f5f5;
    color: #000;
    font-family: var(--cv-font-body);
    font-size: 18px;
    font-weight: 700;
}

.cv-about-founder__name {
    color: #000;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.25;
}

.cv-about-founder__role {
    margin-top: 3px;
    color: rgba(0, 0, 0, .48);
    font-size: 13px;
    line-height: 1.35;
}

.cv-about-cta {
    padding: clamp(86px, 8vw, 128px) 48px;
    text-align: center;
    background: #fff;
}

.cv-about-cta .cv-about-eyebrow {
    margin-bottom: 16px;
}

.cv-about-cta h2 {
    margin-bottom: 20px;
    font-size: clamp(44px, 5vw, 72px);
    line-height: 1.05;
}

.cv-about-cta p {
    max-width: 470px;
    margin: 0 auto 36px;
    color: rgba(0, 0, 0, .62);
    font-size: 16px;
    line-height: 1.72;
}

.cv-about-cta__actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.cv-about-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 28px;
    border: 1px solid #000;
    font-family: var(--cv-font-accent);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .14em;
    line-height: 1;
    text-transform: uppercase;
    transition: background-color .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}

.cv-about-button:hover {
    transform: translateY(-1px);
}

.cv-about-button--primary {
    background: #070000;
    color: #fff;
}

.cv-about-button--secondary {
    background: #fff;
    color: #000;
}

.cv-about-button--secondary:hover {
    background: #000;
    color: #fff;
}

@media (max-width: 980px) {
    .cv-about-hero,
    .cv-about-principles,
    .cv-about-numbers,
    .cv-about-origin,
    .cv-about-cta {
        padding-left: 28px;
        padding-right: 28px;
    }

    .cv-about-hero__inner,
    .cv-about-origin__inner {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .cv-about-section-head--split {
        display: block;
    }

    .cv-about-section-head p {
        max-width: 620px;
        margin-top: 24px;
    }

    .cv-about-principles__grid,
    .cv-about-numbers__grid {
        grid-template-columns: 1fr 1fr;
    }

    .cv-about-number-cell:nth-child(2) {
        border-right: 0;
    }

    .cv-about-number-cell:nth-child(n + 3) {
        border-top: 1px solid rgba(0, 0, 0, .10);
    }

    .cv-about-number-cell:nth-child(3) {
        padding-left: 0;
    }
}

@media (max-width: 680px) {
    .cv-about-hero,
    .cv-about-story,
    .cv-about-principles,
    .cv-about-numbers,
    .cv-about-origin,
    .cv-about-founder,
    .cv-about-cta {
        padding-left: 22px;
        padding-right: 22px;
    }

    .cv-about-lead-image {
        aspect-ratio: 4 / 3;
    }

    .cv-about-principles__grid,
    .cv-about-numbers__grid {
        grid-template-columns: 1fr;
    }

    .cv-about-principle-card {
        min-height: 0;
        padding: 32px 26px;
    }

    .cv-about-number-cell,
    .cv-about-number-cell:first-child,
    .cv-about-number-cell:last-child,
    .cv-about-number-cell:nth-child(3) {
        padding: 30px 0;
        border-right: 0;
        border-top: 1px solid rgba(0, 0, 0, .10);
    }

    .cv-about-number-cell:first-child {
        border-top: 0;
    }

    .cv-about-origin__mark {
        min-height: 260px;
    }

    .cv-about-button {
        width: 100%;
    }
}

/* ============================================================
   Animated scroll hint on the homepage hero
   Positioned in the upper portion of the viewport (below the header)
   so it stays clear of the helmet 3D scene in the lower half.
   ============================================================ */
.cv-scroll-hint {
    position: fixed;
    left: 50%;
    top: calc(var(--cv-header-h, 66px) + 28px);
    transform: translateX(-50%);
    z-index: 60;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    opacity: 1;
    pointer-events: none;
    transition: opacity .35s ease, transform .35s ease;
    /* Soft halo so the hint stays readable over the grey helmet gradient */
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.25))
            drop-shadow(0 0 12px rgba(0, 0, 0, 0.15));
}

.cv-scroll-hint.is-hidden {
    opacity: 0;
    transform: translate(-50%, -8px);
}

.cv-scroll-hint__label {
    color: #ffffff;
    font-family: var(--cv-font-body, 'Inter', system-ui, sans-serif);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.32em;
    text-transform: uppercase;
}

.cv-scroll-hint__rail {
    position: relative;
    display: block;
    width: 30px;
    height: 50px;
    border: 2.5px solid #ffffff;
    border-radius: 999px;
    overflow: hidden;
}

.cv-scroll-hint__dot {
    position: absolute;
    top: 8px;
    left: 50%;
    width: 4px;
    height: 10px;
    margin-left: -2px;
    background: #ffffff;
    border-radius: 3px;
    animation: cv-scroll-hint-dot 1.6s cubic-bezier(0.55, 0.05, 0.55, 0.95) infinite;
}

@keyframes cv-scroll-hint-dot {
    0%   { transform: translateY(0);    opacity: 1; }
    60%  { transform: translateY(20px); opacity: 0; }
    61%  { transform: translateY(0);    opacity: 0; }
    100% { transform: translateY(0);    opacity: 1; }
}

@media (max-width: 720px) {
    .cv-scroll-hint {
        top: calc(var(--cv-header-h, 66px) + 18px);
        gap: 10px;
    }
    .cv-scroll-hint__label {
        font-size: 11px;
    }
    .cv-scroll-hint__rail {
        width: 26px;
        height: 42px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .cv-scroll-hint__dot {
        animation: none;
    }
}

/* ============================================================
   Header dark-mode  —  inverts nav colors when over dark sections
   Toggled by JS via IntersectionObserver on [data-cv-dark-bg]
   ============================================================ */
body.cv-header-dark .cv-header {
    background: transparent !important;
    border-bottom-color: rgba(255, 255, 255, 0.1) !important;
}

body.cv-header-dark .cv-header,
body.cv-header-dark .cv-nav,
body.cv-header-dark .cv-nav a {
    color: rgba(255, 255, 255, 0.72);
}

body.cv-header-dark .cv-nav a[aria-current="page"],
body.cv-header-dark .cv-nav a:hover {
    color: #fff;
}

body.cv-header-dark .cv-nav a[aria-current="page"]::after {
    background: #fff;
}

body.cv-header-dark .cv-logo img {
    filter: invert(1) brightness(2);
}

body.cv-header-dark .cv-locale-pill,
body.cv-header-dark .cv-header-icon {
    color: #fff !important;
    border-color: rgba(255, 255, 255, 0.28) !important;
    background: rgba(255, 255, 255, 0.06) !important;
}

body.cv-header-dark .cv-locale-pill:hover,
body.cv-header-dark .cv-header-icon:hover {
    border-color: rgba(255, 255, 255, 0.6) !important;
    background: rgba(255, 255, 255, 0.12) !important;
}

body.cv-header-dark .cv-header-buy {
    background: #fff !important;
    color: #0a0a0a !important;
}

body.cv-header-dark .cv-header-buy:hover {
    background: rgba(255, 255, 255, 0.88) !important;
}

/* Smooth transition for color flips */
.cv-header,
.cv-header *,
.cv-header *::before,
.cv-header *::after {
    transition: background-color .25s ease, border-color .25s ease, color .25s ease;
}

/* ============================================================
   Unified product page  (template-parts/product-default.php)
   Used for Gift Card, Refill, Fabric Covers, and any other
   non-clearvyzr product. Namespace: cv-prod-
   ============================================================ */

.cv-prod {
    --cv-prod-border: rgba(0, 0, 0, 0.08);
    --cv-prod-border-mid: rgba(0, 0, 0, 0.18);
    --cv-prod-off: #f5f4f2;
    --cv-prod-text-muted: #8a8a8a;
    --cv-prod-text-mid: #555550;
    --cv-prod-text: #1a1a1a;
    --cv-prod-black: #0a0a0a;
    color: var(--cv-prod-text);
    font-family: var(--cv-font-body, 'Inter', system-ui, sans-serif);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Breadcrumbs */
.cv-prod-crumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px clamp(20px, 5vw, 48px);
    border-bottom: 1px solid var(--cv-prod-border);
    color: var(--cv-prod-text-muted);
    font-size: 12px;
}
.cv-prod-crumbs a {
    color: var(--cv-prod-text-muted);
    text-decoration: none;
    transition: color .15s ease;
}
.cv-prod-crumbs a:hover { color: var(--cv-prod-black); }
.cv-prod-crumbs__current { color: var(--cv-prod-text-mid); }

/* Hero split */
.cv-prod-hero {
    display: grid;
    grid-template-columns: 1fr 460px;
    min-height: 80vh;
    border-bottom: 1px solid var(--cv-prod-border);
    background: #fff;
}

/* Gallery */
.cv-prod-hero__gallery {
    display: grid;
    grid-template-columns: 76px 1fr;
    background: var(--cv-prod-off);
    border-right: 1px solid var(--cv-prod-border);
    position: sticky;
    top: 66px;
    align-self: start;
    height: calc(100vh - 66px);
}
.cv-prod-hero__gallery-thumbs {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 14px 10px;
    border-right: 1px solid var(--cv-prod-border);
    background: #fff;
    overflow-y: auto;
    scrollbar-width: none;
}
.cv-prod-hero__gallery-thumbs::-webkit-scrollbar { display: none; }
.cv-prod-thumb {
    width: 56px;
    height: 56px;
    padding: 0;
    border: 1.5px solid transparent;
    background: #fff;
    cursor: pointer;
    transition: border-color .15s ease;
    overflow: hidden;
    flex-shrink: 0;
}
.cv-prod-thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}
.cv-prod-thumb.is-active,
.cv-prod-thumb:hover { border-color: var(--cv-prod-black); }
.cv-prod-hero__gallery-main {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(40px, 6vw, 80px);
    background: var(--cv-prod-off);
}
.cv-prod-hero__gallery-main img {
    width: 100%; height: 100%;
    max-width: 580px; max-height: 580px;
    object-fit: contain;
    display: block;
}

/* Coming-soon teaser: full-bleed dark image — fill the whole gallery frame
   instead of floating a small letterboxed rectangle in a sea of off-white. */
.cv-prod-hero__gallery-main--full {
    padding: 0;
}
.cv-prod-hero__gallery-main--full img {
    max-width: none;
    max-height: none;
    object-fit: cover;
}

/* Gift card visual variant */
.cv-prod-hero--gift .cv-prod-hero__gift-canvas {
    background: var(--cv-prod-off);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(60px, 8vw, 120px);
    border-right: 1px solid var(--cv-prod-border);
}
.cv-prod-gift-card {
    width: 100%;
    max-width: 460px;
    aspect-ratio: 1.6;
    background: var(--cv-prod-black);
    color: #fff;
    padding: 36px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    transform: rotate(-3deg);
    box-shadow: 0 30px 60px rgba(0,0,0,0.18), 0 6px 18px rgba(0,0,0,0.08);
    transition: transform .4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.cv-prod-gift-card:hover {
    transform: rotate(0deg) scale(1.02);
}
.cv-prod-gift-card::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 60%; height: 100%;
    background: radial-gradient(ellipse at top right, rgba(255,255,255,0.08) 0%, transparent 70%);
}
.cv-prod-gift-card__top,
.cv-prod-gift-card__amount,
.cv-prod-gift-card__foot { position: relative; z-index: 2; }
.cv-prod-gift-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.cv-prod-gift-card__logo {
    font-family: var(--cv-font-accent, 'Inter', system-ui, sans-serif);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.01em;
}
.cv-prod-gift-card__label {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}
.cv-prod-gift-card__amount { margin: auto 0; }
.cv-prod-gift-card__amount-label {
    font-size: 11px;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 6px;
}
.cv-prod-gift-card__amount-val {
    font-family: var(--cv-font-accent, 'Inter', system-ui, sans-serif);
    font-size: 72px;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 0.95;
}
.cv-prod-gift-card__cur {
    font-size: 24px;
    color: rgba(255,255,255,0.6);
    margin-right: 8px;
    vertical-align: top;
}
.cv-prod-gift-card__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 11px;
    color: rgba(255,255,255,0.55);
}
.cv-prod-gift-card__code {
    font-family: var(--cv-font-accent, 'Inter', system-ui, sans-serif);
    font-weight: 600;
    letter-spacing: 0.18em;
    font-size: 12px;
    color: rgba(255,255,255,0.7);
}

/* Buy box */
.cv-prod-buybox {
    padding: clamp(40px, 5vw, 60px) clamp(28px, 4vw, 56px);
    display: flex;
    flex-direction: column;
    max-width: 560px;
}
.cv-prod-buybox__tag {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--cv-prod-text-muted);
    margin-bottom: 14px;
}
.cv-prod-buybox__name {
    margin: 0 0 14px;
    color: var(--cv-prod-black);
    font-family: var(--cv-font-accent, 'Inter', system-ui, sans-serif);
    font-size: clamp(32px, 3.4vw, 44px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.025em;
    text-wrap: balance;
}
.cv-prod-buybox__rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}
.cv-prod-buybox__stars {
    font-size: 13px;
    color: var(--cv-prod-black);
    letter-spacing: 2px;
}
.cv-prod-buybox__rating-sub {
    font-size: 12px;
    color: var(--cv-prod-text-muted);
}
.cv-prod-buybox__lede {
    margin: 0 0 22px;
    max-width: 420px;
    color: var(--cv-prod-text-mid);
    font-size: 14px;
    line-height: 1.7;
}
.cv-prod-buybox__hr {
    height: 1px;
    background: var(--cv-prod-border);
    margin: 20px 0;
}

/* Price */
.cv-prod-buybox__price-row {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 6px;
}
.cv-prod-buybox__price,
.cv-prod-buybox__price .amount {
    font-family: var(--cv-font-accent, 'Inter', system-ui, sans-serif);
    font-size: 30px;
    font-weight: 700;
    color: var(--cv-prod-black);
    letter-spacing: -0.02em;
}
.cv-prod-buybox__currency {
    font-size: 13px;
    color: var(--cv-prod-text-muted);
}

/* Stock pill */
.cv-prod-buybox__stock {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--cv-prod-text-mid);
    margin-bottom: 24px;
}
.cv-prod-buybox__stock-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22a066;
    animation: cv-stock-pulse 2.2s ease-in-out infinite;
}
.cv-prod-buybox__stock--soon .cv-prod-buybox__stock-dot { background: #d6a14a; }
@keyframes cv-stock-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* Form labels and chips */
.cv-prod-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--cv-prod-text-muted);
    margin-bottom: 10px;
}
.cv-prod-qty-chips { display: flex; gap: 8px; margin-bottom: 22px; }
.cv-prod-qty-chip {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1.5px solid var(--cv-prod-border-mid);
    background: #fff;
    font-family: var(--cv-font-body, 'Inter', system-ui, sans-serif);
    font-size: 14px;
    font-weight: 500;
    color: var(--cv-prod-text-mid);
    cursor: pointer;
    transition: all .15s ease;
}
.cv-prod-qty-chip.is-active {
    border-color: var(--cv-prod-black);
    background: var(--cv-prod-black);
    color: #fff;
}

/* Gift card amount grid */
.cv-prod-amount-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    margin-bottom: 22px;
}
.cv-prod-amount-chip {
    padding: 14px 0;
    text-align: center;
    border: 1.5px solid var(--cv-prod-border-mid);
    background: #fff;
    color: var(--cv-prod-text-mid);
    font-family: var(--cv-font-accent, 'Inter', system-ui, sans-serif);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: -0.01em;
    cursor: pointer;
    transition: all .15s ease;
}
.cv-prod-amount-chip:hover {
    border-color: var(--cv-prod-black);
    color: var(--cv-prod-black);
}
.cv-prod-amount-chip.is-active {
    background: var(--cv-prod-black);
    color: #fff;
    border-color: var(--cv-prod-black);
}
.cv-prod-gift-note {
    margin: 0 0 18px;
    padding: 12px 14px;
    background: var(--cv-prod-off);
    border-left: 2px solid var(--cv-prod-black);
    color: var(--cv-prod-text-mid);
    font-size: 13px;
    line-height: 1.6;
}

/* Buttons */
.cv-prod-buybox__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    height: 52px;
    padding: 0 24px;
    border: 1.5px solid var(--cv-prod-black);
    background: var(--cv-prod-black);
    color: #fff;
    font-family: var(--cv-font-accent, 'Inter', system-ui, sans-serif);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: background .15s ease, color .15s ease, opacity .15s ease;
    margin-bottom: 12px;
}
.cv-prod-buybox__btn:hover { opacity: 0.85; }
.cv-prod-buybox__btn--ghost {
    background: transparent;
    color: var(--cv-prod-black);
}
.cv-prod-buybox__btn--ghost:hover {
    background: var(--cv-prod-black);
    color: #fff;
    opacity: 1;
}
.cv-prod-buybox__btn--disabled,
.cv-prod-buybox__btn:disabled {
    border-color: var(--cv-prod-border-mid);
    background: var(--cv-prod-border-mid);
    color: #fff;
    cursor: not-allowed;
}
.cv-prod-buybox__btn-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 4px;
    color: var(--cv-prod-text-mid);
    font-size: 12px;
}
.cv-prod-buybox__btn-meta svg {
    width: 16px; height: 16px;
    color: var(--cv-prod-text-mid);
}

/* Trust badges */
.cv-prod-buybox__trust {
    list-style: none;
    margin: 24px 0 18px;
    padding: 18px 0 0;
    border-top: 1px solid var(--cv-prod-border);
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}
.cv-prod-buybox__trust li {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    color: var(--cv-prod-text-mid);
}
.cv-prod-buybox__trust svg {
    width: 13px; height: 13px;
    color: var(--cv-prod-text-muted);
}

/* Spec list */
.cv-prod-buybox__specs {
    margin: 6px 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}
.cv-prod-buybox__specs > div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--cv-prod-border);
    font-size: 13px;
}
.cv-prod-buybox__specs > div:first-child { border-top: 1px solid var(--cv-prod-border); }
.cv-prod-buybox__specs dt {
    color: var(--cv-prod-text-muted);
    margin: 0;
}
.cv-prod-buybox__specs dd {
    color: var(--cv-prod-text);
    font-weight: 500;
    margin: 0;
}

/* Feature strip */
.cv-prod-features {
    border-bottom: 1px solid var(--cv-prod-border);
    padding: clamp(60px, 8vw, 100px) clamp(28px, 5vw, 48px);
    background: var(--cv-prod-off);
}
.cv-prod-features__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--cv-prod-border);
    border: 1px solid var(--cv-prod-border);
}
.cv-prod-feature {
    padding: 36px 32px;
    background: #fff;
}
.cv-prod-feature__num {
    font-family: var(--cv-font-accent, 'Inter', system-ui, sans-serif);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: var(--cv-prod-text-muted);
    text-transform: uppercase;
    margin-bottom: 18px;
}
.cv-prod-feature__title {
    margin: 0 0 12px;
    color: var(--cv-prod-black);
    font-family: var(--cv-font-accent, 'Inter', system-ui, sans-serif);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.015em;
    line-height: 1.15;
}
.cv-prod-feature__desc {
    margin: 0;
    color: var(--cv-prod-text-mid);
    font-size: 14px;
    line-height: 1.75;
}

/* How it works (gift) */
.cv-prod-how {
    border-bottom: 1px solid var(--cv-prod-border);
    padding: clamp(60px, 8vw, 100px) clamp(28px, 5vw, 48px);
    background: #fff;
}
.cv-prod-how__inner {
    max-width: 1100px;
    margin: 0 auto;
}
.cv-prod-how__head { margin-bottom: 40px; }
.cv-prod-how__eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--cv-prod-text-muted);
    margin-bottom: 10px;
}
.cv-prod-how__head h2 {
    margin: 0;
    color: var(--cv-prod-black);
    font-family: var(--cv-font-accent, 'Inter', system-ui, sans-serif);
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
}
.cv-prod-how__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--cv-prod-border);
    border: 1px solid var(--cv-prod-border);
}
.cv-prod-how__cell {
    padding: 36px 32px;
    background: #fff;
}
.cv-prod-how__num {
    font-family: var(--cv-font-accent, 'Inter', system-ui, sans-serif);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: #c0bdb5;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.cv-prod-how__cell h3 {
    margin: 0 0 8px;
    color: var(--cv-prod-black);
    font-family: var(--cv-font-accent, 'Inter', system-ui, sans-serif);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.01em;
}
.cv-prod-how__cell p {
    margin: 0;
    color: var(--cv-prod-text-muted);
    font-size: 13px;
    line-height: 1.75;
}

/* CTA strip back to main product */
.cv-prod-cta {
    background: var(--cv-prod-black);
    color: #fff;
    padding: clamp(60px, 7vw, 90px) clamp(28px, 5vw, 48px);
}
.cv-prod-cta__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}
.cv-prod-cta__eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    margin-bottom: 12px;
}
.cv-prod-cta__inner h2 {
    margin: 0 0 12px;
    color: #fff;
    font-family: var(--cv-font-accent, 'Inter', system-ui, sans-serif);
    font-size: clamp(28px, 3.6vw, 44px);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.05;
}
.cv-prod-cta__inner p {
    margin: 0;
    max-width: 460px;
    color: rgba(255,255,255,0.65);
    font-size: 14px;
    line-height: 1.75;
}
.cv-prod-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: #fff;
    color: var(--cv-prod-black);
    font-family: var(--cv-font-accent, 'Inter', system-ui, sans-serif);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    transition: opacity .15s ease;
    white-space: nowrap;
}
.cv-prod-cta__btn:hover { opacity: 0.85; }

/* Responsive */
@media (max-width: 960px) {
    .cv-prod-hero {
        grid-template-columns: 1fr;
        min-height: 0;
    }
    .cv-prod-hero__gallery {
        position: static;
        height: auto;
        grid-template-columns: 1fr;
        border-right: 0;
        border-bottom: 1px solid var(--cv-prod-border);
    }
    .cv-prod-hero__gallery-thumbs {
        flex-direction: row;
        border-right: 0;
        border-bottom: 1px solid var(--cv-prod-border);
        overflow-x: auto;
    }
    .cv-prod-hero__gallery-main {
        min-height: 320px;
    }
    .cv-prod-features__inner,
    .cv-prod-how__grid {
        grid-template-columns: 1fr;
    }
    .cv-prod-cta__inner {
        flex-direction: column;
        align-items: flex-start;
    }
    .cv-prod-buybox {
        max-width: 100%;
    }
    .cv-prod-amount-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 640px) {
    .cv-prod-amount-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .cv-prod-buybox__trust {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ═════════════════════════════════════════════════════════════════════════
   NOTIFY-ME MODAL — used by product-default.php for coming-soon items.
   Submits to /wp-json/clearvyzr/v1/notify-me which tags the lead in
   FluentCRM with "Waitlist · {Product}" + "Region · {COUNTRY}".
   ════════════════════════════════════════════════════════════════════════ */

.cv-notify-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    font-family: var(--cv-font-body);
}

.cv-notify-modal[hidden] { display: none; }

.cv-notify-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(11, 11, 11, 0.65);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    animation: cv-notify-fade .2s ease forwards;
}

@keyframes cv-notify-fade { from { opacity: 0; } to { opacity: 1; } }

.cv-notify-modal__panel {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 460px;
    background: #fff;
    border-radius: 18px;
    padding: 36px 32px 30px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
    animation: cv-notify-pop .25s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes cv-notify-pop {
    from { opacity: 0; transform: translateY(8px) scale(0.98); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.cv-notify-modal__close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 32px;
    height: 32px;
    border: 0;
    border-radius: 999px;
    background: #f3f3f0;
    color: #0b0b0b;
    font-size: 13px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color .15s ease;
}

.cv-notify-modal__close:hover { background: #e7e7e3; }

.cv-notify-modal__body {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* The success state ships with [hidden] until the email is saved; without
   this the flex display above would override it and show both states at once. */
.cv-notify-modal__body[hidden] {
    display: none !important;
}

.cv-notify-modal__eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #d69a29;
    margin: 0;
}

.cv-notify-modal__title {
    font-family: var(--cv-font-body);
    font-size: clamp(22px, 2.3vw, 26px);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.15;
    color: #0b0b0b;
    margin: 4px 0 0;
}

.cv-notify-modal__copy {
    font-size: 14px;
    line-height: 1.65;
    color: #4a4a4a;
    margin: 0 0 8px;
}

.cv-notify-modal__copy strong { color: #0b0b0b; font-weight: 600; }

.cv-notify-modal__form {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 6px;
}

.cv-notify-modal__label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #555;
    margin: 0;
}

.cv-notify-modal__input {
    width: 100%;
    padding: 13px 16px;
    font-family: inherit;
    font-size: 15px;
    color: #0b0b0b;
    background: #fff;
    border: 1.5px solid #e2e2dc;
    border-radius: 8px;
    transition: border-color .15s ease, box-shadow .15s ease;
}

.cv-notify-modal__input:focus {
    outline: 0;
    border-color: #0b0b0b;
    box-shadow: 0 0 0 3px rgba(11, 11, 11, 0.08);
}

.cv-notify-modal__submit {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    height: 52px;
    margin-top: 6px;
    padding: 0 24px;
    background: #0b0b0b;
    color: #fff;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.04em;
    border: 0;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color .18s ease, transform .15s ease, box-shadow .18s ease;
}

.cv-notify-modal__submit:hover {
    background: #222;
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, .14);
}

.cv-notify-modal__submit.is-loading .cv-notify-modal__submit-label { opacity: 0; }
.cv-notify-modal__submit.is-loading .cv-notify-modal__spinner { opacity: 1; }

.cv-notify-modal__spinner {
    position: absolute;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 999px;
    opacity: 0;
    animation: cv-notify-spin .8s linear infinite;
}

@keyframes cv-notify-spin { to { transform: rotate(360deg); } }

.cv-notify-modal__error {
    margin: 4px 0 0;
    font-size: 13px;
    color: #b3261e;
}

.cv-notify-modal__fine {
    font-size: 12px;
    line-height: 1.5;
    color: #8b8b87;
    margin: 6px 0 0;
}

/* Success state */
.cv-notify-modal__body--success {
    text-align: center;
    align-items: center;
}

.cv-notify-modal__check {
    width: 56px;
    height: 56px;
    margin: 8px auto 4px;
    border-radius: 999px;
    background: rgba(34, 160, 102, 0.12);
    color: #22a066;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cv-notify-modal__check svg { width: 28px; height: 28px; }

.cv-notify-modal__submit--ghost {
    background: transparent;
    color: #0b0b0b;
    border: 1.5px solid #e2e2dc;
}

.cv-notify-modal__submit--ghost:hover {
    background: #f3f3f0;
    box-shadow: none;
}

@media (max-width: 480px) {
    .cv-notify-modal__panel { padding: 30px 22px 24px; }
}

/* ═════════════════════════════════════════════════════════════════════════
   404 PAGE — editorial "wrong turn" treatment with a dirty-visor metaphor.
   Lives on a black ground so the global header dark-mode sampler picks it
   up and inverts the nav automatically (data-cv-dark-bg on the <main>).
   ════════════════════════════════════════════════════════════════════════ */

.cv-404 {
    background: #0b0b0b;
    color: #f3f3f0;
    font-family: var(--cv-font-body, "ClearVyzr Poppins", "Poppins", system-ui, sans-serif);
    min-height: 100vh;
    overflow: hidden;
    position: relative;
}

/* Big "404" watermark — sits behind everything, low contrast. */
.cv-404__watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--cv-font-body, "ClearVyzr Poppins", "Poppins", system-ui, sans-serif);
    font-weight: 800;
    font-size: clamp(220px, 38vw, 520px);
    line-height: 0.85;
    letter-spacing: -0.08em;
    color: rgba(255, 255, 255, 0.025);
    pointer-events: none;
    user-select: none;
    z-index: 0;
    white-space: nowrap;
}

/* ─── HERO ─────────────────────────────────────────────────────────────── */
.cv-404__hero {
    position: relative;
    z-index: 1;
    padding: clamp(80px, 12vh, 140px) clamp(24px, 6vw, 72px) clamp(60px, 9vh, 100px);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.cv-404__hero-inner {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: clamp(40px, 6vw, 96px);
    align-items: center;
}

.cv-404__hero-text {
    position: relative;
    z-index: 2;
}

.cv-404__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #d69a29;
    margin: 0 0 28px;
}

.cv-404__eyebrow-dot {
    width: 8px;
    height: 8px;
    background: #d69a29;
    border-radius: 999px;
    animation: cv-404-blink 2.2s ease-in-out infinite;
}

@keyframes cv-404-blink {
    0%, 100% { opacity: 1; }
    50%      { opacity: 0.25; }
}

.cv-404__title {
    font-family: inherit;
    font-size: clamp(44px, 6vw, 84px);
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: -0.035em;
    color: #fff;
    margin: 0 0 22px;
    text-wrap: balance;
}

.cv-404__lede {
    font-size: clamp(15px, 1.2vw, 17px);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.62);
    margin: 0 0 36px;
    max-width: 520px;
}

/* CTA row */
.cv-404__cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 36px;
}

.cv-404__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 52px;
    padding: 0 26px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: background-color .18s ease, color .18s ease, transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    border: 1.5px solid transparent;
}

.cv-404__btn svg { width: 14px; height: 14px; flex-shrink: 0; }

.cv-404__btn--primary {
    background: #fff;
    color: #0b0b0b;
}

.cv-404__btn--primary:hover {
    background: #f3f3f0;
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(255, 255, 255, 0.08);
}

.cv-404__btn--ghost {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.18);
}

.cv-404__btn--ghost:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Search */
.cv-404__search {
    max-width: 460px;
}

.cv-404__search-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 10px;
}

.cv-404__search-row {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    padding: 4px 6px 4px 18px;
    transition: border-color .15s ease, background-color .15s ease;
}

.cv-404__search-row:focus-within {
    border-color: rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.06);
}

.cv-404__search-icon {
    width: 16px;
    height: 16px;
    color: rgba(255, 255, 255, 0.5);
    flex-shrink: 0;
}

.cv-404__search-input {
    flex: 1;
    height: 44px;
    margin: 0 0 0 12px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #fff;
    font-family: inherit;
    font-size: 14px;
    outline: none;
}

.cv-404__search-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.cv-404__search-submit {
    height: 38px;
    padding: 0 20px;
    border: 0;
    border-radius: 999px;
    background: #fff;
    color: #0b0b0b;
    font-family: inherit;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color .18s ease;
}

.cv-404__search-submit:hover { background: #f3f3f0; }

/* ─── VISOR PANEL (right side) ────────────────────────────────────────────
   The whole reason for being on-brand: the user is literally seeing the page
   through a streaked, bug-spattered visor. Pure CSS — no PNG needed beyond
   the helmet hero image. */
.cv-404__visor {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.cv-404__visor-frame {
    position: relative;
    width: 100%;
    max-width: 460px;
    aspect-ratio: 4 / 3;
    /* "Visor" shape: rounded rectangle with stronger top curve. */
    border-radius: 60% 60% 38% 38% / 32% 32% 18% 18%;
    overflow: hidden;
    background: linear-gradient(160deg, #1a1a1a 0%, #050505 100%);
    box-shadow:
        inset 0 0 0 1.5px rgba(255, 255, 255, 0.08),
        inset 0 -40px 60px rgba(0, 0, 0, 0.55),
        0 30px 60px rgba(0, 0, 0, 0.6);
    transform: perspective(800px) rotateX(2deg);
}

.cv-404__visor-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 35%;
    filter: blur(2px) brightness(0.7) saturate(0.9);
    opacity: 0.7;
}

/* Smeared streaks across the visor. */
.cv-404__visor-streak {
    position: absolute;
    left: -10%;
    right: -10%;
    height: 18%;
    background: linear-gradient(105deg,
        transparent 10%,
        rgba(255, 255, 255, 0.05) 30%,
        rgba(255, 255, 255, 0.14) 50%,
        rgba(255, 255, 255, 0.04) 70%,
        transparent 90%);
    transform: rotate(-6deg);
    pointer-events: none;
    mix-blend-mode: screen;
    filter: blur(3px);
}

.cv-404__visor-streak--1 { top: 18%; }
.cv-404__visor-streak--2 { top: 46%; transform: rotate(-3deg); height: 12%; }
.cv-404__visor-streak--3 { top: 68%; transform: rotate(-8deg); }

/* Bug splats — small dark dots with a little drip below. */
.cv-404__visor-bug {
    position: absolute;
    width: 14px;
    height: 14px;
    background: radial-gradient(circle at 35% 35%, #4a3a2a 0%, #1a1410 70%, transparent 100%);
    border-radius: 50%;
    pointer-events: none;
    filter: blur(0.5px);
}

.cv-404__visor-bug::after {
    content: "";
    position: absolute;
    top: 60%;
    left: 50%;
    width: 3px;
    height: 14px;
    transform: translateX(-50%);
    background: linear-gradient(180deg, rgba(74, 58, 42, 0.85) 0%, transparent 100%);
    border-radius: 999px;
}

.cv-404__visor-bug--1 { top: 22%; left: 18%; width: 10px; height: 10px; }
.cv-404__visor-bug--2 { top: 38%; left: 62%; width: 16px; height: 16px; }
.cv-404__visor-bug--3 { top: 56%; left: 30%; width: 8px;  height: 8px;  }

.cv-404__visor-caption {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    line-height: 1.5;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.55);
}

.cv-404__visor-caption span:first-child {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
}

.cv-404__visor-caption a {
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.45);
    padding-bottom: 1px;
    transition: border-color .15s ease;
}

.cv-404__visor-caption a:hover { border-bottom-color: #fff; }

/* ─── DESTINATIONS ────────────────────────────────────────────────────── */
.cv-404__dest {
    position: relative;
    z-index: 1;
    padding: clamp(60px, 8vh, 100px) clamp(24px, 6vw, 72px) clamp(80px, 10vh, 120px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: #0b0b0b;
}

.cv-404__dest-head {
    max-width: 1280px;
    margin: 0 auto 44px;
    text-align: center;
}

.cv-404__dest-eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 14px;
}

.cv-404__dest-title {
    font-family: inherit;
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: #fff;
    margin: 0;
}

.cv-404__dest-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 12px;
}

.cv-404__dest-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 20px;
    padding: 22px 24px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-decoration: none;
    color: #fff;
    transition: background-color .18s ease, border-color .18s ease, transform .18s ease;
}

.cv-404__dest-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.cv-404__dest-num {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    color: rgba(255, 255, 255, 0.4);
    font-family: "SFMono-Regular", Consolas, Menlo, monospace;
}

.cv-404__dest-body { min-width: 0; }

.cv-404__dest-label {
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: #fff;
    margin-bottom: 2px;
}

.cv-404__dest-sub {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cv-404__dest-arrow {
    width: 16px;
    height: 16px;
    color: rgba(255, 255, 255, 0.4);
    flex-shrink: 0;
    transition: color .15s ease, transform .18s ease;
}

.cv-404__dest-card:hover .cv-404__dest-arrow {
    color: #fff;
    transform: translateX(4px);
}

/* ─── RESPONSIVE ───────────────────────────────────────────────────────── */
@media (max-width: 900px) {
    .cv-404__hero-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .cv-404__visor {
        max-width: 360px;
        margin: 0 auto;
    }
    .cv-404__watermark {
        font-size: clamp(180px, 60vw, 360px);
        opacity: 0.6;
    }
}

@media (max-width: 540px) {
    .cv-404__cta-row .cv-404__btn {
        width: 100%;
    }
    .cv-404__search-submit {
        padding: 0 14px;
    }
}

/* ═════════════════════════════════════════════════════════════════════════
   GIFT CARD PRODUCT PAGE — style PW Gift Cards' inline form to match the
   rest of the product-default.php buy box. PW renders its form via
   `woocommerce_template_single_add_to_cart()` for products of type
   `pw-gift-card`. Selectors below cover both PW's own (`#pwgc-*`) and the
   WC variations system that PW reuses for denomination ($25 / $50 / etc.).
   ════════════════════════════════════════════════════════════════════════ */

.cv-prod--gift-card .cv-prod-buybox__gift-form {
    margin: 4px 0 14px;
    font-family: var(--cv-font-body, "ClearVyzr Poppins", "Poppins", system-ui, sans-serif);
}

/* Hide product title/price duplicates that WC variations form sometimes prints */
.cv-prod--gift-card .cv-prod-buybox__gift-form .product_title,
.cv-prod--gift-card .cv-prod-buybox__gift-form .woocommerce-product-rating,
.cv-prod--gift-card .cv-prod-buybox__gift-form .woocommerce-product-details__short-description {
    display: none !important;
}

/* PW's inline <style> block sets ".pwgc-input-text { width: 95% }" — override
   so our inputs stretch to the full column. Same for the textarea. */
.cv-prod--gift-card .cv-prod-buybox__gift-form .pwgc-input-text,
.cv-prod--gift-card .cv-prod-buybox__gift-form #pwgc-message {
    width: 100% !important;
}

/* Field labels (PW uses .pwgc-label) */
.cv-prod--gift-card .cv-prod-buybox__gift-form label,
.cv-prod--gift-card .cv-prod-buybox__gift-form .pwgc-label {
    display: block;
    font-family: inherit !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    letter-spacing: 0.18em !important;
    text-transform: uppercase !important;
    color: var(--cv-prod-text-muted, #6a6a6a) !important;
    margin: 0 0 8px !important;
}

/* Help text under each field */
.cv-prod--gift-card .cv-prod-buybox__gift-form .pwgc-subtitle {
    font-size: 12px !important;
    color: var(--cv-prod-text-muted, #6a6a6a) !important;
    margin-top: 6px !important;
}

/* Inputs / textareas / selects */
.cv-prod--gift-card .cv-prod-buybox__gift-form input[type="text"],
.cv-prod--gift-card .cv-prod-buybox__gift-form input[type="email"],
.cv-prod--gift-card .cv-prod-buybox__gift-form input[type="number"],
.cv-prod--gift-card .cv-prod-buybox__gift-form input[type="date"],
.cv-prod--gift-card .cv-prod-buybox__gift-form input[type="tel"],
.cv-prod--gift-card .cv-prod-buybox__gift-form textarea,
.cv-prod--gift-card .cv-prod-buybox__gift-form select {
    width: 100% !important;
    padding: 12px 14px !important;
    font-family: inherit !important;
    font-size: 14px;
    color: var(--cv-prod-black, #111110) !important;
    background: #fff !important;
    border: 1.5px solid var(--cv-prod-border, #e4e2dc) !important;
    border-radius: 8px !important;
    line-height: 1.4;
    box-shadow: none !important;
    box-sizing: border-box;
}

.cv-prod--gift-card .cv-prod-buybox__gift-form input:focus,
.cv-prod--gift-card .cv-prod-buybox__gift-form textarea:focus,
.cv-prod--gift-card .cv-prod-buybox__gift-form select:focus {
    outline: 0 !important;
    border-color: var(--cv-prod-black, #111110) !important;
    box-shadow: 0 0 0 3px rgba(11, 11, 11, 0.08) !important;
}

.cv-prod--gift-card .cv-prod-buybox__gift-form textarea,
.cv-prod--gift-card .cv-prod-buybox__gift-form #pwgc-message {
    min-height: 96px !important;
    height: 96px !important;
    resize: vertical;
}

/* Spacing between PW's field containers + WC variations rows */
.cv-prod--gift-card .cv-prod-buybox__gift-form .pwgc-field-container,
.cv-prod--gift-card .cv-prod-buybox__gift-form .variations,
.cv-prod--gift-card .cv-prod-buybox__gift-form .single_variation_wrap {
    margin: 0 0 16px !important;
}

/* WooCommerce variations table (PW renders denomination $25/$50/$75/$100/$150
   as a select inside this table). Strip the default table look. */
.cv-prod--gift-card .cv-prod-buybox__gift-form .variations {
    width: 100%;
    border-collapse: collapse;
}

.cv-prod--gift-card .cv-prod-buybox__gift-form .variations td,
.cv-prod--gift-card .cv-prod-buybox__gift-form .variations th {
    display: block !important;
    width: 100% !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
}

.cv-prod--gift-card .cv-prod-buybox__gift-form .variations .label {
    padding-bottom: 8px !important;
}

.cv-prod--gift-card .cv-prod-buybox__gift-form .reset_variations {
    font-size: 12px;
    color: var(--cv-prod-text-muted, #6a6a6a);
    margin-left: 8px;
}

/* Quantity (PW lets WC render the quantity input) */
.cv-prod--gift-card .cv-prod-buybox__gift-form .quantity {
    display: inline-flex !important;
    align-items: center;
    margin: 0 12px 0 0 !important;
}

.cv-prod--gift-card .cv-prod-buybox__gift-form .quantity input[type="number"] {
    width: 80px !important;
    text-align: center;
}

/* The big Add-to-cart button */
.cv-prod--gift-card .cv-prod-buybox__gift-form .single_add_to_cart_button,
.cv-prod--gift-card .cv-prod-buybox__gift-form button[type="submit"] {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 100% !important;
    flex: 1 !important;
    height: 56px;
    padding: 0 26px !important;
    background: var(--cv-prod-black, #111110) !important;
    color: #fff !important;
    font-family: inherit !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    letter-spacing: 0.02em !important;
    text-transform: none !important;
    border: 0 !important;
    border-radius: 0 !important;
    cursor: pointer;
    box-shadow: none !important;
    transition: background-color .18s ease !important;
    margin-top: 8px !important;
}

.cv-prod--gift-card .cv-prod-buybox__gift-form .single_add_to_cart_button:hover {
    background: #2a2a2a !important;
}

/* PW's "Preview" button (email design preview) — quiet secondary style */
.cv-prod--gift-card .cv-prod-buybox__gift-form #pwgc-email-preview-button {
    display: inline-flex !important;
    align-items: center;
    height: 36px !important;
    padding: 0 14px !important;
    background: transparent !important;
    color: var(--cv-prod-text-mid, #555450) !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    border: 1px solid var(--cv-prod-border, #e4e2dc) !important;
    border-radius: 6px !important;
    margin-top: 8px !important;
}

.cv-prod--gift-card .cv-prod-buybox__gift-form #pwgc-email-preview-container {
    margin-top: 14px !important;
    border-radius: 8px;
    min-height: 420px;
}

/* Recipient count label inside PW's quantity-one-per-recipient hint */
.cv-prod--gift-card .cv-prod-buybox__gift-form #pwgc-recipient-count {
    font-weight: 700 !important;
    color: var(--cv-prod-black, #111110) !important;
}

/* Custom-amount inline error message */
.cv-prod--gift-card .cv-prod-buybox__gift-form #pwgc-custom-amount-error {
    margin-top: 6px;
    font-size: 12px;
}

/* ============================================================
   Order tracking ( [clearvyzr_order_tracking] )
   ============================================================ */
.cv-track {
    max-width: 720px;
    margin: 40px auto 64px;
    padding: 0 20px;
}

/* Center the page's <h1> only on the order-tracking page (detected by the
   presence of the tracker in the content area). */
.cv-content-page__inner:has(.cv-track) > h1 {
    text-align: center;
}

.cv-track__card {
    background: #fff;
    border: 1px solid #e2e2e2;
    border-radius: 0;
    padding: 40px clamp(22px, 4vw, 48px);
    box-shadow: none;
}

.cv-track__title {
    font-family: var(--cv-font-body);
    font-size: clamp(24px, 3vw, 30px);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0 0 8px;
}

.cv-track__intro {
    margin: 0 0 24px;
    color: #5a5a5a;
    font-size: 15px;
    line-height: 1.55;
}

.cv-track__field {
    margin-bottom: 18px;
}

.cv-track__label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #444;
    margin-bottom: 8px;
}

.cv-track__input {
    width: 100%;
    box-sizing: border-box;
    min-height: 52px;
    padding: 14px 16px;
    border: 1px solid #d2d2d2;
    border-radius: 0;
    font-size: 15px;
    color: #1a1a1a;
    background: #fff;
    transition: border-color .15s ease;
}

.cv-track__input:focus {
    outline: none;
    border-color: #000;
}

.cv-track__methods {
    display: inline-flex;
    gap: 0;
    padding: 0;
    background: #fff;
    border: 1px solid #d2d2d2;
    border-radius: 0;
}

.cv-track__method {
    appearance: none;
    border: 0;
    border-right: 1px solid #d2d2d2;
    background: #fff;
    padding: 11px 20px;
    border-radius: 0;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: #6a6a6a;
    cursor: pointer;
    transition: background-color .15s ease, color .15s ease;
}

.cv-track__method:last-child {
    border-right: 0;
}

.cv-track__method:hover {
    color: #000;
}

.cv-track__method.is-active {
    background: #000;
    color: #fff;
}

/* Square, uppercase brand button. */
.cv-track__submit {
    position: relative;
    width: 100%;
    min-height: 54px;
    padding: 16px 24px;
    border: 0;
    border-radius: 0;
    background: #000;
    color: #fff;
    font-family: var(--cv-font-accent);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color .2s ease;
}

.cv-track__submit:hover {
    background: #383838;
}

.cv-track__submit:active {
    transform: translateY(1px);
}

.cv-track__submit.is-loading {
    color: transparent;
    pointer-events: none;
}

.cv-track__spinner {
    display: none;
}

.cv-track__submit.is-loading .cv-track__spinner {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 18px;
    margin: -9px 0 0 -9px;
    border: 2px solid rgba(255, 255, 255, .4);
    border-top-color: #fff;
    border-radius: 50%;
    animation: cv-track-spin .7s linear infinite;
}

@keyframes cv-track-spin {
    to { transform: rotate(360deg); }
}

.cv-track__error {
    margin: 0 0 16px;
    padding: 12px 14px;
    border-radius: 0;
    border-left: 3px solid #b3261e;
    background: #fdecec;
    color: #b3261e;
    font-size: 14px;
    line-height: 1.45;
}

.cv-track__error[hidden] {
    display: none !important;
}

.cv-track__foot {
    margin: 22px 0 0;
    text-align: center;
    color: #6a6a6a;
    font-size: 14px;
}

.cv-track__foot a {
    color: #1a1a1a;
    font-weight: 600;
    text-decoration: underline;
}

/* ── Result ── */
.cv-track__result {
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid #ececec;
}

.cv-track__result[hidden] {
    display: none !important;
}

.cv-track-status {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 22px;
}

.cv-track-status__badge {
    align-self: flex-start;
    padding: 7px 14px;
    border-radius: 0;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: #eef0ee;
    color: #2c2c2c;
}

.cv-track-status--processing .cv-track-status__badge { background: #e7f0fb; color: #1b5fb0; }
.cv-track-status--completed  .cv-track-status__badge { background: #e6f5ec; color: #1f7a44; }
.cv-track-status--on-hold    .cv-track-status__badge { background: #fbf2dd; color: #9a6a12; }
.cv-track-status--pending    .cv-track-status__badge { background: #f1f1f1; color: #555; }
.cv-track-status--cancelled  .cv-track-status__badge,
.cv-track-status--failed     .cv-track-status__badge { background: #fdecec; color: #b3261e; }
.cv-track-status--refunded   .cv-track-status__badge { background: #efeaf6; color: #6a3fa0; }

.cv-track-status__blurb {
    margin: 0;
    color: #4a4a4a;
    font-size: 15px;
    line-height: 1.55;
}

.cv-track-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 32px;
    margin: 0 0 20px;
}

.cv-track-meta > div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.cv-track-meta dt {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #8a8a8a;
}

.cv-track-meta dd {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
}

.cv-track-items {
    list-style: none;
    margin: 0 0 20px;
    padding: 0;
    border: 1px solid #e2e2e2;
    border-radius: 0;
    overflow: hidden;
}

.cv-track-items li {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 16px;
    font-size: 14px;
    color: #2c2c2c;
}

.cv-track-items li:nth-child(even) {
    background: #faf9f7;
}

.cv-track-shipments h4 {
    margin: 0 0 8px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #444;
}

.cv-track-shipments p {
    margin: 0 0 4px;
    font-size: 14px;
}

@media (max-width: 600px) {
    .cv-track__methods { display: flex; width: 100%; }
    .cv-track__method { flex: 1; padding: 9px 6px; }
}

/* Screen-reader-only utility — content available to crawlers & assistive tech, hidden visually. */
.cv-sr-only{position:absolute!important;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0;}
