/*
Theme Name: Spritz Theme
Author: GrowthHit
Description: A hyper-optimized, lightweight, single-page custom theme for Spritz. Built natively without page builders or ACF.
Version: 1.0.0
*/

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --white: #ffffff;
    --off-white: #F8F5F3;
    --strip-bg: #D8E2E9;
    --card-bg: #D8E2E9;
    --green-pill: #c2fbb7;
    --green-stat: #c2fbb7;
    --teal: #326984;
    --dark: #292d2d;
    --body: #292d2d;
    --muted: #6b6d63;
    --faint: #9a9c92;
    --border: #dfe0d8;
    --input-border: #c5c6be;
    --radius: 8px;
    --radius-lg: 14px;
    --radius-xl: 18px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Montserrat", sans-serif;
    background: var(--off-white);
    color: var(--body);
    font-size: 14px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
    font-family: "DM Mono", monospace;
    font-weight: 500;
    color: var(--dark);
    line-height: 1.18;
}

img{
    display: block;
    max-width: 100%;
}
.secBgOffwhite{
	background: var(--off-white) !important;
}
.secBgStrip{
	background: var(--strip-bg) !important;
}
.container {
    width: 1310px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}
.two-col-grid {
	display: flex;
	gap: 60px;
	align-items: center;
}
.grid-column{
    flex: 1;
    position: relative;
}
.caption {
	border-radius: 30px;
	padding: 4px 12px;
	font-size: 12px;
	line-height: 20px;
	font-weight: 500;
	display: inline-block;
}
.caption-center{
    display: table;
    margin: auto;
}
.caption-white{
    background: var(--white);
}
.caption-green{
    background: var(--green-pill);
}

.secHeading{
    font-size: 40px;
    line-height: 1.15;
}
.secSubHeading{
    font-size: 16px;
    line-height: 1.5;
}
.textCenter{
    text-align: center;
}

/* === Header ===*/
header{
    background: var(--off-white);
}
.headerBar{
    padding: 12px 10px;
    background: rgba(41, 45, 45, 1);
    color: rgba(248, 245, 243, 1);
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0;
    text-align: center;
    text-transform: uppercase;
}
.headerLogo{
	display: flex;
}
.headerLogo a{
	padding: 20px 36px;
}
.headerLogo a img{
	mix-blend-mode: darken;
}
.activeLogo{
	background: var(--strip-bg)
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
}
.navbar svg{
    display: block;
}
.menuToggle {
    display: none;
}
.mainMenu {
    display: flex;
    align-items: center;
    gap: 32px;
}
.mainMenu ul {
    display: flex;
    list-style: none;
    gap: 32px;
}
.mainMenu ul li a {
    font-size: 14px;
    line-height: 20px;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--dark);
}
.nav-cta a{
    padding: 10px 24px;
    border: 1px solid var(--dark);
    border-radius: 30px;
}
/* == Accordions == */
.accordions {
    width: 100%;
    margin: 0 auto;
}
.accordion {
    border-bottom: 1.5px solid #F8F5F3;
    padding: 20px 0;
}
.accordion:last-child{
	border: 0;
}
.accordion-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 18px;
    line-height: 26px;
    gap: 15px;
}
.ps-info .accordion-title{
    font-weight: 500;
    font-family: 'DM Mono';
}
.accordion-copy {
    display: none; 
    padding: 20px 0 0;
    font-size: 15px;
    line-height: 23px;
}
.directionList {
    display: flex;
    gap: 8px 24px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}
.ps-info .accordion-copy ul{
    margin: 0;
    padding: 0;
    list-style-type: none;
    display: flex;
    flex-direction: column;
    gap: 8px 24px;
    flex-wrap: wrap;
    margin-bottom: 0px;
    max-width: 470px;
}
.accordion-copy p{
    margin-bottom: 5px;
}
.ps-info .accordion-copy p {
    margin-bottom: 12px;
}
.accordion-copy strong {
	font-weight: 600;
}
.accordion-icon {
    position: relative;
    width: 14px;
    height: 14px;
}
.accordion-icon::before,
.accordion-icon::after {
    content: "";
    position: absolute;
    background-color: var(--dark);
    transition: all 0.3s ease;
}
.accordion-icon::before { top: 6px; left: 0; width: 14px; height: 1px; } /* Horizontal */
.accordion-icon::after { top: 0; left: 6px; width: 1px; height: 14px; }  /* Vertical */

.accordion.is-open .accordion-icon::after {
    transform: rotate(90deg);
    opacity: 0;
}


/* ── PILLS ── */
.pill {
    display: inline-flex;
    align-items: center;
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    line-height: 21px;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 0px;
    position: relative;
}
.pill::after {
    content: ".";
    font-size: 20px;
    font-weight: 700;
    position: absolute;
    right: -3px;
    top: 0;
	z-index: 1;
}
.pill:last-child::after{
    display: none;
}
.pill-green {
    background: var(--green-pill);
    color: var(--dark);
}
.pill-white {
    background: var(--white);
    color: var(--dark);
}
.pill-outline {
    background: transparent;
    border: 1.5px solid var(--teal);
    color: var(--teal);
    font-size: 8.5px;
    letter-spacing: 0.1em;
}
.pill-row {
    display: flex;
    gap: 0px;
    flex-wrap: wrap;
    border-radius: 60px;
    overflow: hidden;
    max-width: max-content;
}

/* ── CTA FORM ── */
.cta-form{
	max-width: 520px;
	width: 100%;
}
.cta-form p{
    display: flex;
    max-width: 100%;
    border: 1px solid var(--teal);
    border-radius: 60px;
	align-items: center;
	justify-content: space-between;
}
.cta-form p br {
	display: none;
}
.cta-form .early-access-consent p{
	border: 0;
	margin-top: 10px;
}
.wpcf7{
	max-width: 100%;
}
.wpcf7-spinner{
	display: none;
}
.wpcf7-not-valid-tip {
	display: none;
}
.cta-form .wpcf7-form-control-wrap{
	max-width: 100%;
}
.cta-form .wpcf7-text{
    flex: 1;
    padding: 11px 14px;
    border: 0;
    border-radius: 60px;
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    line-height: 21px;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: uppercase;
    color: var(--teal);
    background: transparent;
    outline: none;
	width: 100%; !important;
	max-width: 100% !important;
}
.cta-form .wpcf7-text:focus {
    border-color: #888;
}
.cta-form .wpcf7-submit {
	display: flex;
	align-items: center;
	gap: 7px;
	padding: 14px 24px;
	background: var(--teal);
	color: var(--white);
	font-family: "Montserrat", sans-serif;
	font-size: 15px;
	line-height: 21px;
	font-weight: 500;
	letter-spacing: 0;
	text-transform: uppercase;
	border: none;
	border-radius: 60px;
	cursor: pointer;
	white-space: nowrap;
	transition: opacity 0.2s;
	position: relative;
}
.cta-form .wpcf7-submit:after{
	content:"";
	display: inline-block;
	width: 19px;
	height: 18px;
	background-image: url(/wp-content/uploads/2026/05/Vector-8.svg);
	background-repeat: no-repeat;
	background-position: center;
	margin-left: 10px;
}
.cta-btn:hover {
    opacity: 0.82;
}
::placeholder{
    color: var(--teal);
    opacity: 1;
}
::-ms-input-placeholder{
    color: var(--teal);
    opacity: 1;
}
.cta-group{
    display: flex;
    gap: 20px;
    align-items: center;
}
.center-cta{
	display: flex;
    justify-content: center;
}
.main-cta{
    display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 14px 24px;
	background: var(--teal);
	color: var(--white);
	font-family: "Montserrat", sans-serif;
	font-size: 15px;
	line-height: 21px;
	font-weight: 500;
	letter-spacing: 0;
	text-transform: uppercase;
	border: none;
	border-radius: 60px;
	cursor: pointer;
	white-space: nowrap;
	transition: opacity 0.2s;
	position: relative;
    text-decoration: none;
    justify-content: center;
}
.main-cta:after{
	content:"";
	display: inline-block;
	width: 19px;
	height: 18px;
	background-image: url(/wp-content/uploads/2026/05/Vector-8.svg);
	background-repeat: no-repeat;
	background-position: center;
	margin-left: 10px;
}
.secondary-cta{
    margin: 0;
    padding: 0 0 2px;
    font-size: 15px;
    line-height: 21px;
    color: var(--teal);
    border-bottom: 1px solid var(--teal);
    text-decoration: none;
    text-transform: uppercase;
}
/* ── CHECK ITEMS ── */
.check-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: var(--dark);
}

