:root {
--navy: #073b67;
--navy-deep: #062f52;
--blue: #0c5d91;
--sky: #dff4fb;
--sky-light: #f3fbfd;
--orange: #f36f21;
--orange-dark: #d65311;
--yellow: #ffd85b;
--red: #e4003b;
--teal: #008b7d;
--ink: #12324a;
--muted: #566d7c;
--paper: #fffdf8;
--white: #ffffff;
--line: rgba(7, 59, 103, 0.14);
--shadow: 0 24px 70px rgba(6, 47, 82, 0.14);
--radius: 28px;
--shell: min(1160px, calc(100% - 40px));
}
* {
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
}
body {
margin: 0;
color: var(--ink);
background: var(--paper);
font-family: "Source Sans 3", system-ui, sans-serif;
font-size: 18px;
line-height: 1.62;
}
body,
button,
a {
-webkit-font-smoothing: antialiased;
}
img {
display: block;
max-width: 100%;
}
a {
color: inherit;
}
.shell {
width: var(--shell);
margin-inline: auto;
}
.skip-link {
position: fixed;
top: 8px;
left: 8px;
z-index: 1000;
padding: 10px 16px;
color: var(--white);
background: var(--navy);
transform: translateY(-150%);
}
.skip-link:focus {
transform: translateY(0);
}
.site-header {
position: sticky;
top: 0;
z-index: 50;
background: rgba(255, 255, 255, 0.96);
border-bottom: 1px solid var(--line);
backdrop-filter: blur(16px);
}
body.admin-bar .site-header {
top: 32px;
}
.nav-wrap {
min-height: 88px;
display: flex;
align-items: center;
justify-content: space-between;
gap: 30px;
}
.brand {
display: inline-flex;
align-items: center;
gap: 12px;
text-decoration: none;
}
.brand-mark {
width: 46px;
height: 46px;
display: grid;
place-items: center;
border-radius: 50%;
color: var(--white);
background: var(--orange);
font-family: "Nunito", sans-serif;
font-size: 24px;
font-weight: 900;
}
.brand strong,
.brand small {
display: block;
}
.brand strong {
color: var(--navy);
font-family: "Nunito", sans-serif;
font-size: 18px;
line-height: 1.1;
}
.brand small {
margin-top: 3px;
color: var(--muted);
font-size: 14px;
line-height: 1.2;
}
.main-nav {
display: flex;
align-items: center;
gap: 30px;
}
.main-nav a {
color: var(--navy);
font-family: "Nunito", sans-serif;
font-size: 15px;
font-weight: 800;
text-decoration: none;
}
.main-nav a:hover,
.main-nav a:focus-visible {
color: var(--orange-dark);
}
.main-nav .nav-cta {
padding: 13px 20px;
color: var(--white);
background: var(--navy);
border-radius: 999px;
}
.main-nav .nav-cta:hover,
.main-nav .nav-cta:focus-visible {
color: var(--white);
background: var(--orange-dark);
}
.nav-toggle {
width: 48px;
height: 44px;
display: none;
place-content: center;
gap: 5px;
padding: 0;
background: transparent;
border: 1px solid var(--line);
border-radius: 12px;
}
.nav-toggle > span:not(.sr-only) {
width: 22px;
height: 2px;
display: block;
background: var(--navy);
}
.sr-only {
position: absolute;
width: 1px;
height: 1px;
padding: 0;
margin: -1px;
overflow: hidden;
clip: rect(0, 0, 0, 0);
white-space: nowrap;
border: 0;
}
.hero {
position: relative;
overflow: hidden;
color: var(--white);
background:
radial-gradient(circle at 88% 10%, rgba(255, 216, 91, 0.24), transparent 26%),
linear-gradient(145deg, var(--navy-deep) 0%, var(--navy) 52%, var(--blue) 100%);
}
.hero-grid {
min-height: 670px;
display: grid;
grid-template-columns: 1.08fr 0.92fr;
align-items: center;
gap: 72px;
padding-block: 78px 72px;
}
.hero-copy,
.hero-product {
position: relative;
z-index: 2;
}
.eyebrow {
margin: 0 0 16px;
color: var(--orange-dark);
font-family: "Nunito", sans-serif;
font-size: 14px;
font-weight: 900;
letter-spacing: 0.14em;
text-transform: uppercase;
}
.eyebrow-light {
color: var(--yellow);
}
h1,
h2,
h3,
p {
margin-top: 0;
}
h1,
h2,
h3 {
font-family: "Nunito", sans-serif;
}
h1 {
max-width: 700px;
margin-bottom: 24px;
font-size: clamp(46px, 5.4vw, 74px);
line-height: 0.98;
letter-spacing: -0.045em;
}
h1 span {
display: block;
color: var(--yellow);
}
.hero-lead {
max-width: 650px;
margin-bottom: 30px;
color: rgba(255, 255, 255, 0.82);
font-size: 20px;
}
.hero-actions {
display: flex;
flex-wrap: wrap;
gap: 14px;
margin-bottom: 38px;
}
.button {
min-height: 52px;
display: inline-flex;
align-items: center;
justify-content: center;
padding: 13px 22px;
border: 2px solid transparent;
border-radius: 14px;
font-family: "Nunito", sans-serif;
font-size: 16px;
font-weight: 900;
line-height: 1.15;
text-align: center;
text-decoration: none;
transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}
.button:hover,
.button:focus-visible {
transform: translateY(-2px);
}
.button-yellow {
color: var(--navy-deep);
background: var(--yellow);
box-shadow: 0 14px 30px rgba(255, 216, 91, 0.2);
}
.button-yellow:hover,
.button-yellow:focus-visible {
background: #ffe27e;
}
.button-quiet {
color: var(--white);
background: rgba(255, 255, 255, 0.08);
border-color: rgba(255, 255, 255, 0.28);
}
.button-quiet:hover,
.button-quiet:focus-visible {
background: rgba(255, 255, 255, 0.14);
border-color: rgba(255, 255, 255, 0.54);
}
.button-primary {
color: var(--white);
background: var(--orange);
}
.button-primary:hover,
.button-primary:focus-visible {
background: var(--orange-dark);
}
.hero-facts {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 16px;
}
.hero-facts > div {
padding-top: 18px;
border-top: 1px solid rgba(255, 255, 255, 0.18);
}
.hero-facts strong,
.hero-facts span {
display: block;
}
.hero-facts strong {
color: var(--yellow);
font-family: "Nunito", sans-serif;
font-size: 21px;
}
.hero-facts span {
color: rgba(255, 255, 255, 0.68);
font-size: 14px;
line-height: 1.35;
}
.hero-product {
padding: 38px 34px 26px;
background: rgba(255, 255, 255, 0.98);
border: 10px solid rgba(255, 255, 255, 0.28);
border-radius: 34px;
box-shadow: 0 34px 80px rgba(0, 0, 0, 0.2);
}
.hero-product img {
width: min(100%, 490px);
aspect-ratio: 1;
margin-inline: auto;
object-fit: contain;
transition: transform 180ms ease;
}
.hero-product-link {
position: relative;
display: block;
border-radius: 24px;
text-decoration: none;
}
.hero-product-link:hover img {
transform: translateY(-4px) scale(1.015);
}
.hero-product-link:focus-visible {
outline: 4px solid var(--yellow);
outline-offset: 5px;
}
.hero-product-cta {
position: absolute;
right: 18px;
bottom: 18px;
z-index: 3;
padding: 13px 19px;
color: var(--white);
background: var(--orange);
border-radius: 999px;
box-shadow: 0 12px 28px rgba(7, 59, 103, 0.22);
font-family: "Nunito", sans-serif;
font-size: 15px;
font-weight: 900;
transition:
background 160ms ease,
transform 160ms ease;
}
.hero-product-link:hover .hero-product-cta {
background: var(--orange-dark);
transform: translateY(-2px);
}
.product-label {
position: absolute;
top: 24px;
left: 24px;
z-index: 3;
padding: 8px 12px;
color: var(--white);
background: var(--red);
border-radius: 999px;
font-family: "Nunito", sans-serif;
font-size: 13px;
font-weight: 900;
letter-spacing: 0.06em;
text-transform: uppercase;
}
.hero-price {
display: flex;
align-items: center;
justify-content: space-between;
gap: 18px;
margin-top: 12px;
padding-top: 18px;
color: var(--ink);
border-top: 1px solid var(--line);
}
.hero-price span,
.hero-price strong {
display: block;
}
.hero-price span {
color: var(--muted);
font-size: 13px;
}
.hero-price strong {
font-family: "Nunito", sans-serif;
font-size: 17px;
}
.hero-price b {
color: var(--red);
font-family: "Nunito", sans-serif;
font-size: 25px;
white-space: nowrap;
}
.hero-orbit {
position: absolute;
border: 1px solid rgba(255, 255, 255, 0.12);
border-radius: 50%;
}
.hero-orbit-one {
width: 540px;
height: 540px;
right: -240px;
top: -170px;
}
.hero-orbit-two {
width: 280px;
height: 280px;
left: -140px;
bottom: -150px;
}
.trust-bar {
color: var(--navy);
background: var(--yellow);
}
.trust-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
}
.trust-grid p {
margin: 0;
padding: 22px 28px;
border-left: 1px solid rgba(7, 59, 103, 0.15);
}
.trust-grid p:last-child {
border-right: 1px solid rgba(7, 59, 103, 0.15);
}
.trust-grid strong {
display: block;
font-family: "Nunito", sans-serif;
}
.section {
padding-block: 96px;
}
section[id] {
scroll-margin-top: 96px;
}
.section-heading {
display: grid;
grid-template-columns: 1.2fr 0.8fr;
align-items: end;
gap: 70px;
margin-bottom: 46px;
}
.section-heading.center {
display: block;
max-width: 760px;
margin-inline: auto;
text-align: center;
}
.section-heading h2,
.video-copy h2,
.pilot-copy h2,
.offer-heading h2,
.honest-card h2,
.cta-card h2 {
margin-bottom: 0;
color: var(--navy);
font-size: clamp(36px, 4vw, 54px);
line-height: 1.06;
letter-spacing: -0.035em;
}
.section-heading > p {
margin-bottom: 0;
color: var(--muted);
}
.audience-card h3 {
margin-bottom: 12px;
color: var(--navy);
font-size: 25px;
line-height: 1.15;
}
.audience-card p {
margin-bottom: 0;
color: var(--muted);
}
.video-section {
background: var(--white);
}
.video-grid {
display: grid;
grid-template-columns: minmax(0, 1fr) minmax(300px, 440px);
align-items: center;
gap: clamp(52px, 8vw, 112px);
}
.video-copy {
max-width: 650px;
}
.video-copy h2 {
margin-bottom: 24px;
}
.video-copy > p:not(.eyebrow) {
max-width: 610px;
margin-bottom: 30px;
color: var(--muted);
font-size: 20px;
}
.vertical-video-card {
position: relative;
width: min(100%, 410px);
justify-self: center;
padding: 14px;
background: var(--yellow);
border-radius: 34px;
box-shadow: 0 28px 70px rgba(7, 59, 103, 0.18);
}
.vertical-video-card::before {
content: "";
position: absolute;
width: 112px;
height: 112px;
top: -32px;
right: -34px;
z-index: 0;
background: var(--sky);
border-radius: 50%;
}
.vertical-video-frame {
position: relative;
z-index: 1;
aspect-ratio: 9 / 16;
overflow: hidden;
background: var(--navy);
border-radius: 23px;
}
.vertical-video-frame iframe {
width: 100%;
height: 100%;
border: 0;
}
.pilot-section {
padding-bottom: 64px;
background: var(--sky-light);
}
.pilot-grid {
display: grid;
grid-template-columns: minmax(300px, 410px) minmax(0, 1fr);
align-items: center;
gap: clamp(52px, 8vw, 112px);
}
.pilot-video-card {
position: relative;
width: min(100%, 410px);
justify-self: center;
margin: 0;
padding: 14px 14px 18px;
background: var(--navy);
border-radius: 34px;
box-shadow: 0 28px 70px rgba(7, 59, 103, 0.2);
}
.pilot-video-card .vertical-video-frame {
border-radius: 23px;
}
.pilot-video-card figcaption {
padding: 13px 8px 0;
color: rgba(255, 255, 255, 0.78);
font-size: 14px;
text-align: center;
}
.pilot-copy h2 {
margin-bottom: 22px;
}
.pilot-lead {
max-width: 690px;
margin-bottom: 30px;
color: var(--muted);
font-size: 20px;
}
.pilot-results {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 14px;
margin-bottom: 28px;
}
.pilot-results > div {
display: grid;
grid-template-columns: auto 1fr;
align-items: center;
gap: 14px;
min-height: 92px;
padding: 17px 18px;
background: var(--white);
border: 1px solid var(--line);
border-radius: 18px;
}
.pilot-results strong {
color: var(--orange);
font-family: "Nunito", sans-serif;
font-size: 29px;
font-weight: 900;
white-space: nowrap;
}
.pilot-results span {
color: var(--navy);
font-size: 15px;
line-height: 1.3;
}
.pilot-conclusion {
max-width: 700px;
margin-bottom: 15px;
color: var(--navy);
}
.pilot-conclusion strong {
font-family: "Nunito", sans-serif;
}
.pilot-disclaimer {
max-width: 700px;
margin-bottom: 0;
color: var(--muted);
font-size: 14px;
}
.product-section {
padding-top: 68px;
background:
linear-gradient(90deg, rgba(255, 255, 255, 0.95), rgba(255, 253, 248, 0.94)),
var(--paper);
}
.offer-heading {
max-width: 820px;
margin-bottom: 44px;
text-align: center;
}
.offer-heading h2 {
margin-bottom: 20px;
}
.offer-heading > p:last-child {
max-width: 720px;
margin: 0 auto;
color: var(--muted);
font-size: 20px;
}
.offer-grid {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
align-items: stretch;
gap: 28px;
}
.offer-card {
position: relative;
display: flex;
flex-direction: column;
min-width: 0;
background: var(--white);
border: 1px solid var(--line);
border-radius: 32px;
overflow: hidden;
box-shadow: 0 18px 54px rgba(7, 59, 103, 0.1);
}
.offer-card-featured {
border: 3px solid var(--yellow);
box-shadow: 0 24px 64px rgba(7, 59, 103, 0.16);
}
.offer-image {
position: relative;
display: grid;
place-items: center;
min-height: 360px;
padding: 34px;
background:
radial-gradient(circle at 50% 48%, rgba(255, 216, 91, 0.52), transparent 43%),
var(--sky);
overflow: hidden;
}
.offer-card-featured .offer-image {
background:
radial-gradient(circle at 50% 48%, rgba(255, 255, 255, 0.92), transparent 45%),
var(--yellow);
}
.offer-image img {
position: relative;
z-index: 1;
width: min(100%, 390px);
aspect-ratio: 1;
object-fit: contain;
filter: drop-shadow(0 20px 24px rgba(7, 59, 103, 0.18));
transition: transform 180ms ease;
}
.offer-image:hover img,
.offer-image:focus-visible img {
transform: translateY(-4px) scale(1.02);
}
.offer-image:focus-visible {
outline: 4px solid var(--navy);
outline-offset: -6px;
}
.offer-age,
.offer-saving {
position: absolute;
top: 22px;
z-index: 2;
padding: 10px 14px;
border-radius: 999px;
font-family: "Nunito", sans-serif;
font-weight: 900;
}
.offer-age {
left: 22px;
color: var(--navy);
background: var(--yellow);
}
.offer-card-featured .offer-age {
background: var(--white);
}
.offer-saving {
right: 22px;
color: var(--white);
background: var(--orange);
}
.offer-content {
display: flex;
flex: 1;
flex-direction: column;
padding: 34px;
}
.offer-content .eyebrow {
margin-bottom: 11px;
}
.offer-content h3 {
margin-bottom: 17px;
color: var(--navy);
font-size: 29px;
line-height: 1.12;
}
.offer-content > p:not(.eyebrow) {
margin-bottom: 23px;
color: var(--muted);
}
.offer-list {
display: grid;
gap: 10px;
padding: 0;
margin: 0 0 28px;
list-style: none;
}
.offer-list li {
position: relative;
padding-left: 29px;
}
.offer-list li::before {
content: "✓";
position: absolute;
top: 0;
left: 0;
color: var(--teal);
font-family: "Nunito", sans-serif;
font-weight: 900;
}
.offer-footer {
display: flex;
align-items: flex-end;
justify-content: space-between;
gap: 22px;
margin-top: auto;
padding-top: 26px;
border-top: 1px solid var(--line);
}
.offer-price span,
.offer-price strong {
display: block;
}
.offer-price span {
margin-bottom: 2px;
color: var(--muted);
font-size: 14px;
text-decoration: line-through;
}
.offer-price strong {
color: var(--red);
font-family: "Nunito", sans-serif;
font-size: 34px;
line-height: 1;
}
.offer-footer .button {
min-width: 170px;
}
.audience-section {
color: var(--white);
background: var(--navy);
}
.audience-section .section-heading h2 {
color: var(--white);
}
.audience-section .section-heading p:last-child {
color: rgba(255, 255, 255, 0.68);
}
.audience-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 22px;
}
.audience-card {
padding: 34px;
color: var(--ink);
background: var(--white);
border-radius: var(--radius);
}
.audience-card > span {
display: inline-flex;
margin-bottom: 22px;
padding: 7px 12px;
color: var(--orange-dark);
background: #fff0e5;
border-radius: 999px;
font-family: "Nunito", sans-serif;
font-size: 13px;
font-weight: 900;
letter-spacing: 0.08em;
text-transform: uppercase;
}
.honest-section {
background: var(--sky-light);
}
.honest-card {
display: grid;
grid-template-columns: 1.1fr 0.9fr;
align-items: center;
gap: 70px;
padding: 54px;
background: var(--white);
border-left: 8px solid var(--yellow);
border-radius: var(--radius);
box-shadow: var(--shadow);
}
.honest-card h2 {
font-size: clamp(34px, 3.5vw, 48px);
}
.honest-card > p {
margin-bottom: 0;
color: var(--muted);
font-size: 20px;
}
.final-cta {
color: var(--white);
background: var(--orange);
}
.cta-card {
display: flex;
align-items: center;
justify-content: space-between;
gap: 50px;
}
.cta-card h2 {
max-width: 760px;
margin-bottom: 16px;
color: var(--white);
}
.cta-card p:last-child {
max-width: 720px;
margin-bottom: 0;
color: rgba(255, 255, 255, 0.84);
}
.cta-card .button {
min-width: 250px;
}
.cta-actions {
display: grid;
gap: 12px;
}
.cta-actions .button-quiet {
color: var(--white);
border-color: rgba(255, 255, 255, 0.52);
}
.cta-actions .button-quiet:hover,
.cta-actions .button-quiet:focus-visible {
color: var(--navy);
background: var(--white);
}
.site-footer {
padding-block: 42px;
color: rgba(255, 255, 255, 0.72);
background: var(--navy-deep);
}
.footer-grid {
display: grid;
grid-template-columns: 1fr auto auto;
align-items: center;
gap: 48px;
}
.brand-footer strong {
color: var(--white);
}
.brand-footer small {
color: rgba(255, 255, 255, 0.64);
}
.footer-grid > div:nth-child(2) {
display: flex;
gap: 24px;
}
.footer-grid a {
text-decoration: none;
}
.footer-grid a:hover,
.footer-grid a:focus-visible {
color: var(--yellow);
}
.footer-grid p {
margin-bottom: 0;
text-align: right;
}
.mobile-cta {
display: none;
}
.reveal {
opacity: 0;
transform: translateY(20px);
transition: opacity 560ms ease, transform 560ms ease;
}
.reveal.is-visible {
opacity: 1;
transform: none;
}
@media (prefers-reduced-motion: reduce) {
html {
scroll-behavior: auto;
}
.reveal {
opacity: 1;
transform: none;
transition: none;
}
}
@media (max-width: 960px) {
.main-nav {
gap: 18px;
}
.main-nav a:not(.nav-cta) {
display: none;
}
.hero-grid,
.video-grid,
.pilot-grid,
.offer-grid,
.honest-card {
grid-template-columns: 1fr;
}
.hero-grid {
gap: 48px;
}
.hero-copy {
max-width: 760px;
}
.hero-product {
max-width: 620px;
margin-inline: auto;
}
.section-heading {
grid-template-columns: 1fr;
gap: 18px;
}
.honest-card {
gap: 42px;
}
.offer-grid {
max-width: 680px;
}
.video-grid {
gap: 48px;
}
.pilot-grid {
gap: 48px;
}
.footer-grid {
grid-template-columns: 1fr;
gap: 24px;
}
.footer-grid p {
text-align: left;
}
}
@media (max-width: 720px) {
:root {
--shell: min(100% - 28px, 1160px);
--radius: 22px;
}
body {
font-size: 17px;
}
.site-header {
top: 0;
}
body.admin-bar .site-header {
top: 46px;
}
.nav-wrap {
min-height: 74px;
}
.brand-mark {
width: 40px;
height: 40px;
}
.nav-toggle {
display: grid;
}
.main-nav {
position: absolute;
top: 74px;
left: 14px;
right: 14px;
display: none;
align-items: stretch;
padding: 16px;
background: var(--white);
border: 1px solid var(--line);
border-radius: 18px;
box-shadow: var(--shadow);
}
.main-nav.is-open {
display: grid;
}
.main-nav a:not(.nav-cta) {
display: block;
padding: 8px 10px;
}
.main-nav .nav-cta {
text-align: center;
}
.hero-grid {
min-height: 0;
padding-block: 58px 54px;
}
h1 {
font-size: clamp(42px, 14vw, 60px);
}
.hero-lead {
font-size: 18px;
}
.hero-actions {
display: grid;
}
.hero-facts {
grid-template-columns: 1fr;
}
.hero-product {
padding: 32px 22px 22px;
border-width: 6px;
border-radius: 26px;
}
.hero-price {
align-items: flex-start;
flex-direction: column;
}
.trust-grid,
.audience-grid {
grid-template-columns: 1fr;
}
.trust-grid p {
padding-inline: 0;
border-left: 0;
border-right: 0 !important;
border-bottom: 1px solid rgba(7, 59, 103, 0.14);
}
.section {
padding-block: 70px;
}
.section-heading {
margin-bottom: 34px;
}
.section-heading h2,
.video-copy h2,
.pilot-copy h2,
.offer-heading h2,
.honest-card h2,
.cta-card h2 {
font-size: 36px;
}
.vertical-video-card {
width: min(88vw, 390px);
}
.pilot-video-card {
width: min(88vw, 390px);
}
.pilot-results {
grid-template-columns: 1fr;
}
.offer-heading {
margin-bottom: 32px;
}
.offer-image {
min-height: 300px;
padding: 28px 20px;
}
.offer-content {
padding: 28px 24px;
}
.offer-footer {
align-items: stretch;
flex-direction: column;
}
.offer-footer .button {
width: 100%;
}
.honest-card {
padding: 34px 28px;
}
.cta-card {
align-items: stretch;
flex-direction: column;
}
.cta-actions {
width: 100%;
}
.cta-card .button {
min-width: 0;
}
.footer-grid > div:nth-child(2) {
align-items: flex-start;
flex-direction: column;
gap: 10px;
}
.mobile-cta {
position: fixed;
left: 12px;
right: 12px;
bottom: 12px;
z-index: 70;
display: block;
}
.mobile-cta a {
display: block;
padding: 14px 18px;
color: var(--navy-deep);
background: var(--yellow);
border: 2px solid var(--white);
border-radius: 14px;
box-shadow: 0 14px 34px rgba(6, 47, 82, 0.28);
font-family: "Nunito", sans-serif;
font-weight: 900;
text-align: center;
text-decoration: none;
}
.site-footer {
padding-bottom: 100px;
}
}@keyframes wc-skeleton-shimmer{to{transform:translateX(100%)}}body.wc-block-product-gallery-modal-open,body.wc-modal--open{overflow:hidden}.wc-block-grid__products .wc-block-grid__product-image{display:block;position:relative;text-decoration:none}.wc-block-grid__products .wc-block-grid__product-image a{border:0;box-shadow:none;outline:0;text-decoration:none}.wc-block-grid__products .wc-block-grid__product-image img{height:auto;max-width:100%;width:100%}.wc-block-grid__products .wc-block-grid__product-image img[hidden]{display:none}.wc-block-grid__products .wc-block-grid__product-image img[alt=""]{border:1px solid #f2f2f2}.edit-post-visual-editor .editor-block-list__block .wc-block-grid__product-title,.editor-styles-wrapper .wc-block-grid__product-title,.wc-block-grid__product-title{color:inherit;display:block;font-family:inherit;font-size:inherit;font-weight:700;line-height:1.2;padding:0}.wc-block-grid__product-price{display:block}.wc-block-grid__product-price .wc-block-grid__product-price__regular{margin-right:.5em}.wc-block-grid__product-add-to-cart.wp-block-button{white-space:normal;word-break:break-word}.wc-block-grid__product-add-to-cart.wp-block-button .wp-block-button__link{display:inline-flex;font-size:1em;justify-content:center;text-align:center;white-space:normal;word-break:break-word}.wc-block-grid__product-add-to-cart.wp-block-button .wp-block-button__link.loading{opacity:.25}.wc-block-grid__product-add-to-cart.wp-block-button .wp-block-button__link.added:after{content:"";display:inline-block;font-family:WooCommerce;height:auto;margin-left:.5em;width:auto}.wc-block-grid__product-add-to-cart.wp-block-button .wp-block-button__link.loading:after{animation:spin 2s linear infinite;content:"";display:inline-block;font-family:WooCommerce;height:auto;margin-left:.5em;width:auto}.has-5-columns:not(.alignfull) .wc-block-grid__product-add-to-cart.wp-block-button .wp-block-button__link:after,.has-6-columns .wc-block-grid__product-add-to-cart.wp-block-button .wp-block-button__link:after,.has-7-columns .wc-block-grid__product-add-to-cart.wp-block-button .wp-block-button__link:after,.has-8-columns .wc-block-grid__product-add-to-cart.wp-block-button .wp-block-button__link:after,.has-9-columns .wc-block-grid__product-add-to-cart.wp-block-button .wp-block-button__link:after{content:"";margin:0}.wc-block-grid__product-rating,.wp-block-woocommerce-product-review-rating{display:block}.wc-block-grid__product-rating .star-rating,.wc-block-grid__product-rating .wc-block-grid__product-rating__stars,.wc-block-grid__product-rating .wc-block-product-review-rating__stars,.wp-block-woocommerce-product-review-rating .star-rating,.wp-block-woocommerce-product-review-rating .wc-block-grid__product-rating__stars,.wp-block-woocommerce-product-review-rating .wc-block-product-review-rating__stars{font-family:WooCommerce;font-size:1em;font-weight:400;height:1.618em;line-height:1.618;margin:0 auto;overflow:hidden;position:relative;text-align:left;width:5.3em}.wc-block-grid__product-rating .star-rating:before,.wc-block-grid__product-rating .wc-block-grid__product-rating__stars:before,.wc-block-grid__product-rating .wc-block-product-review-rating__stars:before,.wp-block-woocommerce-product-review-rating .star-rating:before,.wp-block-woocommerce-product-review-rating .wc-block-grid__product-rating__stars:before,.wp-block-woocommerce-product-review-rating .wc-block-product-review-rating__stars:before{content:"SSSSS";left:0;opacity:.5;position:absolute;right:0;top:0;white-space:nowrap}.wc-block-grid__product-rating .star-rating span,.wc-block-grid__product-rating .wc-block-grid__product-rating__stars span,.wc-block-grid__product-rating .wc-block-product-review-rating__stars span,.wp-block-woocommerce-product-review-rating .star-rating span,.wp-block-woocommerce-product-review-rating .wc-block-grid__product-rating__stars span,.wp-block-woocommerce-product-review-rating .wc-block-product-review-rating__stars span{left:0;overflow:hidden;padding-top:1.5em;position:absolute;right:0;top:0}.wc-block-grid__product-rating .star-rating span:before,.wc-block-grid__product-rating .wc-block-grid__product-rating__stars span:before,.wc-block-grid__product-rating .wc-block-product-review-rating__stars span:before,.wp-block-woocommerce-product-review-rating .star-rating span:before,.wp-block-woocommerce-product-review-rating .wc-block-grid__product-rating__stars span:before,.wp-block-woocommerce-product-review-rating .wc-block-product-review-rating__stars span:before{color:inherit;content:"SSSSS";left:0;position:absolute;right:0;top:0;white-space:nowrap}.wc-block-grid .wc-block-grid__product-onsale,.wc-block-grid__product-image .wc-block-grid__product-onsale{background:#fff;border:1px solid #43454b;border-radius:4px;color:#43454b;display:inline-block;font-size:.875em;font-weight:600;left:auto;padding:.25em .75em;position:absolute;right:4px;text-align:center;text-transform:uppercase;top:4px;width:auto;z-index:9}.wc-block-grid__product .wc-block-grid__product-image,.wc-block-grid__product .wc-block-grid__product-link{display:inline-block;position:relative}.wc-block-grid__product .wc-block-grid__product-image:not(.wc-block-components-product-image),.wc-block-grid__product .wc-block-grid__product-title{margin:0 0 12px}.wc-block-grid__product .wc-block-grid__product-add-to-cart,.wc-block-grid__product .wc-block-grid__product-onsale,.wc-block-grid__product .wc-block-grid__product-price,.wc-block-grid__product .wc-block-grid__product-rating{margin:0 auto 12px}.theme-twentysixteen .wc-block-grid .price ins{color:#77a464}.theme-twentynineteen .wc-block-grid__product{font-size:.88889em}.theme-twentynineteen .wc-block-components-product-sale-badge,.theme-twentynineteen .wc-block-components-product-title,.theme-twentynineteen .wc-block-grid__product-onsale,.theme-twentynineteen .wc-block-grid__product-title{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,sans-serif}.theme-twentynineteen .wc-block-grid__product-title:before{display:none}.theme-twentynineteen .wc-block-components-product-sale-badge,.theme-twentynineteen .wc-block-grid__product-onsale{line-height:1}.theme-twentynineteen .editor-styles-wrapper .wp-block-button .wp-block-button__link:not(.has-text-color){color:#fff}.theme-twentytwenty .wc-block-grid__product-link{color:#000}.theme-twentytwenty .wc-block-components-product-title,.theme-twentytwenty .wc-block-grid__product-title{color:#cd2653;font-family:-apple-system,blinkmacsystemfont,Helvetica Neue,helvetica,sans-serif;font-size:1em}.theme-twentytwenty .wp-block-columns .wc-block-components-product-title{margin-top:0}.theme-twentytwenty .wc-block-components-product-price .woocommerce-Price-amount,.theme-twentytwenty .wc-block-components-product-price__value,.theme-twentytwenty .wc-block-grid__product-price .woocommerce-Price-amount,.theme-twentytwenty .wc-block-grid__product-price__value{font-family:-apple-system,blinkmacsystemfont,Helvetica Neue,helvetica,sans-serif;font-size:.9em}.theme-twentytwenty .wc-block-components-product-price del,.theme-twentytwenty .wc-block-grid__product-price del{opacity:.7}.theme-twentytwenty .wc-block-components-product-price ins,.theme-twentytwenty .wc-block-grid__product-price ins{text-decoration:none}.theme-twentytwenty .star-rating,.theme-twentytwenty .wc-block-grid__product-rating{font-size:.7em}.theme-twentytwenty .star-rating .wc-block-components-product-rating__stars,.theme-twentytwenty .star-rating .wc-block-grid__product-rating__stars,.theme-twentytwenty .wc-block-grid__product-rating .wc-block-components-product-rating__stars,.theme-twentytwenty .wc-block-grid__product-rating .wc-block-grid__product-rating__stars{line-height:1}.theme-twentytwenty .wc-block-components-product-button>.wp-block-button__link,.theme-twentytwenty .wc-block-grid__product-add-to-cart>.wp-block-button__link{font-family:-apple-system,blinkmacsystemfont,Helvetica Neue,helvetica,sans-serif}.theme-twentytwenty .wc-block-components-product-sale-badge,.theme-twentytwenty .wc-block-grid__products .wc-block-grid__product-onsale{background:#cd2653;color:#fff;font-family:-apple-system,blinkmacsystemfont,Helvetica Neue,helvetica,sans-serif;font-weight:700;letter-spacing:-.02em;line-height:1.2;text-transform:uppercase}.theme-twentytwenty .wc-block-grid__products .wc-block-components-product-sale-badge{position:static}.theme-twentytwenty .wc-block-grid__products .wc-block-grid__product-image .wc-block-components-product-sale-badge{position:absolute}.theme-twentytwenty .wc-block-grid__products .wc-block-grid__product-onsale:not(.wc-block-components-product-sale-badge){position:absolute;right:4px;top:4px;z-index:1}.theme-twentytwenty .wc-block-active-filters__title,.theme-twentytwenty .wc-block-attribute-filter__title,.theme-twentytwenty .wc-block-price-filter__title,.theme-twentytwenty .wc-block-stock-filter__title{font-size:1em}.theme-twentytwenty .wc-block-active-filters .wc-block-active-filters__clear-all,.theme-twentytwenty .wc-block-grid__product-add-to-cart.wp-block-button .wp-block-button__link{font-size:.75em}@media only screen and (min-width:768px){.theme-twentytwenty .wc-block-grid__products .wc-block-grid__product-onsale{font-size:.875em;padding:.5em}}@media only screen and (min-width:1168px){.theme-twentytwenty .wc-block-grid__products .wc-block-grid__product-onsale{font-size:.875em;padding:.5em}}.theme-twentytwentytwo .wc-block-grid__product-add-to-cart .added_to_cart{display:block;margin-top:12px}.theme-twentytwentytwo .wc-block-components-product-price ins,.theme-twentytwentytwo .wc-block-grid__product-price ins{text-decoration:none}.screen-reader-text{clip:rect(1px,1px,1px,1px);word-wrap:normal!important;border:0;clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;overflow-wrap:normal!important;padding:0;position:absolute!important;width:1px}.screen-reader-text:focus{clip:auto!important;background-color:#fff;border-radius:3px;box-shadow:0 0 2px 2px rgba(0,0,0,.6);clip-path:none;color:#2b2d2f;display:block;font-size:.875rem;font-weight:700;height:auto;left:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}.wp-block-group.woocommerce.product .up-sells.upsells.products{max-width:var(--wp--style--global--wide-size)}
@keyframes wc-skeleton-shimmer{to{transform:translateX(100%)}}.wc-block-components-notice-banner{align-content:flex-start;align-items:stretch;background-color:#fff;border:1px solid #2f2f2f;border-radius:4px;box-sizing:border-box;color:#2f2f2f;display:flex;font-size:.875em;font-weight:400;gap:12px;line-height:1.5;margin:16px 0;padding:16px!important}.wc-block-components-notice-banner>.wc-block-components-notice-banner__content{align-self:center;flex-basis:100%;padding-right:16px;white-space:normal}.wc-block-components-notice-banner>.wc-block-components-notice-banner__content:last-child{padding-right:0}.wc-block-components-notice-banner>.wc-block-components-notice-banner__content .wc-block-components-notice-banner__summary{font-weight:600;margin:0 0 8px}.wc-block-components-notice-banner>.wc-block-components-notice-banner__content ol,.wc-block-components-notice-banner>.wc-block-components-notice-banner__content ul{margin:0 0 0 24px;padding:0}.wc-block-components-notice-banner>.wc-block-components-notice-banner__content ol li:after,.wc-block-components-notice-banner>.wc-block-components-notice-banner__content ul li:after{clear:both;content:"";display:block}.wc-block-components-notice-banner>.wc-block-components-notice-banner__content .wc-forward{appearance:none;background:transparent!important;border:0;color:#2f2f2f!important;float:right;margin:0;opacity:.7;padding:0!important;text-decoration-line:underline;text-underline-position:under;transition:all .2s ease-in-out}.wc-block-components-notice-banner>.wc-block-components-notice-banner__content .wc-forward:active,.wc-block-components-notice-banner>.wc-block-components-notice-banner__content .wc-forward:focus,.wc-block-components-notice-banner>.wc-block-components-notice-banner__content .wc-forward:hover{opacity:1;text-decoration:none}.wc-block-components-notice-banner>svg{fill:#fff;background-color:#2f2f2f;border-radius:50%;flex-grow:0;flex-shrink:0;height:100%;padding:2px}.wc-block-components-notice-banner>.wc-block-components-button{background:transparent none!important;border:0!important;box-shadow:none!important;color:#2f2f2f!important;flex:0 0 16px;height:16px!important;margin:6px 0 0 auto!important;min-height:auto!important;min-width:0!important;opacity:.6;outline:none!important;padding:0!important;width:16px!important}.wc-block-components-notice-banner>.wc-block-components-button>svg{margin:0!important}.wc-block-components-notice-banner>.wc-block-components-button:active,.wc-block-components-notice-banner>.wc-block-components-button:focus,.wc-block-components-notice-banner>.wc-block-components-button:hover{opacity:1}.wc-block-components-notice-banner>.wc-block-components-button:focus{outline:2px solid currentColor!important;outline-offset:0}.wc-block-components-notice-banner.is-error{background-color:#fff0f0;border-color:#cc1818}.wc-block-components-notice-banner.is-error>svg{background-color:#cc1818;transform:rotate(180deg)}.wc-block-components-notice-banner.is-warning{background-color:#fffbf4;border-color:#f0b849}.wc-block-components-notice-banner.is-warning>svg{background-color:#f0b849;transform:rotate(180deg)}.wc-block-components-notice-banner.is-success{background-color:#f4fff7;border-color:#4ab866}.wc-block-components-notice-banner.is-success>svg{background-color:#4ab866}.wc-block-components-notice-banner.is-info{background-color:#f4f8ff;border-color:#007cba}.wc-block-components-notice-banner.is-info>svg{background-color:#007cba}.wc-block-components-notice-banner:focus{outline-width:0}.wc-block-components-notice-banner:focus-visible{outline-style:solid;outline-width:2px}.woocommerce.wc-block-store-notices.alignwide{max-width:var(--wp--style--global--wide-size)}