/* ════ NAVBAR ════ */
nav {
    position: sticky;
    top: 0;
    z-index: 200;
    background: var(--off-white);
    padding: 24px 0 10px;
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-right {
    display: flex;
    align-items: center;
}
.cs-txt {
    font-family: "DM Momo", monospace;
    font-size: clamp(16px, 3.8vw, 20px);
    line-height: 26px;
    color: var(--dark);
    font-weight: 500;
}
.cnt-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 25px;
    position: relative;
}
.cnt-block:last-child{
    padding-right: 0;
}
.cnt-block::after{
    content: "";
    height: 48px;
    width: 1px;
    background: var(--dark);
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
.cnt-block:last-child::after{
    display: none;
}
.cnt-num {
    font-family: "DM Mono", monospace;
    font-size: clamp(32px, 3.8vw, 36px);
    font-weight: 500;
    color: var(--dark);
    line-height: 1.16;
}
.cnt-lbl {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(12px, 3.8vw, 14px);
    line-height: 20px;
    text-transform: lowercase;
    color: var(--dark);
    font-weight: 400;
}

/* General Page Content */
body:not(.woocommerce-page) .pageHeader{
	background: var(--teal);
    padding: 50px 0;
}
body:not(.woocommerce-page) .pageHeader h1{
   font-size: 52px;
   color: var(--white)
}
body:not(.woocommerce-page) .generalPageContent{
   padding: 68px 0;
}
body:not(.woocommerce-page) .generalPageContent h2 {
    font-size: 40px;
    margin-bottom: 20px;
}
body:not(.woocommerce-page) .generalPageContent h3 {
    font-size: 24px;
    margin-bottom: 15px;
}
body:not(.woocommerce-page) .generalPageContent p {
    font-size: 16px;
     margin-bottom: 15px;
}
body:not(.woocommerce-page) .generalPageContent a{
  color: var(--body);
}
body:not(.woocommerce-page) .generalPageContent a:hover{
  color: var(--teal);
}
body:not(.woocommerce-page) .generalPageContent ul {
    padding-left: 18px;
    margin-bottom: 15px;
    font-size: 16px;
}

/* ════ HERO ════ */
.hero {
    padding: 62px 0 54px;
    background: var(--card-bg);
}
.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 40px;
    align-items: center;
}
.hero-pills {
    margin-bottom: 16px;
}
.hero h1 {
    font-size: 53px;
    margin-bottom: 16px;
    line-height: 1.11;
}
.hero-sub {
    font-size: 16px;
    color: var(--dark);
    margin-bottom: 32px;
    line-height: 1.44;
}
.hero-note {
    margin-top: 20px;
    line-height: 20px;
    
}
.hero-note strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 3px;
    font-weight:600 ;
}

/* hero image panel — teal liquid bg */
.hero-panel {
    position: relative;
}
.heroVideos {
    display: flex;
    gap: 20px;
}
.heroVideoWrap {
    position: relative;
}
.heroVideo{
    overflow: hidden;
    border: 1px solid var(--dark);
    border-radius: 12px;
}
.heroVideo iframe{
    height: 445px;
    display: block;
}
.heroVideoWrap span {
    position: absolute;
    left: 50%;
    border: 1px solid var(--dark);
    background: var(--off-white);
    padding: 5px 16px;
    border-radius: 40px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.5;
    margin-top: -15px;
    text-transform: uppercase;
    display: table;
    transform: translateX(-50%);
}
.heroVideoWrap span.darkBgTag{
    background: var(--dark);
    color: var(--off-white);
}
.hero-badge {
    position: absolute;
    bottom: 20px;
    left: 50%;
	transform: translatex(-50%);
    background: var(--green-pill);
    color: var(--dark);
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    line-height: 21px;;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 20px;
}
.pdpHero{
	background: var(--strip-bg)
}

/* Site Switch Popup */
.siteSwitchPopup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(20, 20, 20, 0.6);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.siteSwitchPopup.active {
    display: flex;
}

/* Popup box */
.siteSwitchPopup .popupContent {
    position: relative;
    background: #F8F5F3;
    max-width: 518px;
    width: 100%;
    padding: 24px;
    border-radius: 16px;
}

/* Close icon */
.siteSwitchPopup .closePopup {
    position: absolute;
    top: 24px;
    right: 24px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
/* Heading */
.siteSwitchPopup h3 {
    font-family: 'DM Mono';
    font-weight: 500;
    font-size: 26px;
    margin: 0 0 20px;
    line-height: 32px;
    color: var(--dark);
    padding-right: 30px;
}

/* Paragraphs */
.siteSwitchPopup p {
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 16px;
}

.siteSwitchPopup p:last-of-type {
    margin-bottom: 28px;
}

/* Main CTA layout addition (only spacing/display, since it's already styled) */
.siteSwitchPopup .main-cta {
    margin-bottom: 20px;
}

/* Stay link */
.siteSwitchPopup .popupContent > a:not(.main-cta) {
    display: inline-block;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.3px;
    color: #326984;
    text-decoration: underline;
    text-underline-offset: 3px;
    cursor: pointer;
}


/* Mobile */
@media (max-width: 480px) {
    .siteSwitchPopup h3 {
        font-size: 24px;
    }
}

/* ════ STRIP ════ */
.strip {
    background: var(--teal);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.strip-grid {
    display: flex;
    gap: 32px;
    padding: 32px 0;
}
.ps-wrap .strip-grid {
    gap: 16px;
    flex-wrap: wrap;
}
.strip-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 16px;
}

.ps-wrap .strip-item {
    flex: 0 0 calc(50% - 8px);
    padding: 12px 16px;
    border-radius: 8px;
    background: var(--strip-bg);
}
.pdpHero .ps-wrap .strip-item{
	background: var(--off-white)
}
.strip-grid.strip-two-col {
    flex-wrap: wrap;
    gap: 20px 28px;
    padding: 0;;
}
.strip-two-col .strip-item {
    flex: auto;
    min-width: 290px;
}
.strip-icon {
    width: 48px;
    height: 48px;
}
.strip-two-col .strip-icon {
    width: 44px;
    height: 44px;
}
.strip-item  img{
    width: 100%;
    height: auto;
}
.strip-text{
    width: calc(100% - 64px);
}
.strip-text strong {
    display: block;
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 21px;
    text-transform: uppercase;
    color: var(--off-white);
    margin-bottom: 6px;
}
.pdpHero .strip-text strong{
	color: var(--dark);
	margin: 0;
  max-width: 190px;
}
.shopHero .strip-text strong{
	color: var(--dark);
	margin: 0;
}
.strip-two-col .strip-text strong {
    font-size: 14px;
    line-height: 20px;
}
.strip-text span {
    font-size: 14px;
    font-weight: 400;
    color: var(--dark);
    line-height: 20px;
}

/* ════ EXIST ════ */
.exist {
    padding: 64px 0 0px;
    background: var(--off-white);
}
.exist-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}
.exist-grid:not(:last-child){
    margin-bottom: 48px;
}
.exist-left h2 {
    font-size: clamp(32px, 3vw, 40px);
}
/* diagram */
.diag {
    width: 100%;
}

/* right col */
.exist-desc {
    font-size: 18px;
    color: var(--dark);
    line-height: 26px;
}
.what-box {
    border: 1.5px solid var(--dark);
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.what-head {
    padding: 24px;
    border-bottom: 1.5px solid var(--dark);
}
.what-head .pill-row {
    margin-bottom: 16px;
}
.what-head h3 {
    font-size: 40px;
    margin-bottom: 12px;
}
.what-head p {
    font-size: 15px;
    color: var(--dark);
    line-height: 1.5;
    margin-bottom: 10px;
}

.research-card {
    background: var(--strip-bg);
    padding: 24px;
}
.rc-top {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 11px;
}
.rc-icon {
    width: 60px;
    height: 60px;
}
.rc-title {
    font-size: 24px;
    font-weight: 500;
    color: var(--dark);
    line-height: 1.4;
}
.rc-desc {
    font-size: 15px;
    color: var(--dark);
    line-height: 1.5;
    margin-bottom: 14px;
}
.rc-badges {
    display: flex;
    gap: 40px;
}
.rc-badge {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--dark);
    line-height: 20px;
}

/* ════ DELIVERY ════ */
.delivery {
    padding: 40px 0;
    background: var(--off-white);
}
.delivery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.silhouette-wrap {
    opacity: 0.3;
    text-align: center;
}
.sil-body {
    width: 58px;
    height: 96px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 29px 29px 6px 6px;
    position: relative;
}
.sil-body::before {
    content: "";
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
}
.delivery-content h2 {
    margin-bottom: 20px;
}
.delivery-content p {
    font-size: 16px;
    color: var(--dark);
    line-height: 1.5;
    margin-bottom: 20px;
}
.checks-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 18px 0 24px;
}
.delivery-sub {
    font-size: 11px;
    color: var(--dark);
    font-style: italic;
    margin-top: 9px;
}
.delivery-sub strong {
    color: var(--dark);
    font-style: normal;
    font-size: 14px;
    font-weight: 600;
}

/* ════ STATS ════ */
.stats {
    padding: 68px 0 40px;
    background: var(--off-white);
    text-align: center;
}
.stats h2 {
    margin-bottom: 9px;
}
.stats > .container > p {
    font-size: 16px;
    color: var(--dark);
    margin-bottom: 40px;
}
.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.stat-card {
    background: var(--green-stat);
    border-radius: var(--radius);
    padding: 22px 26px;
    display: flex;
    align-items: center;
    gap: 24px;
    text-align: left;
}
.stat-num {
    font-family: "DM Mono", monospace;
    font-size: clamp(44px, 4.2vw, 60px);
    font-weight: 500;
    color: var(--dark);
    white-space: nowrap;
    line-height: 1;
    flex-shrink: 0;
}
.stat-desc {
    font-size: 16px;
    color: var(--body);
    line-height: 1.5;
    font-weight: 400;
}

/* ════ WHY ════ */
.why {
    padding: 0;
    background: var(--off-white);
    text-align: center;
}
.whyWrapperbg {
    background-size: cover;
    background-position: center bottom;
    padding: 60px 0 140px;
}
.whyWrapperbg {
    background-size: cover;
    background-position: center bottom;
    padding: 70px 0 260px;
}
.blurBG {
    padding: 40px 0;
    background: rgba(248, 245, 243, 0.6);
    border-radius: 16px;
    backdrop-filter: blur(20px);
}
.why h2 {
    margin-bottom: 9px;
}
.why > .container > p {
    color: var(--dark);
    margin: 0 auto 44px;
    line-height: 1.5;
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
	margin-top: 36px
}
.why-card {
    background: var(--card-bg);
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 20px;
    position: relative;
}
/*.why-card:after {
    content: "";
    position: absolute;
    height: 120px;
    width: 1px;
    background: var(--dark);
    right: -10px;
    top: 50%;
    margin-top: -60px;
}*/
.why-card:last-child::after{
    display: none;
}
.why-icon {
    width: 46px;
    height: 46px;
    margin: 0 auto 16px;
}
.why-card h4 {
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    color: var(--dark);
    margin-bottom: 10px;
    line-height: 1.16;
}
.why-card p {
    font-size: 14px;
    color: var(--dark);
    line-height: 1.42;
}

/* ════ FINAL CTA ════ */
.final {
    padding: 40px 0 0;
    background: var(--off-white);
}
.final-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.final-content h2 {
    font-size: 46px;
    margin-bottom: 16px;
}
.final-content > p {
    font-size: 16px;
    color: var(--dark);
    margin-bottom: 20px;
    line-height: 1.5;
    letter-spacing: 0;
}
.final-content .checks-col {
    margin: 0 0 32px;
}

/* === Instruction Section === */
.instructionSec {
	background: #DEE9F1;
	padding: 68px 0;
}

.instructionSec h2 {
	margin: 16px 0 32px;
}
.instructions {
	display: flex;
	flex-direction: column;
	gap: 24px;
}
.instruction {
	display: flex;
	gap: 16px;
    align-items: center;
}
.roundNum {
	height: 40px;
	width: 40px;
	border: 1px solid #292D2D;
	border-radius: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	font-family: 'DM Mono';
}
.instructionCopy{
    width: calc(100% - 56px);
}
.instruction h4 {
    font-weight: 500;
    font-size: 24px;
    line-height: 30px;
    letter-spacing: 0;
    margin-bottom: 8px;
}
.instruction p{
    font-size: 15px;
    line-height: 23px;
}
.hiw_copy{
    margin-bottom: 36px;
}
.hiw_copy p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 15px;
}

/* === Who is it  === */
.whoisit {
	background: var(--strip-bg);
	padding: 68px 0;
}
.whoisit h2 {
	font-size: 36px;
	line-height: 1.16;
    margin: 16px 0 20px;
}
.checkIconList {
	margin: 0 0 32px;
	padding: 0;
	list-style-type: none;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.checkIconList li {
	font-size: 16px;
	line-height: 1.5;
	padding-left: 34px;
    background-repeat: no-repeat;
    background-position: center left;
    background-image: url('data:image/svg+xml,<svg width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M7.86914 2.68262C9.60689 2.02855 11.5062 1.93458 13.2998 2.41504C13.6398 2.50616 13.8421 2.85621 13.751 3.19629C13.6598 3.53616 13.3106 3.73738 12.9707 3.64648C11.4343 3.23481 9.80695 3.31471 8.31836 3.875C6.82983 4.43523 5.55457 5.44817 4.6709 6.77051C3.78723 8.09304 3.33957 9.65934 3.3916 11.249C3.44364 12.8387 3.9927 14.3719 4.96094 15.6338C5.92921 16.8957 7.26797 17.8235 8.79004 18.2852C10.3121 18.7469 11.9411 18.7193 13.4473 18.208C14.9531 17.6967 16.2612 16.7271 17.1875 15.4346C18.114 14.1416 18.6123 12.5906 18.6123 11C18.6123 10.6479 18.8979 10.3623 19.25 10.3623C19.6021 10.3623 19.8877 10.6479 19.8877 11C19.8877 12.8569 19.3062 14.6674 18.2246 16.1768C17.1429 17.6862 15.6149 18.8191 13.8564 19.416C12.0981 20.0128 10.1968 20.0439 8.41992 19.5049C6.64296 18.9658 5.07965 17.8834 3.94922 16.4102C2.81882 14.9369 2.17799 13.1469 2.11719 11.291C2.05643 9.43499 2.5787 7.60652 3.61035 6.0625C4.64195 4.51859 6.13131 3.33677 7.86914 2.68262Z" fill="black" stroke="%23F8F5F3" stroke-width="0.1"/><path d="M17.374 4.41895C17.5915 4.14211 17.9918 4.09405 18.2686 4.31152C18.5454 4.52903 18.5934 4.92921 18.376 5.20605L10.8135 14.8311C10.7008 14.9744 10.5325 15.0634 10.3506 15.0742C10.1686 15.0851 9.99023 15.0176 9.86133 14.8887L6.42383 11.4512C6.17488 11.2022 6.17487 10.7978 6.42383 10.5488C6.67278 10.2999 7.07723 10.2999 7.32617 10.5488L10.2158 13.4385L10.2549 13.4785L10.29 13.4346L17.374 4.41895Z" fill="black" stroke="%23F8F5F3" stroke-width="0.1"/></svg>');
}


/* === FAQ === */
.faqSection{
    padding: 68px 0 68px;
    background: var(--off-white);
}
.faqSection h2 {
    margin: 16px 0 32px;
}
.trustBox{
    background: #DEE9F1;
    padding: 16px;
    border-radius: 12px;
    margin-top: 32px;
}
.trustBox h4{
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 8px;
}
.trustBox p{
    font-size: 15px;
    line-height: 23px;
    margin-bottom: 16px;
}
.trustTag {
	display: flex;
	gap: 12px;
}
.trustTag span {
	padding: 4px 12px;
	background: var(--teal);
	color: var(--card-bg);
	border-radius: 20px;
	font-size: 12px;
	line-height: 20px;
    text-transform: uppercase;
}


/* == Sounds Familiar == */
.soundsFamiliar{
    padding: 64px 0 40px;
    background: var(--off-white);
}

.soundsFamiliar h2{
    text-align: center;
    margin-bottom: 16px;
    margin-top: 16px;
}
.soundsFamiliar .secSubHeading{
	margin-bottom: 48px;
}
.crossIconBoxes {
	display: flex;
	gap: 20px;
}
.crossIconBoxes > div {
	flex: 1;
	position: relative;
	text-align: center;
	padding: 26px 18px 18px;
	border: 1px solid var(--dark);
	border-radius: 12px;
}
.crossIconBoxes > div p{
	letter-spacing: -0.03em;
}
.crossIconBoxes h4,
.iconBox h4 {
	font-size: 22px;
	line-height: 28px;
	margin-bottom: 8px;
}
.crossIconBoxes img {
	position: absolute;
	top: -16px;
	left: 50%;
	margin-left: -16px;
}
.iconBoxes {
	display: flex;
	gap: 20px;
    margin-top: 20px;
}
.iconBox {
	flex: 1;
	background: var(--strip-bg);
	border-radius: 12px;
	padding: 20px;
	display: flex;
	gap: 16px;
    align-items: center;
}
.iconBox img{
    height: 44px;
    width: 44px;
}

/* === Products Section */
.productSection {
	background: var(--strip-bg);
	padding: 64px 0 44px;
    margin-top: 28px;
}
.woocommerce-shop .productSection {
	padding: 64px 0;
}
.productSection h2 {
	text-align: center;
	margin-bottom: 16px;
}
.productSection p.subHeading {
	text-align: center;
    margin-bottom: 36px;
}
.productSlideBox {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	gap: 6px;
    position: relative;
}
.productSlideBox h4{
    font-size: 20px;
    line-height: 26px;
    padding-top: 10px;
    text-transform: capitalize;
}
.productTag {
	border: 1px solid var(--teal);
	border-radius: 30px;
	color: var(--teal);
	padding: 4px 12px;
	font-size: 12px;
	line-height: 18px;
	position: absolute;
	top: 16px;
	left: 16px;
    text-transform: uppercase;
}
.productSlideBox::after {
	content: "";
	height: 260px;
	width: 260px;
	background: #F8F5F3;
	filter: blur(120px);
	position: absolute;
	left: 50%;
	top: 62px;
	z-index: -1;
	transform: translateX(-50%);
    border-radius: 300px;
}
.productSlideBox.best_value::after{
    background: rgba(194, 251, 183, 1);
}
.mainProductsWrapper .productTag{
    background: var(--off-white);
    top: 20px;
    left: 20px;
}
.mainProductsWrapper .ps-wrap .productTag,
.productSlideBox.best_value .productTag {
	background: var(--teal);
	color: var(--white);
}


.mainProductsWrapper{
    display: flex;
    gap: 68px;
    flex-direction: column;
}
.mainProductsWrapper .ps-wrap{
    background: var(--off-white);
    padding: 60px;
    border-radius: 20px;
}
.post-type-archive-product .mainProductsWrapper .ps-wrap{
    background: var(--strip-bg);
}
.post-type-archive-product .mainProductsWrapper .strip-grid,
.post-type-archive-product .mainProductsWrapper .accordions{
	display: none !important;
}
.productSection .two-col-grid{
    max-width: 1200px;
}
.two-col-grid:nth-child(even){
    flex-direction: row-reverse;
}
.productTitle{
    font-size: 36px;
    line-height: 1.16;
    text-align: left !important;
}
.productDesc{
    font-size: 15px;
    line-height: 1.53;
    margin-bottom: 16px;
}
.productDesc p:not(:last-child){
    margin-bottom: 10px;
}
.productDesc strong{
    font-weight: 600;
}
.productSection .checkIconList{
    margin-bottom: 32px;
}
.productSection .checkIconList li {
    font-size: 14px;
    line-height: 1.42;
    padding-left: 24px;
    background-repeat: no-repeat;
    background-position: center left;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none"><g clip-path="url(%23clip0_1237_7261)"><path fill-rule="evenodd" clip-rule="evenodd" d="M0.666992 7.99984C0.666992 3.94975 3.95024 0.666504 8.00033 0.666504C12.0504 0.666504 15.3337 3.94975 15.3337 7.99984C15.3337 12.0499 12.0504 15.3332 8.00033 15.3332C3.95024 15.3332 0.666992 12.0499 0.666992 7.99984ZM11.0748 4.99981L6.77806 9.09084L4.92584 7.33317L4.00033 8.29297L5.85255 10.0506C6.36905 10.5487 7.18706 10.5487 7.70359 10.0506L12.0003 5.9596L11.0748 4.99981Z" fill="%230E4F70"/></g><defs><clipPath id="clip0_1237_7261"><rect width="16" height="16" fill="white"/></clipPath></defs></svg>');
}
/* ==
= Testimonial Section ===*/
.secTestimonial{
    padding: 64px 0 100px;
    background: var(--off-white);
}
.woocommerce-shop .secTestimonial{
    padding: 64px 0 100px;
}
.secTestimonial h2{
    margin: 16px 0 40px;
    text-align: center;
}
.testimonialBox {
	background: var(--strip-bg);
	padding: 20px;
	border-radius: 10px;
	display: flex;
	flex-direction: column;
	gap: 12px;
    margin: 0 10px;
    height: 100%;
}
.testimonialCopy{
    font-size: 15px;
    line-height: 21px;
}
.testimonialCopy strong{
    font-size: 16px;
    display: block;
    line-height: 24px;
    font-weight: 500;
    margin-bottom: 8px;
}
.authName {
	display: flex;
	gap: 8px;
	align-items: center;
    margin-top: auto;
}
.authName > span {
	font-weight: 500;
}
.verifiedBadge {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 12px;
	color: var(--teal);
}
.testimonialSlider .slick-arrow {
    top: calc(100% + 50px);    
}
.testimonialSlider .slick-next {
    margin-right: -50px;
	right: 50%;
	left: unset;
}
.testimonialSlider .slick-prev {
    margin-left: -50px;
	left: 50%;
	right: unset;
}
.testimonialSlider .slick-track {
    display: flex;
    align-items: stretch;
}
.testimonialSlider .slick-slide {
    height: auto;
}

/* === Spotlight === */
.spotlight{
    background: var(--strip-bg);
    padding: 36px 0 68px;
}
.spotlight h2{
    margin: 16px 0px;
}

/* === Difference === */
.difference {
	background: var(--off-white);
	padding: 68px 0 68px;
}
.difference h2{
    margin: 16px 0;
}

.compTable {
	display: flex;
	flex-wrap: nowrap;
    margin-top: 40px;
}
.tableColumn {
	flex: 1;
}
.compTable ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
}
.compTable ul li {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 8px;
	border-bottom: 1px solid var(--strip-bg);
	min-height: 100px;
	justify-content: center;
	padding: 0 30px;
	line-height: 20px;
}
.tableHeading {
	border: 0 !important;
	min-height: 60px !important;
    font-size: 20px;
    font-weight: 500;
    font-family: 'DM Mono';
}
.compTable ul.terms li{
    align-items: flex-start;
    padding-left: 0;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 500;
    text-align: left;
    text-transform: uppercase;
}
.compTable ul li:last-child{
    border: 0;
}
.highlighted {
	background: var(--strip-bg);
	border-radius: 12px;
}
.secBgStrip .highlighted{
	background: var(--off-white);
}
 
/* === Video Review ===*/
.videoReviewSec{
    padding: 64px 0 44px;
}
.videoReviewSec h2{
    font-size: 32px;
    margin-bottom: 40px;
}
.videoReviews {
	display: flex;
	gap: 32px;
	justify-content: center;
}
.videoReviews .slick-arrow{
	top: unset;
	bottom: -60px;
	
}
.videoReviews .slick-prev{
	margin-left: -50px;
	left: 50%;
	right: unset;
}
.videoReviews .slick-next {
	margin-right: -50px;
	left: unset;
	right: 50%;
}
.reviewBox {
	flex: 0 0 calc((100% - 96px) / 4);
	display: flex;
	align-items: center;
    flex-direction: column;
	margin: 0 10px;
}
.videoWrap {
	width: 100%; 
    border-radius: 8px 8px 0 0;
    overflow: hidden;
}
.videoWrap iframe{
    display: block;
}
.userVideo {
        width: 100%;
        margin: auto;
}
.video-wrapper {
        position: relative;
        width: 100%;
        padding-top: 100%; /* 16:9 */
}

.video-wrapper iframe {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
}
.textWrapper {
	width: 100%;
	padding: 24px 18px;
	text-align: center;
	background: var(--green-pill);
	border-radius: 0 0 8px 8px;
	font-size: 18px;
	line-height: 24px;
}

/* === Upcoming Products Section === */
.upcomingProducts {
	padding-bottom: 68px;
}
.upcomingProducts h2{
	margin: 16px 0;
}
.uProducts{
	display: flex;
	justify-content: center;
	gap: 60px;
	margin: 40px 0;
}
.uProducts > div{
	position: relative;
	display:flex;
	justify-content: center;
	align-items: center;
	width: 380px;
	height: 400px;
	max-width: 100%;
}
.uProducts h3 {
	position: absolute;
	z-index: 2;
	font-size: 24px;
}
.uProducts > div::after {
	content: "";
	position: absolute;
	height: 100%;
	width: 100%;
	background: #C2FBB7CC;
	backdrop-filter: blur(15px);
	z-index: 1;
}

/* === Final CTA Section === */
.finalCta{
	background: #D8E2E9;
	padding: 68px 0;
}
.finalCta .pill-row{
	margin: 0 auto 16px;
}
.finalCta .secHeading{
	margin-bottom: 16px;
	font-size: 52px;
}
.finalCta .secSubHeading{
	margin-bottom: 32px;
}
/* === Home Cart Section === */
.homeCartSection {
    background: var(--off-white);
}
.homeCartSection .strip-grid,
.homeCartSection .accordions{
  display: none;
}

/* === Account Page === */
.woocommerce-account{
    background: #dee9f1;
}
.woocommerce-account .page-title{
padding-top: 40px;
font-size: 40px;
}
.woocommerce-account .generalPageContent{
padding: 32px 0 40px;
font-size: 16px;
line-height: 24px;
}
.woocommerce-account .generalPageContent a{
color: var(--dark);
}
.woocommerce-MyAccount-navigation{
border-radius: 12px;
    padding: 20px;
}
.woocommerce-MyAccount-navigation ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.woocommerce-MyAccount-navigation ul li a{
font-size: 16px;
line-height: 24px;
text-decoration: none;
color: var(--dark);
}
.woocommerce-info {
    border-top-color: var(--teal);
    background: var(--off-white);
}
.woocommerce-info::before {
    color: var(--teal);
}
.woocommerce-info a{
 background: var(--teal) !important;
 color: var(--white) !important;
}

.woocommerce-MyAccount-content{
    background: var(--off-white);
    padding: 20px;
    border-radius: 12px;
}
.woocommerce-MyAccount-content form .input-text,
.woocommerce-MyAccount-content form .select2-selection{
    padding: 14px 13px !important;
    border: 1px solid rgba(41, 45, 45, 0.15) !important;
    border-radius: 8px;
    min-height: 48px;
    background: transparent !important;
}
.woocommerce-MyAccount-content form .select2-selection span{
padding: 0 !important;
}
.woocommerce-MyAccount-content form fieldset {
    border: 0;
        margin-top: 24px;
}
.woocommerce-MyAccount-content form label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.42;
    margin-bottom: 6px;
}
.woocommerce-MyAccount-content form legend {
    font-family: "DM Mono", monospace;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.27;
    margin: 0 0 20px;
    display: flex;
    align-items: baseline;
    gap: 8px;
}
span#account_display_name_description {
    font-size: 13px;
}
.woocommerce-MyAccount-content form .button{
 background: var(--teal) !important;
 color: var(--white) !important;
}
.woocommerce-account .addresses .title .edit {
     float: left; 
}
header.woocommerce-Address-title.title {
    padding: 10px 0;
}
/* ════ LP FOOTER ════ */
footer {
    background: var(--off-white);
    padding: 60px 0 32px;
    text-align: center;
}
.foot-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}
.foot-logo img {
    max-width: 158px;
}
.foot-logo img {
    max-width: 158px;
}
.foot-disc {
    font-size: 12px;
    color: var(--dark);
    max-width: 785px;
    margin: 0 auto;
    line-height: 18px;
}

/* ════ FOOTER ════ */
.footer{
    background: rgba(41, 45, 45, 1);
    padding: 60px 0 24px;
}
.footer *{
    color: rgba(243, 249, 243, 1);
    text-align: center;
}
.footerLogo {
    display: flex;
    justify-content: center;
    margin-bottom: 36px;
}
.footerContact{
    font-size: 15px;
    line-height: 21px;
    text-decoration: none;
}
.footerLinks {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 36px;
    text-transform: uppercase;
}
.footerLinks a{
    text-decoration: none;
    font-size: 14px;
    line-height: 20px;
}
.paymentLogo {
    display: flex;
    justify-content: center;
    margin: 36px 0 24px;
}
.footerDesc {
    font-size: 12px;
    line-height: 18px;
}
.visible-xs{
    display: none;
}
.productSlider {
	position: relative;
}
.slick-arrow {
	font-size: 0;
	height: 40px;
	width: 40px;
	border: 0;
	position: absolute;
	top: 50%;
	margin-top: -20px;
    z-index: 1;
    background-color: transparent;
}
.slick-prev {
	background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 40 40" fill="none"><circle cx="20" cy="20" r="19.4" transform="matrix(-1 0 0 1 40 0)" stroke="%23292D2D" stroke-width="1.2"/><path fill-rule="evenodd" clip-rule="evenodd" d="M29 20C29 19.5858 28.6642 19.25 28.25 19.25H11.75C11.3358 19.25 11 19.5858 11 20C11 20.4142 11.3358 20.75 11.75 20.75H28.25C28.6642 20.75 29 20.4142 29 20Z" fill="%23292D2D"/><path fill-rule="evenodd" clip-rule="evenodd" d="M19.0303 12.7197C18.7375 12.4268 18.2626 12.4268 17.9697 12.7197L11.2197 19.4697C10.9268 19.7625 10.9268 20.2375 11.2197 20.5303L17.9697 27.2803C18.2626 27.5732 18.7375 27.5732 19.0303 27.2803C19.3232 26.9874 19.3232 26.5126 19.0303 26.2197L12.8107 20L19.0303 13.7803C19.3232 13.4874 19.3232 13.0126 19.0303 12.7197Z" fill="%23292D2D"/></svg>');
}
.slick-next {
	right: 0;
	background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 40 40" fill="none"><circle cx="20" cy="20" r="19.4" stroke="%23292D2D" stroke-width="1.2"/><path fill-rule="evenodd" clip-rule="evenodd" d="M11 20C11 19.5858 11.3358 19.25 11.75 19.25H28.25C28.6642 19.25 29 19.5858 29 20C29 20.4142 28.6642 20.75 28.25 20.75H11.75C11.3358 20.75 11 20.4142 11 20Z" fill="%23292D2D"/><path fill-rule="evenodd" clip-rule="evenodd" d="M20.9697 12.7197C21.2625 12.4268 21.7374 12.4268 22.0303 12.7197L28.7803 19.4697C29.0732 19.7625 29.0732 20.2375 28.7803 20.5303L22.0303 27.2803C21.7374 27.5732 21.2625 27.5732 20.9697 27.2803C20.6768 26.9874 20.6768 26.5126 20.9697 26.2197L27.1893 20L20.9697 13.7803C20.6768 13.4874 20.6768 13.0126 20.9697 12.7197Z" fill="%23292D2D"/></svg>');
}
/* ════ RESPONSIVE ════ */
@media (max-width: 767px) {
    .headerBar {
        font-size: 12px;
        line-height: 18px;
    }
    .menuToggle {
        display: block;
    }
    #closeMobileNav {
        height: 30px;
        width: 30px;
        border: 1px solid var(--dark);
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 40px;
        position: absolute;
        top: 20px;
        right: 20px;
        cursor: pointer;
    }
	.headerLogo a{
		padding: 16px 12px;
	}
    .headerMenuWrap {
        position: fixed;
        width: 100%;
        height: 100%;
        left: -800px;
        top: 0;
        background: var(--white);
        z-index: 1000;
        padding: 80px 20px 20px;
        transition: 0.5s ease all;
    }
    .headerMenuWrap.showMobileMenu{
        left: 0;
    }
    .mainMenu ul {
        flex-direction: column;
        align-items: center;
    }
    .headerLogo img{
        max-width: 108px;
    }
    .cta-group {
        flex-direction: column;
    }
    .main-cta {
        width: 100%;
    }
    .secHeading{
        font-size: 30px;
        text-align: center;
    }
    .nav-inner {
        flex-direction: column;
        gap: 24px;
    }
    .hero {
        padding: 32px 0 40px;
    }
    .woocommerce-shop .hero {
        padding: 32px 0 0px;
    }
    .heroImg{
        margin-bottom: 28px;
    }
    .hero-panel{
        margin-bottom: 32px;
    }
    .hero-pills {
        margin: 0 auto 16px;
    }
	.pill{
		font-size: 10px;
	}
	.shopHero .pill {
		font-size: 12px;
	}
    .hero h1{
        text-align: center;
		font-size: 30px;
    }
    .hero-sub {
        font-size: 15px;
        text-align: center;
    }
    .cta-form {
        margin: 0 auto;
    }
    .hero-note {
        text-align: center;
    }
    .hero-note strong {
        font-size: 14px;
    }
    .hero-note span{
        font-size: 12px;
    }
    .heroVideos {
        display: flex !important;
        gap: 12px;
        flex-wrap: nowrap;
        padding: 20px 0 32px;
    }
    .heroVideoWrap {
        width: calc(50% - 6px);
    }
    .heroVideo iframe {
        height: 247px;
    }
    body:not(.woocommerce-page) .page-header {
        padding: 30px 0;
    }
    body:not(.woocommerce-page) .page-header h1{
       font-size: 35px;
    }
    body:not(.woocommerce-page) .generalPageContent{
       padding: 45px 0;
    }
    body:not(.woocommerce-page) .generalPageContent h2 {
        font-size: 30px;
    }
    body:not(.woocommerce-page) .generalPageContent h3 {
        font-size: 22px;
    }
    .exist {
        padding: 40px 0 0px;
    }
    .exist-left h2 {
        text-align: center;
        margin-bottom: 24px;
    }
    .exist-left h2 br{
        display: none;
    }
    .exist-desc {
        text-align: center;
        font-size: 15px;
        line-height: 23px;
    }
    .reverse-xs > div:first-child{
        order: 2;
    }
    .reverse-xs > div:last-child{
        order: 1;
    }
    .exist-grid:not(:last-child) {
        margin-bottom: 32px;
    }
    .what-head,
    .research-card {
        padding: 20px 16px;
    }
	.what-head h3 {
		font-size: 30px;
	}
	.what-head h3 br{
		display: none;
	}
	.what-head p {
		font-size: 14px;
	}
	.rc-top {
		align-items: center;
	}
	.rc-desc {
		font-size: 15px;
	}
    .rc-title {
        font-size: 20px;
        font-weight: 500;
        color: var(--dark);
        line-height: 26px;
    }
    .delivery-sub{
        text-align: center;
    }
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .hero-grid,
    .delivery-grid,
    .final-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .exist-grid{
        grid-template-columns: 1fr;
        gap: 0;
    }
    .delivery {
        padding: 0px 0 24px;
    }
    .strip-grid {
       flex-wrap: wrap;
    }
    .delivery-content .cta-form{
        margin-top: 24px;
    }
    .stats {
        padding: 50px 0 20px;
        background: var(--off-white);
        text-align: center;
    }
	.stats h2 {
    	font-size: 34px;
	}
	.stats > .container > p {
		font-size: 15px;
	}
    .stat-card {
        padding: 14px 16px;
        gap: 16px;
    }
    .stat-desc {
        font-size: 15px;
        color: var(--body);
        line-height: 1.5;
        font-weight: 400;
    }
    .strip-item{
        flex-direction: column;
        align-items: center;
        text-align: center;
        flex: calc(50% - 16px);
    }
	.secBgStrip .strip-grid {
		gap: 12px;
	}
	.secBgStrip .strip-item{
		padding: 12px;
		border-radius: 8px;
		background: var(--off-white);
	}
	.secBgStrip .strip-text strong{
		color: var(--dark);
		font-size: 14px;
	}
    .strip-icon {
        width: 40px;
        height: 40px;
    }
    .whyWrapperbg {
        padding: 44px 0 145px;
        margin-bottom: 32px;
    }
    .blurBG {
        padding: 16px;
        border-radius: 12px;
    }
	.why {
		margin-top: -40px;
	}
	.why .blurBG > p {
		font-size: 15px; 
        text-align: left;
	}
    .why .blurBG > p  br{
		display: none;
	}
    .why-grid {
        grid-template-columns: 1fr;
    }
    .why-card {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 12px;
        background:#DEE9F1;
        padding: 20px;
    }
    .why-card::after{
        display: none;
    }
	.why-card > div{
		display: flex;
		gap: 16px;
		align-items: center;
	}
    .why-icon {
        margin: 0;
    }
    .why-card h4 {
        font-size: 17px;
        text-align: left;
		margin: 0;
		width: calc(100% - 62px);
    }
    .why-card p {
        text-align: left;
    }
    .rc-badges {
        flex-direction: column;
		gap: 8px;
    }
    .rc-badge {
        align-items: flex-start;
        flex-direction: row;
        justify-content: flex-start;
		text-align: left;
    }
	.rc-badge br{
		display: none;
	}
	.delivery-content h2 {
		font-size: 34px;
	}
	.delivery-content p {
		font-size: 15px;
	}
	.check-item {
		font-size: 15px;
	}
    .final {
        padding: 20px 0 0;
    }
    .final .cta-form {
        margin-top: 24px;
    }
    .final-content h2 {
        text-align: center;
		font-size: 34px;
    }
    .final-content > p {
        text-align: center;
		font-size: 15px;
    }
    .hidden-xs{
        display: none;
    }
    .visible-xs{
        display: block;
    }
    section .secHeading,
	.finalCta .secHeading{
        font-size: 30px;
    }
    .two-col-grid {
        flex-direction: column;
    }
    .secHeading br,
    .subHeading br{
        display: none;
    }
    .soundsFamiliar {
        padding: 40px 0 8px;
    }
    .soundsFamiliar h2 {
        margin-bottom: 30px;
    }
    .crossIconBoxes {
        flex-direction: column;
        padding-left: 15px;
    }
    .crossIconBoxes > div {
        text-align: left;
        padding: 18px 18px 18px 26px;
    }
    .crossIconBoxes img {
        top: 50%;
        left: 0;
        margin-top: -16px;
    }
    .crossIconBoxes h4{
        font-size: 18px;
        line-height: 26px;
    }
	.crossIconBoxes h4 br{
		display: none;
	}
    .iconBoxes {
        flex-direction: column;
    }
    .iconBox h4 {
        display: flex;
        gap: 12px;
        align-items: center;
        font-size: 20px;
        line-height: 26px;
    }
    .productSection {
        padding: 40px 0 24px;
    }
    .woocommerce-shop .productSection{
        margin-top: 0;
         padding: 40px 0;
    }
    .productSlideBox::after {
        height: 240px;
        width: 240px;
        filter: blur(100px);
    }
    .productTag {
        top: 0;
        left: -10px;
    }
    .productSlider .slick-list {
        padding: 0 30px;
    }
    .mainProductsWrapper .two-col-grid {
        flex-direction: column-reverse;
    }
    .mainProductsWrapper{
        gap: 48px;
    }
    .mainProductsWrapper .ps-wrap {
        padding: 20px 16px;
        border-radius: 12px;
    }
    .homeCartSection .ps-wrap {
        padding: 20px 0px;
    }
    .mainProductsWrapper .two-col-grid{
        gap: 24px;
    }
    .productTitle {
        font-size: 32px;
    }
    .instructionSec {
        background: #DEE9F1;
        padding: 24px 0 40px;
    }
    .instructionSec .pill-row{
        margin: auto;
    }
    .instruction h4 {
        font-size: 20px;
        line-height: 26px;
    }
    .instruction .pill-row {
        margin: auto;
    }
    .instructions {
        margin-top: 24px;
    }
    .videoReviewSec {
        padding: 40px 0 80px;
    }
    .videoReviewSec h2 span{
        display: block;
    }
    .videoReviews {
        flex-direction: column;
    }
    .textWrapper {
        padding: 16px;
        font-size: 16px;
        line-height: 22px;
    }
    .reviewBox:nth-child(even) {
        flex-direction: row-reverse;
    }
    .reviewBox:nth-child(even) .textWrapper{
        border-radius: 8px 0 0 8px;
    }
    .whoisit {
        padding: 40px 0 24px;
    }
    .whoisit h2{
        text-align: left;
    }
    .whoisit img{
        margin-bottom: 28px;
    }
    .spotlight {
        padding: 24px 0 68px;
    }
    .spotlight .caption{
        margin: auto;
        display: table;
    }
	.secSubHeading{
		font-size: 15px;
	}
	.secSubHeading br{
		display: none;
	}
	.soundsFamiliar .secSubHeading {
		margin-bottom: 28px;
	}
    .spotlight .secSubHeading{
        text-align: center;
    }
    .secTestimonial {
        padding: 40px 0 80px;
    }
    .secTestimonial .container{
        padding: 0 !important;
    }
    .testimonialSlider .slick-list{
        padding: 0 30px;
    }

    .testimonialBox {
        margin: 0 8px;
    }
    .faqSection {
        padding: 24px 0 40px;
    }
    .faqSection h2 {
        margin: 16px 0 10px;
    }
    .faqSection .caption{
        margin: auto;
        display: table;
    }
    .accordion-title {
        font-size: 16px;
        line-height: 22px;
    }
    .accordion-copy {
        display: none;
        padding: 20px 0 0;
        font-size: 14px;
        line-height: 20px;
    }
    .trustBox h4 {
        font-size: 18px;
        line-height: 24px;
    }
    .trustBox p {
        font-size: 14px;
        line-height: 22px;
    }
    .trustTag {
        flex-wrap:wrap;
    }
    .difference {
        padding: 24px 0 40px;
    }
    .compTable {
        overflow-x: scroll;
    }
    .compTable > div:first-child {
        position: sticky;
        left: 0;
        background: var(--off-white);
    }
	.secBgStrip .compTable > div:first-child{
		background: var(--strip-bg);
	}
    .compTable ul {
        min-width: 192px;
    }
    .compTable ul.terms {
        min-width: 101px;
    }
    .compTable ul li {
        min-height: 100px;
        padding: 0 16px;
        line-height: 1.5;
        font-size: 12px;
    }
    .compTable ul.terms li {
        font-size: 12px;
    }
    .tableHeading {
        min-height: 40px !important;
        font-size: 17px !important;
        padding-top: 10px !important;
    }
    .tableHeading img{
        max-width: 88px;
    }

    .footerLogo {
        margin-bottom: 28px;
    }
    .footerLinks {
        gap: 16px;
        margin-top: 28px;
        flex-direction: column;
    }
    .paymentLogo {
        margin: 28px 0;
    }
}

@media(max-width: 540px){
	.wpcf7-form {
		width: 100%;
		max-width: 100%;
	}
	.cta-form .wpcf7-form-control-wrap {
		max-width: 100%;
		width: 100%;
	}
    .cnt-block {
        padding: 0 20px;
    }
    .pill {
        padding: 5px 8px;
    }
    .pill::after {
        right: -2px;
        z-index: 1;
		font-size: 16px;
	}
    .cta-form p {
        border: none;
        border-radius: 0px;
        flex-direction: column;
        gap: 12px;
    }
    .cta-form input.wpcf7-text{
        border: 1px solid var(--teal);
        text-align: center;
        padding: 13px 14px;
		max-width: 100%;
    }
	

    .cta-form .wpcf7-submit {
        justify-content: center;
		width: 100%;
    }
    .strip-grid{
        gap: 24px 32px;
    }
    .strip-text span{
        display: none;
    }
    .strip-grid.strip-two-col {
        flex-wrap: wrap;
        gap: 20px 10px;
        padding: 0;
    }
    .strip-two-col .strip-item {
        flex: 0 0 calc(50% - 5px);
        min-width: auto;
    }
    .strip-text {
        width: 100%;
    }
	.uProducts {
		flex-direction: column;
		align-items: center;
	}
	.uProducts > div {
		width: 295px;
		height: 295px;
	}
	.uProducts > div:nth-child(1) + div{
		display: none;
	}
	.uProducts > div img{
		height: 263px;
	}
	.upcomingProducts .main-cta{
		width: auto;
	}
}



/* ── OVERLAY ── */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(30, 28, 26, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.popup-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* ── POPUP CARD ── */
.popup-card {
  background: var(--off-white);
  border-radius: var(--radius);
  width: 100%;
  max-width: 820px;
  position: relative;
  display: flex;
  justify-content: space-between;
  padding: 40px 32px 36px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,.22), 0 8px 24px rgba(0,0,0,.12);
  transform: translateY(16px) scale(.97);
  transition: transform .35s cubic-bezier(.22,1,.36,1);
  gap: 32px;
}
.popup-overlay.active .popup-card {
  transform: translateY(0) scale(1);
}

/* close */
.popup-close {
  position: absolute;
  top: 16px; right: 18px;
  width: 28px; height: 28px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  font-size: 22px;
  line-height: 1;
  z-index: 20;
  transition: color .15s;
  font-family: sans-serif;
}
.popup-close:hover { color: var(--dark); }

/* ════════════════
   LEFT PANEL
════════════════ */
.popup-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 55%;
  flex-shrink: 0;
}

.popup-heading {
  font-family: 'DM Mono', monospace;
  font-size: 40px;
  font-weight: 500;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 14px;
}

.popup-desc {
  font-size: 16px;
  color: var(--dark);
  line-height: 1.5;
  margin-bottom: 28px;
}

.popup-countdown {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}
.cnt-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-right: 20px;
  margin-right: 20px;
  position: relative;
}
.cnt-unit::after {
  content: '';
  position: absolute;
  right: 0; top: 6px;
  height: 34px; width: 1px;
  background: var(--dark);
}
.cnt-unit:last-child { padding-right: 0; margin-right: 0; }
.cnt-unit:last-child::after { display: none; }
.cnt-num {
  font-family: 'DM Mono', monospace;
  font-size: 36px;
  font-weight: 500;
  color: var(--dark);
  line-height: 1.15;
}
.cnt-lbl {
  font-size: 14px;
  line-height: 20px;
  color: var(--dark);
  font-weight: 400;
  margin-top: 5px;
}

.popup-limit {
  font-size: 14px;
  line-height: 22px;
  font-weight: 600;
  color: var(--dark);
}

/* ════════════════
   RIGHT PANEL
════════════════ */
.popup-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  min-height: 260px;
}

/* ════════════════════════════════════════
   SCRATCH ZONE  (fills entire right panel)
   Layer order (back → front):
   1. .reveal-content   — product / email (always visible)
   2. .scratch-overlay  — green blob canvas (erased away)
   3. .scratch-hint     — "scratch below" label (fades out)
════════════════════════════════════════ */
.scratch-zone {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 260px;
  display: flex;
  flex-direction: column;
}

/* ── Layer 1: Reveal content ── */
.reveal-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 1;
}

/* Step 2 reveal */
.reveal-step2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  height: 100%;
}
.reveal-step2-row {
  display: flex;
  align-items: center;
  gap: 16px;
}
.reveal-bottle img {
  width: 20px;
  height: auto;
  display: block;
}
.reveal-offer-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.4;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.claim-btn {
  width: 100%;
  padding: 12px 24px;
  background: var(--teal);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  border: none;
  border-radius: 60px;
  cursor: pointer;
  transition: opacity .2s, transform .15s;
  text-align: center;
}
.claim-btn:hover  { opacity: .85; transform: translateY(-1px); }
.claim-btn:active { transform: translateY(0); }

/* Step 3 email */
.reveal-step3 {
  display: none;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.reveal-step3.active { display: flex; }

.step3-badge {
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.4;
  margin-bottom: 24px;
  text-align: center;
}

/* CF7 / email form styles */
.popup-right .cta-form p{
  display: flex;
  flex-direction: column;
  gap: 10px;
	border: 0;
}
.popup-right .cta-form p br{
	display: none;
}
.popup-right .cta-form input.wpcf7-text {
    border: 1px solid var(--teal);
    text-align: center;
    padding: 13px 14px;
    width: 100%;
}
.popup-right .cta-form .wpcf7-form-control-wrap {
	max-width: 100%;
}
.popup-right  .cta-form .wpcf7-submit{
	width:100%;
	justify-content: center;
}

/* ── Layer 2: Scratch overlay canvas ── */
#scratchCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  cursor: crosshair;
  touch-action: none;
  display: block;
  /* smooth erase transition */
  transition: opacity .5s ease;
	top: 15px;
}

/* ── Layer 3: "Scratch below" hint label ── */
.scratch-hint {
  position: absolute;
  top: 0px;
  left: 0; right: 0;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  z-index: 3;
  pointer-events: none;
  transition: opacity .4s ease;
}

/* ════════════════
   ANIMATIONS
════════════════ */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal-step3.active {
  animation: fadeIn .3s ease both;
}

/* ════════════════
   MOBILE
════════════════ */
@media (max-width: 600px) {
  .popup-card {
    flex-direction: column;
    padding: 28px 20px 28px;
    gap: 20px;
    max-height: 92vh;
    overflow-y: auto;
  }
  .popup-left {
    width: 100%;
    gap: 0;
  }
  .popup-heading { font-size: 30px; text-align: center; }
  .popup-desc { font-size: 14px; text-align: center; }
  .popup-countdown { justify-content: center; margin-bottom: 12px; }
  .popup-limit { text-align: center; margin-top: 12px; }
  .popup-right { min-height: 240px; padding-top: 20px; }
  .scratch-zone { min-height: 240px; }
  .reveal-step3 {
		justify-content: flex-start;
	}
	.step3-badge {
		margin-bottom: 35px;
	}
}