@charset "UTF-8";

/* cs-product-badges-css */

/* badge row over the image; override Flatsome's default 30px top margin so the
   pills sit near the top-left of the thumbnail. Scoped to loops (.products). */
.products .badge-container{display:flex;flex-wrap:wrap;gap:6px;align-items:flex-start;pointer-events:none;margin:10px 0 0 10px}
/* hide Flatsome's default round sale bubble in loops; we render our own pill */
.products .badge-container .callout.badge{display:none!important}
.cs-product-badges{display:contents}
.cs-product-badge{font:600 11px/1 'Inter',system-ui,sans-serif;letter-spacing:.02em;padding:6px 10px;border-radius:999px;color:#fff;text-transform:uppercase;white-space:nowrap;box-shadow:0 1px 2px rgba(0,0,0,.25)}
.cs-badge-sale{background:#e3342f}
.cs-badge-bs{background:#2196f3}
.cs-badge-new{background:#0a0a0a;border:1px solid rgba(255,255,255,.18)}
@media (max-width:640px){.cs-product-badge{font-size:10px;padding:5px 8px}}


/* cs-clickable-banners-css */

.cs-clickable-banner {
    cursor: pointer;
    transition: transform .25s ease, box-shadow .25s ease;
}
.cs-clickable-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    border-radius: inherit;
    box-shadow: 0 0 0 0 rgba(37, 99, 235, 0);
    transition: box-shadow .25s ease;
}
.cs-clickable-banner:hover::before {
    box-shadow: 0 0 0 2px rgba(96, 165, 250, .55) inset;
}
.cs-clickable-banner:hover {
    transform: translateY(-2px);
}
.cs-clickable-banner:active {
    transform: translateY(0);
}
/* Existing inner links still work - bring them above the click overlay */
.cs-clickable-banner a,
.cs-clickable-banner button,
.cs-clickable-banner .text-box,
.cs-clickable-banner .banner-link {
    position: relative;
    z-index: 2;
}
@media (prefers-reduced-motion: reduce) {
    .cs-clickable-banner,
    .cs-clickable-banner::before { transition: none; }
    .cs-clickable-banner:hover { transform: none; }
}


/* cs-combi-polish */

/* =========================================================================
   A. COMBI-PACKS banner - fan-out hover effect
   ========================================================================= */
.cs-combi-banner .cs-combi-card {
    transition: transform .45s cubic-bezier(.22,.9,.32,1.2);
    transform-origin: center center;
    will-change: transform;
}
/* Fan-out on banner hover. Each corner moves outward + slight rotation. */
.cs-combi-banner:hover .cs-combi-card.cs-combi-tl,
.cs-combi-banner:focus-within .cs-combi-card.cs-combi-tl {
    transform: translate(-16px, -10px) rotate(-7deg);
}
.cs-combi-banner:hover .cs-combi-card.cs-combi-tr,
.cs-combi-banner:focus-within .cs-combi-card.cs-combi-tr {
    transform: translate(16px, -10px) rotate(7deg);
}
.cs-combi-banner:hover .cs-combi-card.cs-combi-bl,
.cs-combi-banner:focus-within .cs-combi-card.cs-combi-bl {
    transform: translate(-18px, 12px) rotate(-9deg);
}
.cs-combi-banner:hover .cs-combi-card.cs-combi-br,
.cs-combi-banner:focus-within .cs-combi-card.cs-combi-br {
    transform: translate(18px, 12px) rotate(9deg);
}

/* =========================================================================
   B. Primary CTA buttons - hover-lift + load-pulse
   Targets .button.primary on the homepage, but excludes the marquee CTA
   (which already has its own polish via cs_homepage_marquee).
   ========================================================================= */
.cs-btn-polish {
    transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
    will-change: transform, box-shadow;
}
.cs-btn-polish:hover,
.cs-btn-polish:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(0,0,0,.18), 0 4px 8px rgba(0,0,0,.10);
    filter: brightness(1.04);
}
.cs-btn-polish:active {
    transform: translateY(0);
    box-shadow: 0 4px 8px rgba(0,0,0,.14);
}
@keyframes cs-btn-pulse {
    0%   { transform: scale(1); }
    45%  { transform: scale(1.06); }
    100% { transform: scale(1); }
}
.cs-btn-pulse-once {
    animation: cs-btn-pulse .9s cubic-bezier(.22,.9,.32,1.2) 1;
}

/* =========================================================================
   C. Mini-cart bounce + +1 badge on added_to_cart
   ========================================================================= */
.cs-cart-host {
    position: relative;
    display: inline-block;
}
@keyframes cs-cart-bounce {
    0%   { transform: scale(1); }
    25%  { transform: scale(1.25); }
    55%  { transform: scale(.95); }
    80%  { transform: scale(1.06); }
    100% { transform: scale(1); }
}
.cs-cart-bouncing {
    animation: cs-cart-bounce .6s cubic-bezier(.22,.9,.32,1.4) 1;
    transform-origin: center center;
    display: inline-block;
}
.cs-cart-plus1 {
    position: absolute;
    top: -8px;
    right: -10px;
    background: #16A34A;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    padding: 3px 6px;
    border-radius: 999px;
    box-shadow: 0 2px 6px rgba(0,0,0,.25);
    pointer-events: none;
    opacity: 0;
    transform: translateY(6px) scale(.85);
    transition: opacity .25s ease, transform .25s ease;
    z-index: 9999;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    letter-spacing: 0;
}
.cs-cart-plus1.cs-cart-plus1-show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* =========================================================================
   Reduced-motion: kill all of it.
   ========================================================================= */
@media (prefers-reduced-motion: reduce) {
    .cs-combi-banner .cs-combi-card,
    .cs-btn-polish,
    .cs-cart-bouncing,
    .cs-cart-plus1 {
        transition: none !important;
        animation: none !important;
    }
    .cs-combi-banner:hover .cs-combi-card { transform: none !important; }
}


/* cs-cusp-v2 */

/* ---------- CS "Design je eigen sticker" hero ---------- */
.cs-cusp-v2{
  position:relative;
  display:flex;flex-direction:column;align-items:center;text-align:center;
  gap:18px;padding:4px 0;
  font-family:'Montserrat',-apple-system,BlinkMacSystemFont,sans-serif;
  animation:cs-cusp-rise .9s cubic-bezier(.2,.7,.2,1) both;
}
.cs-cusp-v2 *{font-family:inherit}

.cs-cusp-v2-wordmark{
  display:block;max-width:320px;width:78%;height:auto;margin:0 0 2px;
  filter:drop-shadow(0 2px 18px rgba(33,150,243,.35));
  opacity:.95;
}

.cs-cusp-v2-title{font-family:'Fraunces','Inter',serif;
  font-size:clamp(30px,3.6vw,46px);line-height:1.05;letter-spacing:-.01em;
  color:#fff;margin:0;font-weight:800;text-wrap:balance;
  text-shadow:0 1px 24px rgba(0,0,0,.35);
}

.cs-cusp-v2-sub{
  font-size:clamp(14px,1.15vw,16px);line-height:1.55;
  color:rgba(255,255,255,.88);max-width:38ch;margin:0;font-weight:400;
}

.cs-cusp-v2-cta{
  position:relative;display:inline-flex;align-items:center;gap:10px;
  padding:15px 32px;margin-top:6px;
  border-radius:99px;border:0;
  background:#2196f3;
  color:#fff !important;
  font-weight:600;font-size:14px;letter-spacing:.07em;text-transform:uppercase;
  text-decoration:none !important;
  box-shadow:0 8px 24px rgba(33,150,243,.42), inset 0 1px 0 rgba(255,255,255,.18);
  transition:transform .25s cubic-bezier(.2,.7,.2,1),
             box-shadow .25s ease,
             background .25s ease;
  overflow:hidden;
}
.cs-cusp-v2-cta::after{
  content:'';position:absolute;inset:0;
  background:linear-gradient(120deg,transparent 30%,rgba(255,255,255,.28) 50%,transparent 70%);
  transform:translateX(-100%);
  transition:transform .8s ease;
  pointer-events:none;
}
.cs-cusp-v2-cta:hover{
  transform:translateY(-2px);
  box-shadow:0 12px 30px rgba(33,150,243,.55), inset 0 1px 0 rgba(255,255,255,.22);
  background:#1976d2;
}
.cs-cusp-v2-cta:hover::after{transform:translateX(100%)}
.cs-cusp-v2-cta:active{transform:translateY(0)}
.cs-cusp-v2-cta span{
  display:inline-block;font-size:18px;line-height:1;
  transition:transform .25s ease;
}
.cs-cusp-v2-cta:hover span{transform:translateX(3px)}

/* Mobile: center the stack */
@media(max-width:849px){
  .cs-cusp-v2{align-items:center;text-align:center;gap:14px}
  .cs-cusp-v2-sub{max-width:32ch}
}

/* Animations - only one, runs once */
@keyframes cs-cusp-rise{
  0%  {opacity:0;transform:translateY(14px)}
  100%{opacity:1;transform:translateY(0)}
}

@media(prefers-reduced-motion:reduce){
  .cs-cusp-v2{animation:none}
  .cs-cusp-v2-cta,.cs-cusp-v2-cta::after,.cs-cusp-v2-cta span{transition:none}
}



.cs-cusp-wrap{display:grid;grid-template-columns:1fr auto;gap:48px;align-items:center;width:100%}
@media(max-width:880px){.cs-cusp-wrap{grid-template-columns:1fr;gap:0}}

50%{transform:translateY(-6px)}}
@media(max-width:880px){}
@media(prefers-reduced-motion:reduce){}

50%{opacity:1;transform:scale(1.1)}}

@media(max-width:600px){}


.cs-cusp-seg-heading{font-size:11px;font-weight:600;letter-spacing:.14em;text-transform:uppercase;color:rgba(245,239,231,.62);text-align:center;margin:0 0 6px;font-family:Montserrat,sans-serif}
.cs-cusp-seg{display:grid;grid-template-columns:1fr 1fr 1fr;background:#241a12;border:1px solid rgba(255,255,255,.08);border-radius:14px;padding:4px;gap:2px;box-shadow:inset 0 1px 0 rgba(255,255,255,.04),0 1px 2px rgba(0,0,0,.4);position:relative;max-width:280px;width:100%;margin:0 auto}
.cs-cusp-seg__item{appearance:none;background:transparent;border:0;color:#f5efe7;font-family:Montserrat,sans-serif;font-size:10px;font-weight:600;letter-spacing:.01em;padding:9px 4px 7px;border-radius:10px;cursor:pointer;display:flex;flex-direction:column;align-items:center;gap:6px;transition:background .18s,color .18s,transform .18s;position:relative;outline:none;text-decoration:none}
.cs-cusp-seg__item + .cs-cusp-seg__item::before{content:"";position:absolute;left:-1px;top:22%;bottom:22%;width:1px;background:rgba(255,255,255,.06);transition:opacity .18s}
.cs-cusp-seg__item:hover,.cs-cusp-seg__item:focus-visible{background:rgba(33,150,243,.18);color:#fff}
.cs-cusp-seg__item:hover::before,.cs-cusp-seg__item:focus-visible::before,.cs-cusp-seg__item:hover + .cs-cusp-seg__item::before,.cs-cusp-seg__item:focus-visible + .cs-cusp-seg__item::before{opacity:0}
.cs-cusp-seg__item:active{transform:scale(.97)}
.cs-cusp-seg__card{width:42px;height:28px;border-radius:4px;background:linear-gradient(135deg,#3a2a1c 0%,#2a1d12 100%);border:1px solid rgba(255,255,255,.1);position:relative;display:flex;align-items:center;justify-content:flex-start;padding:4px;transition:border-color .18s,box-shadow .18s}
.cs-cusp-seg__card::after{content:"";position:absolute;left:0;right:0;top:55%;height:1px;background:rgba(255,255,255,.04)}
.cs-cusp-seg__chip{border-radius:1.5px;background:linear-gradient(135deg,#f5d27a 0%,#c8a14a 100%);box-shadow:inset 0 0 0 .5px rgba(0,0,0,.35),inset 0 0 0 1.5px rgba(255,255,255,.08);position:relative}
.cs-cusp-seg__chip::before,.cs-cusp-seg__chip::after{content:"";position:absolute;left:12%;right:12%;height:.5px;background:rgba(0,0,0,.4)}
.cs-cusp-seg__chip::before{top:33%}
.cs-cusp-seg__chip::after{top:66%}
.cs-cusp-seg__chip--small{width:9px;height:7px}
.cs-cusp-seg__chip--big{width:18px;height:13px}
.cs-cusp-seg__card--none .cs-cusp-seg__slot{width:9px;height:7px;border-radius:1.5px;border:1px dashed rgba(245,239,231,.28);background:transparent}
.cs-cusp-seg__item:hover .cs-cusp-seg__card,.cs-cusp-seg__item:focus-visible .cs-cusp-seg__card{border-color:rgba(33,150,243,.55);box-shadow:0 0 0 1px rgba(33,150,243,.35)}
.cs-cusp-seg__label{line-height:1.1}
.cs-cusp-seg__item:hover .cs-cusp-seg__label{color:#fff}
.cs-cusp-chips{justify-self:end;margin-right:-12px}@media(max-width:600px){.cs-cusp-chips{margin-right:0}}
.cs-cusp-v2-dot{display:inline-block;color:#2196f3;font-weight:600;margin-left:.02em;transform:scale(1.35) translateY(.03em);transform-origin:bottom left;text-shadow:0 0 18px rgba(33,150,243,.55),0 0 1px rgba(33,150,243,.4);animation:cs-cusp-dot-breathe 3.2s ease-in-out infinite}
@keyframes cs-cusp-dot-breathe{0%,100%{opacity:.92;transform:scale(1.35) translateY(.03em)}50%{opacity:1;transform:scale(1.55) translateY(.03em)}}
@media (prefers-reduced-motion:reduce){.cs-cusp-v2-dot{animation:none!important;transform:scale(1.35) translateY(.03em)!important}}


/* cs-vp-marquee */

/* Background-blurred clone behind each marquee card. The blurred bg is
   sourced from the card's own product image, so the dark "leak" around
   the foreground image blends seamlessly with a matching color halo. */
.cs-banner-marquee-card,
.cs-marquee__card,
.cs-home-marquee__card {
    /* additive: the existing rules already set position:relative and a
       fallback background-color, we just make sure z-index stacking works */
    isolation: isolate;
}
.cs-vp-bg-blur {
    position: absolute;
    inset: -8%;                       /* slight overscan so blur edges don't show */
    background-color: var(--cs-vp-card-bg, #1F2937);
    background-image: var(--cs-vp-card-bg-img, none);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(28px) saturate(1.55) brightness(0.88);
    transform: scale(1.15);
    z-index: 0;
    pointer-events: none;
    transition: opacity .35s ease;
    opacity: 0;
}
.cs-vp-bg-ready .cs-vp-bg-blur { opacity: 1; }

/* Make sure the foreground image and label sit above the blur layer. */
.cs-banner-marquee-card > img,
.cs-banner-marquee-card > .cs-banner-marquee-card__label,
.cs-marquee__card > img,
.cs-marquee__card > .cs-marquee__label,
.cs-home-marquee__card > img,
.cs-home-marquee__card > .cs-home-marquee__card__label {
    position: relative;
    z-index: 1;
}

/* Soften the existing solid background so the blurred clone wins
   visually but we still have a fallback color before JS runs. */
.cs-vp-bg-ready {
    background-color: transparent !important;
}


/* cs-banner-marquee-css */

/* === ONE shared bgwp.jpg backdrop for the entire homepage ===
   Applied to body.home with background-attachment: fixed so the rocky
   pattern stays anchored to the viewport - all sections see the same
   bg view at any scroll position, so the pattern never restarts at
   section boundaries. Sections themselves are made transparent below. */
body.home {
    background-image:
        linear-gradient(225deg, rgba(7,8,11,.82) 0%, rgba(7,8,11,.68) 100%),
        url("/wp-content/uploads/2022/08/bgwp.jpg") !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-attachment: fixed !important;
    background-color: #07080b !important;
}
@media (max-width: 1024px) {
    body.home {
        background-attachment: scroll !important;
        background-size: 100% auto !important;
        background-repeat: repeat-y !important;
    }
}
/* Flatsome's wrapper chain has multiple opaque dark backgrounds that
   sit ON TOP of body - making the body backdrop invisible. Strip them
   ALL so body's bgwp.jpg shines through every section. */
body.home,
body.home #wrapper,
body.home #main,
body.home main#main,
body.home #main.dark,
body.home #main.dark-page-wrapper,
body.home main.dark,
body.home main.dark-page-wrapper,
body.home #content,
body.home .content-area,
body.home .page-wrapper,
body.home .page-wrapper-inner {
    background-color: transparent !important;
}
body.home {
    background-color: #07080b !important;
}
body.home #wrapper,
body.home #main,
body.home main,
body.home #content,
body.home .content-area {
    background-image: none !important;
}
/* Banner / text-box wrappers - Flatsome's "dark" class gives them a bg */
body.home #content > .banner,
body.home #content > .banner > .banner-inner,
body.home #content > .banner .text-box,
body.home #content > .banner .text-box-content,
body.home #content > .banner .text-box-content.dark,
body.home #content > .banner .text-inner {
    background: transparent !important;
    background-color: transparent !important;
}

/* === Hide each homepage banner's own <img class="bg" decoding="async"> + overlay so the
       body backdrop shines through. We DON'T set our own bg on .banner-bg
       anymore - that was what caused the "pattern restart per section"
       seam the user complained about. */
body.home #content > .banner > .banner-inner > .banner-bg > img.bg {
    display: none !important; /* was visibility+opacity: display:none keeps lazy-load from ever fetching it */
}
body.home #content > .banner > .banner-inner > .banner-bg {
    background: transparent !important;
}
body.home #content > .banner > .banner-inner > .banner-bg > .overlay {
    background: transparent !important;
    opacity: 0 !important;
}

/* Hide original first-banner text content immediately to prevent flash before JS swap */
body.home .banner:first-of-type:not(.cs-banner-has-marquee) .text-box .text-box-content { visibility: hidden; }
body.home .cs-banner-has-marquee .text-box .text-box-content { visibility: visible !important; }
/* Once swap happens, widen the text-box and let banner grow */
body.home .cs-banner-has-marquee .text-box {
    width: min(96%, 1180px) !important;
    max-width: min(96%, 1180px) !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
}
body.home .cs-banner-has-marquee,
body.home .cs-banner-has-marquee .banner-inner {
    min-height: 540px !important;
    height: auto !important;
}
@media (max-width: 768px) {
    body.home .cs-banner-has-marquee,
    body.home .cs-banner-has-marquee .banner-inner {
        min-height: 540px !important;
    }
}

/* Push the side character images (14.png right, 15.png left) further outward
   so they don't crowd the marquee heading. */
body.home .cs-banner-has-marquee .banner-layers > .img.lg-x95,
body.home .cs-banner-has-marquee .banner-layers > .img.md-x95,
body.home .cs-banner-has-marquee .banner-layers > .img.x100 {
    transform: translateX(250px) !important;
}
body.home .cs-banner-has-marquee .banner-layers > .img.lg-x5,
body.home .cs-banner-has-marquee .banner-layers > .img.md-x5,
body.home .cs-banner-has-marquee .banner-layers > .img.x5 {
    transform: translateX(-250px) !important;
}
/* On phones, hide the side characters entirely - they only crowd the marquee */
@media (max-width: 768px) {
    body.home .cs-banner-has-marquee .banner-layers > .img.has-hover {
        display: none !important;
    }
}

/* === The marquee inside the banner === */
.cs-banner-marquee {
    color: #F3F6FA;
    width: 100%;
    padding: 12px 0 4px;
    font-family: "Inter", system-ui, sans-serif;
}
.cs-banner-marquee-head {
    text-align: center;
    margin: 0 auto 16px;
    max-width: 720px;
    padding: 0 12px;
}
.cs-banner-marquee .cs-banner-marquee-headline {
    font-family: "Fraunces", Georgia, serif !important;
    font-weight: 600 !important;
    font-size: 56px !important;
    line-height: 1.05 !important;
    letter-spacing: -0.022em !important;
    color: #F3F6FA !important;
    margin: 0 auto 12px !important;
    max-width: 720px;
    padding: 0 12px;
    text-shadow: 0 2px 8px rgba(0,0,0,.55);
    text-wrap: balance;
}
@media (max-width: 768px) {
    .cs-banner-marquee .cs-banner-marquee-headline {
        font-size: 32px !important;
        line-height: 1.1 !important;
        margin-bottom: 10px !important;
    }
}
.cs-banner-marquee .cs-banner-marquee-subline {
    font-family: "Inter", system-ui, sans-serif !important;
    font-weight: 400 !important;
    font-size: 17px !important;
    line-height: 1.4 !important;
    color: rgba(255, 255, 255, .82) !important;
    margin: 0 auto 4px !important;
    max-width: 520px;
    padding: 0 16px;
    text-shadow: 0 1px 4px rgba(0,0,0,.5);
    text-wrap: pretty;
}
@media (max-width: 768px) {
    .cs-banner-marquee .cs-banner-marquee-subline { font-size: 15px !important; }
}
/* Marquee track */
.cs-banner-marquee-strip {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 10px 0 14px;
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 90px, #000 calc(100% - 90px), transparent 100%);
    mask-image: linear-gradient(to right, transparent 0, #000 90px, #000 calc(100% - 90px), transparent 100%);
}
.cs-banner-marquee-strip__track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: cs-banner-marquee-roll 140s linear infinite;
    will-change: transform;
}
@media (hover: hover) and (pointer: fine) {
  .cs-banner-marquee-strip:hover .cs-banner-marquee-strip__track { animation-play-state: paused; }
}
@keyframes cs-banner-marquee-roll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* Cards: bank-card aspect, image fills (slight scale to crop image's own dark padding) */
.cs-banner-marquee-card {
    flex: 0 0 auto;
    width: 230px;
    aspect-ratio: 1.586 / 1;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    background: #1F2937;
    box-shadow:
        0 10px 26px rgba(0, 0, 0, .55),
        0 1px 3px rgba(0, 0, 0, .4),
        0 0 0 1px rgba(96, 165, 250, .15) inset;
    transition: transform .25s ease, box-shadow .25s ease;
    text-decoration: none !important;
}
.cs-banner-marquee-card:hover {
    transform: translateY(-4px);
    box-shadow:
        0 18px 38px rgba(0, 0, 0, .65),
        0 2px 6px rgba(0, 0, 0, .45),
        0 0 0 2px rgba(96, 165, 250, .75) inset;
}
.cs-banner-marquee-card img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transform: scale(1.18);            /* crop the image's own dark padding */
    transform-origin: center;
    transition: transform .35s ease;
}
.cs-banner-marquee-card:hover img { transform: scale(1.24); }
.cs-banner-marquee-card__label {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 10px 14px 12px;
    background: linear-gradient(to top, rgba(0,0,0,.85) 0%, rgba(0,0,0,.5) 60%, rgba(0,0,0,0) 100%);
    color: #FFFFFF;
    font-family: "Fraunces", Georgia, serif;
    font-size: 14.5px;
    font-weight: 500;
    letter-spacing: -0.005em;
    line-height: 1.2;
    pointer-events: none;
}

/* CTA - primary (filled) + secondary (outline), inline desktop, stacked mobile */
.cs-banner-marquee-cta-wrap {
    margin-top: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    padding: 0 16px;
}
@media (max-width: 600px) {
    .cs-banner-marquee-cta-wrap {
        margin-top: 22px;
        flex-direction: column;
        gap: 10px;
    }
    .cs-banner-marquee-cta-wrap .cs-banner-marquee-cta { width: 100%; max-width: 320px; justify-content: center; }
}
.cs-banner-marquee-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 26px;
    border-radius: 99px;
    font-family: "Inter", system-ui, sans-serif;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.01em;
    text-decoration: none !important;
    transition: background .2s ease, transform .2s ease, box-shadow .2s ease, border-color .2s ease, color .2s ease;
}
.cs-banner-marquee-cta svg { transition: transform .2s ease; }
.cs-banner-marquee-cta:hover { transform: translateY(-2px); }
.cs-banner-marquee-cta:hover svg { transform: translateX(3px); }

.cs-banner-marquee-cta--primary {
    background: #2196F3;
    color: #FFFFFF !important;
    border: 1px solid #2196F3;
    box-shadow: 0 8px 22px rgba(37,99,235,.4);
}
.cs-banner-marquee-cta--primary:hover {
    background: #1D4ED8;
    border-color: #1D4ED8;
    color: #FFFFFF !important;
    box-shadow: 0 12px 28px rgba(37,99,235,.5);
}

.cs-banner-marquee-cta--secondary {
    background: rgba(255, 255, 255, .04);
    color: #F3F6FA !important;
    border: 1px solid rgba(147, 197, 253, .55);
    box-shadow: 0 4px 14px rgba(0,0,0,.25);
}
.cs-banner-marquee-cta--secondary:hover {
    background: rgba(96, 165, 250, .14);
    border-color: #93C5FD;
    color: #FFFFFF !important;
    box-shadow: 0 8px 20px rgba(0,0,0,.35);
}

/* Mobile */
@media (max-width: 768px) {
    .cs-banner-marquee-card { width: 200px; border-radius: 12px; }
    .cs-banner-marquee-card__label { font-size: 13px; padding: 9px 12px 11px; }
    .cs-banner-marquee-strip__track { animation-duration: 100s; gap: 14px; }
    .cs-banner-marquee-strip {
        -webkit-mask-image: linear-gradient(to right, transparent 0, #000 30px, #000 calc(100% - 30px), transparent 100%);
        mask-image: linear-gradient(to right, transparent 0, #000 30px, #000 calc(100% - 30px), transparent 100%);
    }
}
@media (prefers-reduced-motion: reduce) {
    .cs-banner-marquee-strip__track { animation: none; }
    .cs-banner-marquee-strip { mask-image: none; -webkit-mask-image: none; overflow-x: auto; }
}

/* Touch swipe: JS adds .cs-marq-swipe on touch devices and drives scrollLeft
   instead of the transform animation, so the strip is finger-swipeable and a
   vertical scroll-tap no longer freezes it. */
.cs-banner-marquee-strip.cs-marq-swipe { overflow-x: auto; overflow-y: hidden; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.cs-banner-marquee-strip.cs-marq-swipe::-webkit-scrollbar { display: none; }
.cs-banner-marquee-strip.cs-marq-swipe .cs-banner-marquee-strip__track { animation: none !important; }

/* Hide host until JS moves the marquee - also visually hidden if JS fails */
#cs-home-marquee-host { display: none !important; }

.cs-banner-marquee .cs-banner-marquee-headline__dot{display:inline-block;color:#2196f3;font-weight:600;margin-left:.02em;transform:scale(1.35) translateY(.03em);transform-origin:bottom left;text-shadow:0 0 18px rgba(33,150,243,.55),0 0 1px rgba(33,150,243,.4);animation:cs-marq-dot-breathe 3.2s ease-in-out infinite}
@keyframes cs-marq-dot-breathe{0%,100%{opacity:.92;transform:scale(1.35) translateY(.03em)}50%{opacity:1;transform:scale(1.55) translateY(.03em)}}
@media (prefers-reduced-motion:reduce){.cs-banner-marquee .cs-banner-marquee-headline__dot{animation:none!important;transform:scale(1.35) translateY(.03em)!important}}


/* cs-nl-css */

.cs-nl-band{border-top:1px solid rgba(255,255,255,.08);background:#0c0d11}
.cs-nl-band .cs-nl{padding:42px 16px}
.cs-nl-band .cs-nl__eyebrow{display:none}
.cs-nl-band .cs-nl__title{font-size:clamp(21px,2.6vw,28px)}
.cs-nl-band .cs-nl__social,.cs-nl-band .cs-nl__social-label{display:none}
.cs-nl{
  position:relative;width:100%;padding:48px 16px;
  font-family:'Inter',system-ui,-apple-system,Segoe UI,sans-serif;color:#f5f7fa;
}
.cs-nl--anim{opacity:0;transform:translateY(20px);transition:opacity .7s ease,transform .7s cubic-bezier(.22,.9,.32,1.2)}
.cs-nl--anim.is-in{opacity:1;transform:none}
.cs-nl__inner{
  max-width:640px;margin:0 auto;text-align:center;
  display:flex;flex-direction:column;align-items:center;gap:14px;
}
.cs-nl__eyebrow{
  font-size:11px;font-weight:600;letter-spacing:.16em;text-transform:uppercase;
  color:rgba(245,247,250,.55);
}
.cs-nl__title{
  font-family:'Fraunces',Georgia,serif;font-weight:600;
  font-size:clamp(26px,3.4vw,38px);line-height:1.12;letter-spacing:-.012em;
  color:#fff;margin:0;text-wrap:balance;
}
.cs-nl__sub{
  font-size:15px;line-height:1.55;color:rgba(245,247,250,.75);
  max-width:46ch;margin:0;text-wrap:pretty;
}
.cs-nl__form{
  position:relative;width:100%;max-width:460px;margin:6px 0 0;
  display:grid;grid-template-columns:1fr auto;gap:8px;align-items:stretch;
}
.cs-nl__input{
  appearance:none;width:100%;
  background-color:rgba(255,255,255,.06)!important;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23aeb6c2' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='14' rx='2.5'/%3E%3Cpath d='m3.5 7 8.5 6 8.5-6'/%3E%3C/svg%3E")!important;
  background-repeat:no-repeat!important;background-position:16px center!important;background-size:20px!important;
  border:1px solid rgba(255,255,255,.18)!important;
  color:#fff!important;font:inherit;font-size:15px;
  padding:13px 16px 13px 46px!important;border-radius:10px;
  transition:border-color .2s,background-color .2s,box-shadow .2s;
}
.cs-nl__input::placeholder{color:rgba(245,247,250,.55)!important;opacity:1}
.cs-nl__input:focus{
  outline:none;border-color:#2196f3!important;background-color:rgba(33,150,243,.08)!important;
  box-shadow:0 0 0 4px rgba(33,150,243,.18);
}
.cs-nl__input.is-invalid{border-color:#ff8a8a!important}
.cs-nl__input.is-valid{
  border-color:#7ee2a5!important;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23aeb6c2' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='14' rx='2.5'/%3E%3Cpath d='m3.5 7 8.5 6 8.5-6'/%3E%3C/svg%3E"),url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%237ee2a5' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m20 6-11 11-5-5'/%3E%3C/svg%3E")!important;
  background-repeat:no-repeat,no-repeat!important;
  background-position:16px center,right 14px center!important;
  background-size:20px,18px!important;
}
.cs-nl__btn{
  appearance:none;border:0;cursor:pointer;
  background:#2196f3;color:#fff;font:inherit;font-weight:600;font-size:14px;
  letter-spacing:.04em;padding:0 22px;border-radius:10px;
  box-shadow:0 6px 18px rgba(33,150,243,.32),inset 0 1px 0 rgba(255,255,255,.18);
  transition:transform .2s,background .2s,box-shadow .2s;
}
.cs-nl__btn:hover{background:#1976d2;transform:translateY(-1px);box-shadow:0 8px 22px rgba(33,150,243,.42),inset 0 1px 0 rgba(255,255,255,.22)}
.cs-nl__btn:active{transform:translateY(0)}
.cs-nl__btn[disabled]{opacity:.6;cursor:wait}
.cs-nl__msg{
  grid-column:1/-1;min-height:1.4em;margin:2px 0 0;
  font-size:13.5px;color:rgba(245,247,250,.8);
}
.cs-nl__msg.is-error{color:#ff8a8a}
.cs-nl__msg.is-success{color:#7ee2a5}
.cs-nl__social-label{
  font-size:11.5px;letter-spacing:.14em;text-transform:uppercase;
  color:rgba(245,247,250,.45);margin:14px 0 0;
}
.cs-nl__social{display:inline-flex;gap:14px;margin:2px 0 0}
.cs-nl__social a{
  display:inline-flex;align-items:center;justify-content:center;
  width:38px;height:38px;border-radius:999px;
  color:rgba(245,247,250,.78);background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.10);
  transition:color .18s,background .18s,border-color .18s,transform .18s;
}
.cs-nl__social a:hover{color:#fff;background:rgba(33,150,243,.18);border-color:rgba(33,150,243,.45);transform:translateY(-2px)}
@media(max-width:560px){
  .cs-nl__form{grid-template-columns:1fr;}
  .cs-nl__btn{padding:13px 22px}
}
@media(prefers-reduced-motion:reduce){
  .cs-nl__btn,.cs-nl__social a{transition:none}
  .cs-nl--anim{opacity:1!important;transform:none!important;transition:none!important}
}


/* cs-search-hide-pages */

.live-search-results .ux-search-section[data-type="page"],
.live-search-results .search-section-pages,
.live-search-results .page-search-results,
.live-search-results [data-post-type="page"],
.autocomplete-suggestion[data-type="page"],
.autocomplete-suggestion[data-type="post"] {
    display: none !important;
}


/* cs-specials-css */

.cs-spc{background:transparent;--cs-cool-1:#0c2740;--cs-cool-2:#0a1a2e;--cs-cool-acc:#2196f3;--cs-warm-1:#14304b;--cs-warm-2:#091627;--cs-warm-acc:#60a5fa;--cs-ink:#f5f7fa;--cs-mute:rgba(245,247,250,.72);padding:48px 16px;color:var(--cs-ink);font-family:'Inter',system-ui,-apple-system,Segoe UI,sans-serif}
.cs-spc__grid{max-width:1200px;margin:0 auto;display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:20px}
@media (max-width:780px){.cs-spc__grid{grid-template-columns:1fr;gap:16px}.cs-spc{padding:32px 14px}}
.cs-spc__card{position:relative;display:grid;grid-template-columns:minmax(140px,38%) 1fr;gap:0;border-radius:20px;text-decoration:none;color:inherit;background:linear-gradient(135deg,var(--bg1),var(--bg2));border:1px solid rgba(255,255,255,.06);box-shadow:0 1px 0 rgba(255,255,255,.04) inset,0 18px 40px -22px rgba(0,0,0,.7);isolation:isolate;transition:transform .35s cubic-bezier(.22,.9,.32,1.2),box-shadow .35s ease,border-color .35s ease}
.cs-spc__card--cool{--bg1:var(--cs-cool-1);--bg2:var(--cs-cool-2);--acc:var(--cs-cool-acc)}
.cs-spc__card--warm{--bg1:var(--cs-warm-1);--bg2:var(--cs-warm-2);--acc:var(--cs-warm-acc)}
.cs-spc--anim .cs-spc__card{opacity:0;transform:translateY(20px);transition:none}
.cs-spc--anim.is-in .cs-spc__card{opacity:1;transform:none;transition:opacity .6s ease,transform .6s cubic-bezier(.22,.9,.32,1.2),box-shadow .35s ease,border-color .35s ease}
.cs-spc--anim.is-in .cs-spc__grid .cs-spc__card:nth-child(2){transition-delay:.09s}
.cs-spc__card::before{content:"";position:absolute;inset:0;border-radius:inherit;background:radial-gradient(120% 80% at 0% 0%,color-mix(in srgb,var(--acc) 18%,transparent),transparent 60%);pointer-events:none;z-index:0;opacity:.85;transition:opacity .35s ease;overflow:hidden}
.cs-spc__card::after{content:"";position:absolute;inset:0;border-radius:inherit;padding:1px;background:linear-gradient(135deg,color-mix(in srgb,var(--acc) 55%,transparent),transparent 55%);-webkit-mask:linear-gradient(#000 0 0) content-box,linear-gradient(#000 0 0);-webkit-mask-composite:xor;mask-composite:exclude;pointer-events:none;opacity:.55;transition:opacity .35s ease;z-index:1}
.cs-spc__card:hover,.cs-spc__card:focus-visible{transform:translateY(-4px);box-shadow:0 1px 0 rgba(255,255,255,.06) inset,0 30px 60px -28px color-mix(in srgb,var(--acc) 35%,#000);border-color:color-mix(in srgb,var(--acc) 35%,rgba(255,255,255,.08))}
.cs-spc__card:hover::before,.cs-spc__card:focus-visible::before{opacity:1}
.cs-spc__card:hover::after,.cs-spc__card:focus-visible::after{opacity:.95}
.cs-spc__card:focus-visible{outline:2px solid var(--acc);outline-offset:3px}
.cs-spc__art{position:relative;min-height:240px;padding:14px;z-index:0;overflow:hidden;contain:paint;container-type:inline-size;container-name:cs-art}
.cs-spc__glow{position:absolute;left:50%;top:50%;width:130%;height:130%;transform:translate(-50%,-50%);background:radial-gradient(closest-side,color-mix(in srgb,var(--acc) 32%,transparent),transparent 70%);opacity:.8;z-index:2;pointer-events:none}
.cs-spc__peek{position:absolute;left:50%;top:50%;width:84%;max-width:244px;aspect-ratio:1.515;transform:translate(-50%,-50%) rotate(-3deg);z-index:3;pointer-events:none;transition:transform .45s cubic-bezier(.22,.9,.32,1.2)}
.cs-spc__peek-img{position:absolute;inset:0;width:100%;height:100%;object-fit:contain;opacity:0;transition:opacity .9s ease;filter:brightness(.55) saturate(.96) drop-shadow(0 16px 30px rgba(0,0,0,.6))}
.cs-spc__peek-img.is-active{opacity:1}
.cs-spc__card:hover .cs-spc__peek{transform:translate(-50%,-50%) rotate(-3deg) scale(1.03)}
.cs-spc__sticker{position:absolute;display:block;max-width:none}
.cs-spc__sticker--hero{width:86%;left:50%;top:50%;transform:translate(-50%,-50%) rotate(-3deg);z-index:5}
.cs-spc__sticker--ghost{width:34%;z-index:6;opacity:.92;filter:drop-shadow(0 10px 22px rgba(0,0,0,.55))}
.cs-spc__sticker--a{top:-22%;left:-16%;transform:rotate(-20deg)}
.cs-spc__sticker--b{bottom:-22%;right:-16%;transform:rotate(16deg)}
@media (max-width:780px){.cs-spc__sticker--ghost{display:none}}
.cs-spc__card:hover .cs-spc__sticker--ghost{opacity:.58}
.cs-spc__hero-text{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%) rotate(-3deg);z-index:5;display:inline-flex;align-items:center;gap:.2em;white-space:nowrap;font-family:'Montserrat','Inter',system-ui,-apple-system,Segoe UI,sans-serif;font-weight:900;font-variation-settings:"wght" 900;letter-spacing:-.025em;line-height:.95;text-transform:uppercase;pointer-events:none;user-select:none;max-width:96%}
.cs-spc__hero-text--random{font-size:12cqi;flex-direction:column;gap:.05em;align-items:center}
.cs-spc__hero-text--random .cs-spc__hero-row{display:inline-flex;align-items:center;gap:.25em}
.cs-spc__hero-outline{color:#ffffff;display:inline-block;line-height:.95;text-shadow:0 2px 16px rgba(4,10,22,.7),0 1px 3px rgba(4,10,22,.55)}
.cs-spc__hero-qm{color:#2196f3;font-weight:900;font-variation-settings:"wght" 900;text-shadow:0 0 .55em rgba(33,150,243,.5);display:inline-block;line-height:.95}
.cs-spc__hero-text--deals{flex-direction:column;align-items:center;gap:.05em;font-size:10cqi}
.cs-spc__hero-w{color:#ffffff;display:block;line-height:.95;text-shadow:0 2px 16px rgba(4,10,22,.7),0 1px 3px rgba(4,10,22,.55)}
.cs-spc__hero-b{color:#2196f3;display:block;line-height:.95;text-shadow:0 0 .5em rgba(33,150,243,.5),0 2px 12px rgba(4,10,22,.6)}
@supports not (font-size:1cqi){.cs-spc__hero-text--random{font-size:clamp(16px,2vw,24px)}.cs-spc__hero-text--deals{font-size:clamp(18px,2.4vw,26px)}}
@media (max-width:780px){.cs-spc__hero-text--random{font-size:11cqi}.cs-spc__hero-text--deals{font-size:11cqi}}
.cs-spc__body{padding:28px 28px 26px 8px;display:flex;flex-direction:column;justify-content:center;position:relative;z-index:2;min-width:0}
@media (max-width:780px){.cs-spc__card{grid-template-columns:1fr;grid-template-rows:auto auto}.cs-spc__art{min-height:200px}.cs-spc__body{padding:20px 22px 24px}.cs-spc__cta{align-self:center}}
.cs-spc__eyebrow{display:inline-block;font-size:11px;letter-spacing:.16em;text-transform:uppercase;color:var(--acc);font-weight:600;margin-bottom:8px}
.cs-spc__title{font-family:'Fraunces','Inter',serif;font-weight:600;font-size:clamp(22px,2.4vw,30px);line-height:1.15;margin:0 0 10px;color:var(--cs-ink);letter-spacing:-.01em;text-wrap:balance}
.cs-spc__copy{font-size:14.5px;line-height:1.55;color:var(--cs-mute);margin:0 0 18px;text-wrap:pretty}
.cs-spc__cta{display:inline-flex;align-items:center;gap:14px;padding:11px 16px;border-radius:999px;background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.09);width:fit-content;backdrop-filter:blur(6px);transition:background .25s ease,border-color .25s ease,transform .25s ease}
.cs-spc__cta-label{font-weight:600;font-size:14px;color:var(--cs-ink);display:inline-flex;align-items:center;gap:6px}
.cs-spc__arrow{display:inline-block;transition:transform .3s cubic-bezier(.22,.9,.32,1.2)}
.cs-spc__price{font-size:13px;font-weight:600;color:var(--acc);padding-left:12px;border-left:1px solid rgba(255,255,255,.12)}
.cs-spc__card:hover .cs-spc__cta{background:color-mix(in srgb,var(--acc) 18%,rgba(255,255,255,.05));border-color:color-mix(in srgb,var(--acc) 45%,rgba(255,255,255,.12))}
.cs-spc__card:hover .cs-spc__arrow{transform:translateX(4px)}
@media (prefers-reduced-motion:reduce){.cs-spc__card,.cs-spc__sticker,.cs-spc__cta,.cs-spc__arrow{transition:none!important}.cs-spc--anim .cs-spc__card{opacity:1!important;transform:none!important}.cs-spc__peek-img{transition:none!important}.cs-spc__card:hover{transform:none}.cs-spc__card:hover .cs-spc__sticker--hero,.cs-spc__card:hover .cs-spc__sticker--a,.cs-spc__card:hover .cs-spc__sticker--b{transform:none}.cs-spc__card:hover .cs-spc__sticker--hero{transform:translate(-50%,-50%) rotate(-4deg)}.cs-spc__card:hover .cs-spc__sticker--a{transform:rotate(-14deg)}.cs-spc__card:hover .cs-spc__sticker--b{transform:rotate(12deg)}}

.cs-spc__dot{display:inline-block;color:#2196f3;font-weight:600;margin-left:.02em;transform:scale(1.35) translateY(.03em);transform-origin:bottom left;text-shadow:0 0 18px rgba(33,150,243,.55),0 0 1px rgba(33,150,243,.4);animation:cs-spc-dot-breathe 3.2s ease-in-out infinite}
@keyframes cs-spc-dot-breathe{0%,100%{opacity:.92;transform:scale(1.35) translateY(.03em)}50%{opacity:1;transform:scale(1.55) translateY(.03em)}}
@media (prefers-reduced-motion:reduce){.cs-spc__dot{animation:none!important;transform:scale(1.35) translateY(.03em)!important}}


/* cs-typed-headline-css */

.cs-typed-host { display: inline-flex; align-items: baseline; }
.cs-typed-text { white-space: pre; }
.cs-typed-cursor {
    display: inline-block;
    width: 0.08em;
    min-width: 2px;
    height: 0.95em;
    background: currentColor;
    margin-left: 0.12em;
    vertical-align: -0.12em;
    animation: cs-typed-blink 0.95s steps(1) infinite;
    border-radius: 1px;
}
@keyframes cs-typed-blink {
    0%, 50%   { opacity: 1; }
    50.01%, 100% { opacity: 0; }
}
.cs-typed-host[data-typed-done="1"] .cs-typed-cursor { animation-duration: 1.4s; opacity: .6; }
@media (prefers-reduced-motion: reduce) {
    .cs-typed-cursor { display: none; }
}


/* cs-lang-switch-css */

.cs-lang-switch{position:fixed;top:10px;right:10px;z-index:99999;background:rgba(255,255,255,0.92);border-radius:4px;padding:6px 10px;box-shadow:0 1px 4px rgba(0,0,0,0.15);font-size:13px;display:flex;gap:8px;align-items:center}
.cs-lang-switch a{text-decoration:none;opacity:0.45;transition:opacity .15s;display:inline-flex;align-items:center;gap:4px;color:#222}
.cs-lang-switch a.active{opacity:1;font-weight:600}
.cs-lang-switch a:hover{opacity:1}
.cs-lang-switch svg{width:18px;height:12px;display:block}
@media (max-width:640px){.cs-lang-switch{top:auto;bottom:10px} body.woocommerce-cart .cs-lang-switch,body.woocommerce-checkout .cs-lang-switch{display:none}}


/* cs-cusp-redesign-css */

/* === Banner self-sizes to content ===
   Strategy: make the text-box a normal in-flow element (not absolute)
   inside the banner-layers, then the banner naturally grows to fit
   content + padding. No more min-height tuning, no empty space above
   or below. We keep .banner-bg absolute so the bg image still covers. */
body.home #content > .banner:nth-of-type(2) {
    min-height: 0 !important;
    height: auto !important;
    padding: 56px 0 28px !important;
}
body.home #content > .banner:nth-of-type(2) .banner-inner {
    position: relative !important;
    overflow: visible !important;
    min-height: 0 !important;
    height: auto !important;
}
body.home #content > .banner:nth-of-type(2) .banner-bg {
    position: absolute !important;
    inset: 0 !important;
}
body.home #content > .banner:nth-of-type(2) .banner-layers {
    position: relative !important;
    overflow: visible !important;
}
body.home #content > .banner:nth-of-type(2) .text-box {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;
    margin: 0 auto !important;
    width: min(96%, 1180px) !important;
    max-width: min(96%, 1180px) !important;
}
@media (max-width: 768px) {
    body.home #content > .banner:nth-of-type(2) {
        padding: 40px 0 20px !important;
    }
}

/* === Restructure cs-cusp-wrap to a true 2-column hero layout === */
.cs-cusp-wrap {
    display: grid !important;
    grid-template-columns: minmax(280px, 1fr) minmax(380px, 1.05fr) !important;
    gap: clamp(28px, 4vw, 64px) !important;
    align-items: center !important;
    width: 100% !important;
    text-align: left !important;
}
@media (max-width: 880px) {
    .cs-cusp-wrap {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
        text-align: center !important;
    }
}

/* === LEFT: rotating product-card stack (cross-fade + clickable) === */
.cs-cusp-stack {
    position: relative;
    width: 100%;
    aspect-ratio: 1.5 / 1;
    max-width: 560px;
    justify-self: center;
    padding: 10px 6px;
}
.cs-cusp-stack::before {
    content: "";
    position: absolute;
    inset: 8% 8% 8% 8%;
    background: radial-gradient(closest-side, rgba(33,150,243,.34), rgba(33,150,243,0) 70%);
    filter: blur(34px);
    z-index: 0;
    pointer-events: none;
}
.cs-cusp-stack__card {
    position: absolute;
    width: 54%;
    aspect-ratio: 1.515 / 1;
    text-decoration: none;
    will-change: transform;
    transition: transform .4s cubic-bezier(.22,.9,.32,1.2);
    -webkit-tap-highlight-color: transparent;
}
.cs-cusp-stack__float {
    position: absolute;
    inset: 0;
    will-change: transform;
}
.cs-cusp-stack__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity .8s ease, transform .35s cubic-bezier(.22,.9,.32,1.2);
    filter: drop-shadow(0 16px 26px rgba(0, 0, 0, .5));
}
.cs-cusp-stack__img.is-on { opacity: 1; }
/* server-rendered initial layers: visible at first paint, no fade-in. JS drops
   .is-init right before it fades a layer out, so the rotation still cross-fades. */
.cs-cusp-stack__img.is-init { transition: none; }
.cs-cusp-stack__card--back  { top: 1%;  left: 0%;  transform: rotate(-13deg) scale(.9);  z-index: 1; }
.cs-cusp-stack__card--mid   { top: 34%; left: 22%; transform: rotate(5deg)  scale(.97);  z-index: 2; }
.cs-cusp-stack__card--front { top: 5%;  left: 45%; transform: rotate(-5deg) scale(1.02); z-index: 3; }
.cs-cusp-stack__card--front .cs-cusp-stack__img {
    filter: drop-shadow(0 18px 30px rgba(0, 0, 0, .55)) drop-shadow(0 0 22px rgba(33, 150, 243, .26));
}
.cs-cusp-stack__card:hover,
.cs-cusp-stack__card:focus-visible { z-index: 5; }
.cs-cusp-stack__card:hover .cs-cusp-stack__img,
.cs-cusp-stack__card:focus-visible .cs-cusp-stack__img { transform: scale(1.06); }
.cs-cusp-stack__card:focus-visible { outline: 2px solid #2196f3; outline-offset: 4px; border-radius: 12px; }

/* gentle bob on the float wrapper, decoupled from the card's static rotate */
.cs-cusp-stack__card--back  .cs-cusp-stack__float { animation: cs-cusp-bob 8s ease-in-out infinite; }
.cs-cusp-stack__card--mid   .cs-cusp-stack__float { animation: cs-cusp-bob 7s ease-in-out infinite .4s; }
.cs-cusp-stack__card--front .cs-cusp-stack__float { animation: cs-cusp-bob 9s ease-in-out infinite .2s; }
@keyframes cs-cusp-bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }

@media (max-width: 880px) {
    .cs-cusp-stack {
        max-width: 380px;
        aspect-ratio: 1.45 / 1;
        margin: 0 auto;
    }
    .cs-cusp-stack__card--back  { transform: rotate(-11deg) scale(.88); }
    .cs-cusp-stack__card--mid   { transform: rotate(4deg)  scale(.95); }
    .cs-cusp-stack__card--front { transform: rotate(-4deg) scale(1.0); }
}

@media (prefers-reduced-motion: reduce) {
    .cs-cusp-stack__float { animation: none !important; }
    .cs-cusp-stack__img { transition: none !important; }
    .cs-cusp-stack__card { transition: none !important; }
}

/* === RIGHT: text + CTA + micro-copy + chip-chooser stacked === */
@media (min-width: 881px) {
    .cs-cusp-wrap > .cs-cusp-v2 {
        align-items: flex-start !important;
        text-align: left !important;
    }
}

.cs-cusp-v2-microcopy {
    font-family: 'Inter', system-ui, sans-serif !important;
    font-size: 12.5px !important;
    line-height: 1.45 !important;
    letter-spacing: .01em !important;
    color: rgba(255, 255, 255, .65) !important;
    margin: 12px 0 0 !important;
    font-weight: 400 !important;
    max-width: 36ch;
}

/* Chip selector - kept but de-emphasized below the CTA */
.cs-cusp-v2 .cs-cusp-chips {
    justify-self: stretch !important;
    margin: 18px 0 0 !important;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    width: 100%;
}
@media (min-width: 881px) {
    .cs-cusp-v2 .cs-cusp-chips { max-width: 320px; }
}
.cs-cusp-v2 .cs-cusp-seg-heading {
    font-size: 10.5px !important;
    color: rgba(245, 239, 231, .48) !important;
    margin: 0 0 8px !important;
    text-align: left !important;
}
@media (max-width: 880px) {
    .cs-cusp-v2 .cs-cusp-seg-heading { text-align: center !important; }
    .cs-cusp-v2 .cs-cusp-chips      { margin-left: auto; margin-right: auto; }
}


/* cs-combipacks-css */

.cs-cp{--cs-cp-1:rgba(15,23,38,.42);--cs-cp-2:rgba(8,12,20,.30);--cs-cp-acc:#2196f3;--cs-cp-ink:#f5f7fa;--cs-cp-mute:rgba(245,247,250,.72);color:var(--cs-cp-ink);padding:64px 16px;position:relative;background-color:transparent}
@media (max-width:768px){.cs-cp{padding:40px 14px}}
.cs-cp__card{position:relative;max-width:1200px;margin:0 auto;display:grid;grid-template-columns:1.05fr 1fr;gap:0;border-radius:24px;overflow:hidden;background:linear-gradient(135deg,var(--cs-cp-1),var(--cs-cp-2));-webkit-backdrop-filter:blur(16px) saturate(140%);backdrop-filter:blur(16px) saturate(140%);border:1px solid rgba(255,255,255,.06);box-shadow:0 1px 0 rgba(255,255,255,.04) inset,0 24px 60px -28px rgba(0,0,0,.75);isolation:isolate;text-decoration:none;color:inherit;transition:box-shadow .35s ease,border-color .35s ease}
.cs-cp__card::before{content:"";position:absolute;inset:0;background:radial-gradient(140% 100% at 100% 0%,color-mix(in srgb,var(--cs-cp-acc) 22%,transparent),transparent 65%);pointer-events:none;z-index:0;opacity:.9;transition:opacity .35s ease}
.cs-cp__card::after{content:"";position:absolute;inset:0;border-radius:inherit;padding:1px;background:linear-gradient(135deg,color-mix(in srgb,var(--cs-cp-acc) 55%,transparent),transparent 55%);-webkit-mask:linear-gradient(#000 0 0) content-box,linear-gradient(#000 0 0);-webkit-mask-composite:xor;mask-composite:exclude;pointer-events:none;opacity:.55;z-index:1;transition:opacity .35s ease}
.cs-cp__card:hover{box-shadow:0 1px 0 rgba(255,255,255,.06) inset,0 30px 60px -28px color-mix(in srgb,var(--cs-cp-acc) 35%,#000);border-color:color-mix(in srgb,var(--cs-cp-acc) 35%,rgba(255,255,255,.08))}
.cs-cp__card:hover::before{opacity:1}
.cs-cp__card:hover::after{opacity:.95}
.cs-cp__art{position:relative;min-height:340px;padding:32px;z-index:0;overflow:hidden;display:flex;align-items:center;justify-content:center}
.cs-cp__glow{position:absolute;inset:-20%;background:radial-gradient(closest-side,color-mix(in srgb,var(--cs-cp-acc) 38%,transparent),transparent 70%);filter:blur(14px);opacity:.55;z-index:0;pointer-events:none}
.cs-cp__fan{position:relative;width:min(440px,90%);aspect-ratio:1/.72;z-index:1}
.cs-cp__chip{position:absolute;width:58%;aspect-ratio:1.586/1;border-radius:14px;overflow:hidden;background:#1F2937;box-shadow:0 16px 32px rgba(0,0,0,.55),0 0 0 1px rgba(33,150,243,.18) inset;transition:transform .55s cubic-bezier(.22,.9,.32,1.2)}
.cs-cp__chip img{position:absolute;inset:-9%;width:118%;height:118%;object-fit:cover;max-width:none;display:block}
.cs-cp__chip--1{left:0;top:8%;transform:rotate(-10deg);z-index:1}
.cs-cp__chip--2{left:14%;top:24%;transform:rotate(-3deg);z-index:2}
.cs-cp__chip--3{right:14%;top:12%;transform:rotate(5deg);z-index:3}
.cs-cp__chip--4{right:0;top:30%;transform:rotate(12deg);z-index:4}
.cs-cp__card:hover .cs-cp__chip--1{transform:rotate(-13deg) translate(-6px,-4px)}
.cs-cp__card:hover .cs-cp__chip--2{transform:rotate(-5deg) translate(-2px,-2px)}
.cs-cp__card:hover .cs-cp__chip--3{transform:rotate(7deg) translate(2px,-2px)}
.cs-cp__card:hover .cs-cp__chip--4{transform:rotate(15deg) translate(6px,-4px)}
.cs-cp__body{padding:48px 48px 48px 24px;display:flex;flex-direction:column;justify-content:center;position:relative;z-index:2;min-width:0}
.cs-cp__eyebrow{display:inline-block;font-size:11px;letter-spacing:.16em;text-transform:uppercase;color:var(--cs-cp-acc);font-weight:600;margin-bottom:10px}
.cs-cp__title{font-family:"Fraunces","Inter",serif;font-weight:600;font-size:clamp(28px,3vw,38px);line-height:1.1;margin:0 0 14px;letter-spacing:-.015em;text-wrap:balance;color:var(--cs-cp-ink)}
.cs-cp__copy{font-size:15.5px;line-height:1.55;color:var(--cs-cp-mute);margin:0 0 22px;max-width:46ch;text-wrap:pretty}
.cs-cp__features{list-style:none;padding:0;margin:0 0 26px;display:flex;flex-direction:column;gap:8px}
.cs-cp__features li{font-size:14px;color:rgba(245,247,250,.85);display:flex;align-items:center;gap:10px}
.cs-cp__features li::before{content:"";display:inline-block;width:6px;height:6px;border-radius:50%;background:var(--cs-cp-acc);box-shadow:0 0 10px color-mix(in srgb,var(--cs-cp-acc) 60%,transparent);flex-shrink:0}
.cs-cp__ctas{display:flex;flex-wrap:wrap;align-items:center;gap:10px}
.cs-cp__cta{display:inline-flex;align-items:center;gap:14px;padding:13px 22px;border-radius:999px;width:fit-content;text-decoration:none;color:#fff;font-weight:600;font-size:14.5px;transition:background .25s ease,border-color .25s ease,transform .25s ease,box-shadow .25s ease;backdrop-filter:blur(6px)}
.cs-cp__cta--primary{background:color-mix(in srgb,var(--cs-cp-acc) 14%,rgba(255,255,255,.04));border:1px solid color-mix(in srgb,var(--cs-cp-acc) 40%,rgba(255,255,255,.1))}
.cs-cp__cta--primary:hover{background:color-mix(in srgb,var(--cs-cp-acc) 28%,rgba(255,255,255,.04));border-color:color-mix(in srgb,var(--cs-cp-acc) 65%,rgba(255,255,255,.1));transform:translateY(-2px);box-shadow:0 12px 28px color-mix(in srgb,var(--cs-cp-acc) 25%,rgba(0,0,0,.4))}
.cs-cp__cta--ghost{background:transparent;border:1px solid color-mix(in srgb,var(--cs-cp-acc) 38%,rgba(255,255,255,.18));color:color-mix(in srgb,var(--cs-cp-acc) 75%,#fff)}
.cs-cp__cta--ghost:hover{background:color-mix(in srgb,var(--cs-cp-acc) 10%,transparent);border-color:color-mix(in srgb,var(--cs-cp-acc) 70%,rgba(255,255,255,.2));transform:translateY(-2px);color:#fff}
.cs-cp__cta-arrow{display:inline-block;transition:transform .3s cubic-bezier(.22,.9,.32,1.2)}
.cs-cp__cta:hover .cs-cp__cta-arrow{transform:translateX(4px)}
.cs-cp__price{font-size:13px;font-weight:600;color:var(--cs-cp-acc);padding-left:12px;border-left:1px solid rgba(255,255,255,.16)}
@media (max-width:880px){
  .cs-cp__card{grid-template-columns:1fr;grid-template-rows:auto auto}
  .cs-cp__art{min-height:280px;padding:24px}
  .cs-cp__body{padding:28px 28px 32px}
  .cs-cp__fan{width:min(360px,90%)}
}

.cs-cp__dot{display:inline-block;color:#2196f3;font-weight:600;margin-left:.02em;transform:scale(1.35) translateY(.03em);transform-origin:bottom left;text-shadow:0 0 18px rgba(33,150,243,.55),0 0 1px rgba(33,150,243,.4);animation:cs-cp-dot-breathe 3.2s ease-in-out infinite}
@keyframes cs-cp-dot-breathe{0%,100%{opacity:.92;transform:scale(1.35) translateY(.03em)}50%{opacity:1;transform:scale(1.55) translateY(.03em)}}
@media (prefers-reduced-motion:reduce){.cs-cp__dot{animation:none!important;transform:scale(1.35) translateY(.03em)!important}}


/* cs-search-polish-css */

/* Flatsome appends suggestions to .live-search-results inside .searchform.
   The container Flatsome renders is .autocomplete-suggestions. */
.live-search-results .autocomplete-suggestions,
.searchform .autocomplete-suggestions {
    background: #0F172A !important;
    color: #E5E7EB !important;
    border: 1px solid rgba(255,255,255,.08) !important;
    border-radius: 14px !important;
    box-shadow: 0 24px 48px rgba(0,0,0,.45), 0 4px 12px rgba(0,0,0,.25) !important;
    padding: 6px !important;
    margin-top: 8px !important;
    min-width: 380px !important;
    max-width: 520px !important;
    max-height: 70vh !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,.18) transparent;
    opacity: 0;
    transform: translateY(-4px);
    transition: opacity .18s ease, transform .18s ease;
    will-change: opacity, transform;
}
.live-search-results .autocomplete-suggestions[style*="display: block"],
.searchform .autocomplete-suggestions[style*="display: block"],
.live-search-results .autocomplete-suggestions:not([style*="display: none"]),
.searchform .autocomplete-suggestions:not([style*="display: none"]) {
    opacity: 1;
    transform: translateY(0);
}
.autocomplete-suggestions::-webkit-scrollbar { width: 8px; }
.autocomplete-suggestions::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,.18); border-radius: 8px;
}

/* Each row */
.live-search-results .autocomplete-suggestion,
.searchform .autocomplete-suggestion {
    display: grid !important;
    grid-template-columns: 50px 1fr auto !important;
    grid-gap: 12px !important;
    align-items: center !important;
    padding: 10px 12px !important;
    border-radius: 10px !important;
    border: none !important;
    background: transparent !important;
    color: #E5E7EB !important;
    cursor: pointer;
    transition: background .12s ease;
    line-height: 1.3 !important;
    font-size: 14px !important;
}
.live-search-results .autocomplete-suggestion + .autocomplete-suggestion {
    margin-top: 2px;
}
.live-search-results .autocomplete-suggestion:hover,
.live-search-results .autocomplete-suggestion.autocomplete-selected,
.searchform .autocomplete-suggestion:hover,
.searchform .autocomplete-suggestion.autocomplete-selected {
    background: rgba(37, 99, 235, .14) !important;
    color: #fff !important;
}
.live-search-results .autocomplete-suggestion strong {
    color: #93C5FD !important;
    font-weight: 600;
}

/* Row image */
.live-search-results .autocomplete-suggestion .search-image,
.searchform .autocomplete-suggestion .search-image {
    width: 50px !important;
    height: 50px !important;
    object-fit: contain !important;
    background: #1E293B !important;
    border-radius: 8px !important;
    padding: 4px !important;
    grid-column: 1 !important;
    margin: 0 !important;
}
/* Row title */
.live-search-results .autocomplete-suggestion .search-name,
.searchform .autocomplete-suggestion .search-name {
    grid-column: 2 !important;
    font-weight: 500 !important;
    color: #F3F4F6 !important;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
/* Row price right-aligned */
.live-search-results .autocomplete-suggestion .search-price,
.searchform .autocomplete-suggestion .search-price {
    grid-column: 3 !important;
    font-size: 13px !important;
    color: #CBD5E1 !important;
    text-align: right !important;
    white-space: nowrap;
}
.live-search-results .autocomplete-suggestion .search-price del,
.searchform .autocomplete-suggestion .search-price del {
    color: #64748B !important;
    margin-right: 4px;
    font-size: 12px;
}
.live-search-results .autocomplete-suggestion .search-price ins,
.searchform .autocomplete-suggestion .search-price ins {
    text-decoration: none;
    color: #93C5FD !important;
}
.live-search-results .autocomplete-suggestion .search-price .woocommerce-price-suffix,
.searchform .autocomplete-suggestion .search-price .woocommerce-price-suffix {
    display: none !important;
}
.live-search-results .autocomplete-suggestion .search-price .screen-reader-text {
    display: none !important;
}

/* No-results notice */
.autocomplete-no-suggestion {
    padding: 18px 14px !important;
    color: #94A3B8 !important;
    font-size: 14px !important;
    text-align: center !important;
}

/* Custom footer link injected by JS */
.cs-search-footer {
    display: block;
    margin-top: 4px;
    padding: 11px 14px;
    border-top: 1px solid rgba(255,255,255,.08);
    color: #93C5FD !important;
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    text-decoration: none !important;
    border-radius: 0 0 10px 10px;
    transition: background .12s ease;
}
.cs-search-footer:hover {
    background: rgba(37, 99, 235, .12);
    color: #fff !important;
}
.cs-search-footer .cs-search-arrow {
    display: inline-block;
    transition: transform .18s ease;
    margin-left: 4px;
}
.cs-search-footer:hover .cs-search-arrow { transform: translateX(3px); }

/* Loading spinner overlay (header search submit button gets .loading) */
.searchform .submit-button.loading::after {
    content: '';
    position: absolute;
    right: 10px; top: 50%;
    width: 14px; height: 14px;
    margin-top: -7px;
    border: 2px solid rgba(147, 197, 253, .3);
    border-top-color: #93C5FD;
    border-radius: 50%;
    animation: cs-search-spin .7s linear infinite;
}
.searchform .submit-button { position: relative; }
@keyframes cs-search-spin { to { transform: rotate(360deg); } }

/* Skeleton state shown while loading the very first query (added via JS) */
.cs-search-skeleton {
    display: grid;
    grid-template-columns: 50px 1fr auto;
    gap: 12px;
    padding: 10px 12px;
    align-items: center;
}
.cs-search-skeleton + .cs-search-skeleton { margin-top: 2px; }
.cs-search-skeleton__img {
    width: 50px; height: 50px; border-radius: 8px;
    background: linear-gradient(90deg, #1E293B 0%, #273449 50%, #1E293B 100%);
    background-size: 200% 100%;
    animation: cs-search-shimmer 1.2s linear infinite;
}
.cs-search-skeleton__bar {
    height: 12px; border-radius: 6px;
    background: linear-gradient(90deg, #1E293B 0%, #273449 50%, #1E293B 100%);
    background-size: 200% 100%;
    animation: cs-search-shimmer 1.2s linear infinite;
}
.cs-search-skeleton__bar--price { width: 50px; height: 10px; }
@keyframes cs-search-shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Mobile: take available width inside the search lightbox */
@media (max-width: 720px) {
    .live-search-results .autocomplete-suggestions,
    .searchform .autocomplete-suggestions {
        min-width: 0 !important;
        max-width: calc(100vw - 24px) !important;
        width: calc(100vw - 24px) !important;
        max-height: 60vh !important;
        border-radius: 12px !important;
    }
    .live-search-results .autocomplete-suggestion,
    .searchform .autocomplete-suggestion {
        padding: 12px !important;
        grid-template-columns: 44px 1fr auto !important;
        grid-gap: 10px !important;
        font-size: 13px !important;
    }
    .live-search-results .autocomplete-suggestion .search-image,
    .searchform .autocomplete-suggestion .search-image {
        width: 44px !important;
        height: 44px !important;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .live-search-results .autocomplete-suggestions,
    .searchform .autocomplete-suggestions { transition: none !important; transform: none !important; }
    .cs-search-skeleton__img,
    .cs-search-skeleton__bar { animation: none !important; }
    .searchform .submit-button.loading::after { animation: none !important; }
    .cs-search-footer .cs-search-arrow { transition: none !important; }
}


/* cs-minicart-fix */

/* ============================================================
   MINI-CART (off-canvas drawer) - site-wide layout safety net
   These rules normally come from flatsome-shop.css which only
   loads on WC pages. We inline the essentials here so the
   header drawer always renders correctly.
   ============================================================ */

/* Drawer container - already styled by Flatsome's off-canvas system, just brand polish */
#cart-popup .cart-popup-inner {
    background: #0b0e13 !important;
    color: #f5efe7 !important;
}
#cart-popup .cart-popup-title .heading-font {
    color: #f5efe7 !important;
    font-family: "Fraunces", "Inter", serif !important;
    font-weight: 500 !important;
    letter-spacing: -.01em !important;
    text-transform: none !important;
    font-size: 22px !important;
}
#cart-popup .is-divider {
    background-color: rgba(255, 255, 255, .12) !important;
}

/* === The product list - critical layout (was missing) === */
.widget_shopping_cart .cart_list,
.widget_shopping_cart .product_list_widget {
    list-style: none;
    padding: 0;
    margin: 0;
}
.widget_shopping_cart .product_list_widget li,
.widget_shopping_cart .cart_list li {
    line-height: 1.33;
    list-style: none;
    margin: 0;
    min-height: 80px;
    overflow: hidden;
    padding: 14px 30px 14px 75px;
    position: relative;
    vertical-align: top;
    border-top: 1px solid rgba(255, 255, 255, .08);
}
.widget_shopping_cart .product_list_widget li:first-child,
.widget_shopping_cart .cart_list li:first-child {
    border-top: 0;
}
.widget_shopping_cart .product_list_widget li img,
.widget_shopping_cart .cart_list li img {
    width: 60px !important;
    height: 60px !important;
    object-fit: cover;
    object-position: 50% 50%;
    position: absolute;
    left: 0;
    top: 14px;
    margin: 0;
    border-radius: 8px;
    background: rgba(255, 255, 255, .04);
}
.widget_shopping_cart .product_list_widget li a:not(.remove),
.widget_shopping_cart .cart_list li a:not(.remove) {
    display: block;
    line-height: 1.3;
    margin-bottom: 5px;
    overflow: hidden;
    padding: 0;
    text-overflow: ellipsis;
    color: #f5efe7 !important;
    font-weight: 500;
    text-decoration: none;
}
.widget_shopping_cart .product_list_widget li a:hover,
.widget_shopping_cart .cart_list li a:hover {
    color: #2196f3 !important;
}
.widget_shopping_cart .product_list_widget li a.remove,
.widget_shopping_cart .cart_list li a.remove {
    position: absolute !important;
    right: 0 !important;
    top: 14px !important;
    display: inline-flex;
    width: 22px;
    height: 22px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    color: rgba(245, 239, 231, .65) !important;
    font-size: 14px;
    line-height: 1;
    text-decoration: none;
    transition: background .2s ease, color .2s ease;
}
.widget_shopping_cart .product_list_widget li a.remove:hover,
.widget_shopping_cart .cart_list li a.remove:hover {
    background: rgba(239, 68, 68, .25);
    color: #fff !important;
}
.widget_shopping_cart .product_list_widget li .quantity,
.widget_shopping_cart .cart_list li .quantity {
    display: block;
    font-size: .88em;
    margin-top: 4px;
    color: rgba(245, 239, 231, .65);
}
.widget_shopping_cart .product_list_widget li dl,
.widget_shopping_cart .cart_list li dl {
    font-size: .82em;
    margin: 4px 0 0;
    color: rgba(245, 239, 231, .6);
}

/* Bundle 2-up thumbnail (cs_bp_cart_item_thumbnail filter) - keep its own grid layout */
.widget_shopping_cart .cs-bp-cart-thumb {
    position: absolute !important;
    left: 0 !important;
    top: 14px !important;
    margin: 0 !important;
}
.widget_shopping_cart .cs-bp-cart-thumb img {
    position: static !important;
    width: 100% !important;
    height: 100% !important;
    border-radius: 0 !important;
    background: transparent !important;
    top: auto !important;
    left: auto !important;
}

/* Subtotal row */
.widget_shopping_cart .total {
    padding: 18px 0 14px;
    margin: 0;
    border-top: 1px solid rgba(255, 255, 255, .08);
    color: rgba(245, 239, 231, .82);
    font-size: 14px;
}
.widget_shopping_cart .total strong {
    color: #f5efe7;
}
.widget_shopping_cart .total .woocommerce-Price-amount {
    color: #2196f3;
    font-family: "Fraunces", "Inter", serif;
    font-weight: 600;
    font-size: 1.15em;
}

/* Buttons - view cart + checkout */
.widget_shopping_cart .buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0;
    padding: 4px 0 0;
}
.widget_shopping_cart .buttons .button {
    display: inline-flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    padding: 13px 22px;
    border-radius: 999px;
    font-family: "Montserrat", "Inter", system-ui, sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: .02em;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .06);
    color: #f5efe7;
    transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.widget_shopping_cart .buttons .button:hover {
    background: rgba(33, 150, 243, .15);
    border-color: rgba(33, 150, 243, .45);
    color: #f5efe7;
}
.widget_shopping_cart .buttons .button.checkout,
.widget_shopping_cart .buttons .checkout.wc-forward {
    background: #2196f3;
    color: #fff;
    border-color: #2196f3;
    font-weight: 700;
    box-shadow: 0 12px 28px -10px rgba(33, 150, 243, .55);
}
.widget_shopping_cart .buttons .button.checkout:hover,
.widget_shopping_cart .buttons .checkout.wc-forward:hover {
    background: #1976d2;
    border-color: #1976d2;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 18px 36px -12px rgba(33, 150, 243, .7);
}

/* Empty state */
.widget_shopping_cart .ux-mini-cart-empty {
    padding: 30px 0;
    text-align: center;
    color: rgba(245, 239, 231, .7);
}
.widget_shopping_cart .ux-mini-cart-empty-icon svg {
    color: rgba(255, 255, 255, .15);
}
.widget_shopping_cart .return-to-shop .button {
    margin-top: 12px;
    background: #2196f3;
    color: #fff;
    border-radius: 999px;
    border: none;
    padding: 11px 22px;
    font-weight: 600;
    box-shadow: 0 10px 24px -8px rgba(33, 150, 243, .5);
}
.widget_shopping_cart .return-to-shop .button:hover {
    background: #1976d2;
    color: #fff;
    transform: translateY(-1px);
}

@media (prefers-reduced-motion: reduce) {
    .widget_shopping_cart .buttons .button,
    .widget_shopping_cart .buttons .button:hover {
        transition: none !important;
        transform: none !important;
    }
}

/* Force-correct the subtotal row + buttons wrapper (high specificity) */
#cart-popup .widget_shopping_cart_content,
#cart-popup .woocommerce-mini-cart__total,
#cart-popup p.woocommerce-mini-cart__total.total,
#cart-popup .woocommerce-mini-cart__buttons,
#cart-popup p.woocommerce-mini-cart__buttons.buttons {
    background: transparent !important;
    color: #f5efe7 !important;
    border-radius: 0 !important;
}
#cart-popup p.woocommerce-mini-cart__total.total {
    padding: 18px 0 14px !important;
    margin: 0 !important;
    border-top: 1px solid rgba(255,255,255,.08) !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: baseline !important;
    color: rgba(245,239,231,.82) !important;
    font-size: 14px !important;
}
#cart-popup p.woocommerce-mini-cart__total.total strong {
    color: #f5efe7 !important;
    font-weight: 600 !important;
}
#cart-popup p.woocommerce-mini-cart__total.total .woocommerce-Price-amount,
#cart-popup p.woocommerce-mini-cart__total.total bdi {
    color: #2196f3 !important;
    font-family: "Fraunces", "Inter", serif !important;
    font-weight: 600 !important;
    font-size: 1.15em !important;
}

/* Flatsome sticky footer wrapper has hardcoded white bg - override */
#cart-popup .cart-popup-inner--sticky .ux-mini-cart-footer,
#cart-popup .ux-mini-cart-footer {
    background-color: #0b0e13 !important;
    border-top: 1px solid rgba(255,255,255,.08) !important;
    color: #f5efe7 !important;
    padding: 8px 18px 18px !important;
}


/* cs-typo-polish */

/* === Global widow killer (every page) ============================== */
/* text-wrap: pretty rebalances ONLY the last few lines so no orphan word
   ever sits alone on its own line. It does not change the overall rhythm
   of long bodies of text - safe to apply everywhere. */
p, li, dd,
.entry-content,
.product-short-description,
.woocommerce-product-details__short-description,
.cs-consent-text,
.widget,
.footer-widget,
figcaption,
summary,
blockquote {
    text-wrap: pretty;
    -webkit-text-wrap: pretty;
}
/* Headings benefit from balance (evenly distributed lines). */
h1, h2, h3, h4, h5, h6 {
    text-wrap: balance;
    -webkit-text-wrap: balance;
}

/* === Product-page editorial copy: centered + balanced ============== */
.cs-product-desc .cs-lead,
.cs-product-desc .cs-quote,
.cs-product-desc .cs-quote p,
.cs-product-desc .cs-pull-quote,
.cs-product-desc .cs-cross-sell,
.cs-product-desc .cs-cross-sell p,
.cs-product-desc .cs-steps-after {
    text-align: center !important;
    text-wrap: balance !important;
    -webkit-text-wrap: balance !important;
    max-width: 56ch !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Trust pills: never break in half on desktop. */
.cs-product-desc .cs-trust-item { white-space: nowrap !important; }
@media (max-width: 600px) {
    .cs-product-desc .cs-trust-item {
        white-space: normal !important;
        text-wrap: balance !important;
    }
}

.cs-product-desc .cs-lead,
.cs-product-desc .cs-quote p {
    letter-spacing: -0.005em;
}

/* Sticky add-to-cart footer bar is redundant with the prominent main CTA
   and "Selecteer opties" reads as nonsense for a fixed-design sticker. */
.sticky-add-to-cart,
.sticky-add-to-cart--active,
.sticky-add-to-cart__product,
body.cs-has-sticky-cta .sticky-add-to-cart {
    display: none !important;
}


/* cs-fsbar-css */

.cs-fsbar {
    background: rgba(24, 29, 39, .7);
    border: 1px solid rgba(33, 150, 243, .22);
    border-radius: 14px;
    padding: 16px 20px;
    margin: 0 0 22px;
    color: #f5efe7;
    font-family: "Montserrat", "Inter", system-ui, sans-serif;
    box-shadow: 0 12px 30px -20px rgba(0, 0, 0, .55);
}
.cs-fsbar__msg {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .01em;
    margin: 0 0 12px;
}
.cs-fsbar__icon { font-size: 18px; line-height: 1; }
.cs-fsbar__track {
    height: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    overflow: hidden;
}
.cs-fsbar__fill {
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, #2196f3, #42a5f5);
    transition: width .45s ease;
    min-width: 6px;
}
.cs-fsbar--done { border-color: rgba(34, 197, 94, .4); }
.cs-fsbar--done .cs-fsbar__fill { background: linear-gradient(90deg, #22c55e, #4ade80); }

/* Compact variant for the off-canvas mini-cart drawer */
.cs-fsbar--mini {
    padding: 12px 14px;
    margin: 4px 0 14px;
    border-radius: 11px;
}
.cs-fsbar--mini .cs-fsbar__msg { font-size: 12.5px; margin-bottom: 9px; gap: 7px; }
.cs-fsbar--mini .cs-fsbar__icon { font-size: 15px; }
.cs-fsbar--mini .cs-fsbar__track { height: 6px; }

/* Hide the now-empty shipping estimate paragraph (see filter above) */
.woocommerce-cart .woocommerce-shipping-destination { display: none !important; }


/* cs-trust-sticky-css */

/* === Trust strip ============================================ */
.cs-trust-bar {
    display: block;
    width: 100%;
    margin: 28px auto;
    padding: 14px 16px;
    background: #FAFBFD;
    border-top: 1px solid #E5EAF2;
    border-bottom: 1px solid #E5EAF2;
    box-sizing: border-box;
}
.cs-trust-inner {
    max-width: 1080px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: nowrap;
}
.cs-trust-cell {
    flex: 1 1 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 18px;
    color: #1F2937;
    font-size: 14.5px;
    line-height: 1.3;
    font-weight: 500;
    text-align: left;
    min-height: 56px;
    box-sizing: border-box;
}
.cs-trust-cell + .cs-trust-cell {
    border-left: 1px solid #E5EAF2;
}
.cs-trust-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    color: #2196F3;
}
.cs-trust-text {
    text-wrap: pretty;
}

/* Single-product page: a touch more breathing room, no full-bleed bg */
.woocommerce div.product .cs-trust-bar,
.single-product .cs-trust-bar {
    margin: 36px auto 24px;
    border-radius: 12px;
    background: #FAFBFD;
    max-width: 100%;
}

@media (max-width: 768px) {
    .cs-trust-bar { margin: 20px auto; padding: 10px 12px; }
    .cs-trust-inner { flex-direction: column; gap: 0; }
    .cs-trust-cell {
        flex: 1 1 auto;
        width: 100%;
        justify-content: flex-start;
        padding: 12px 8px;
        font-size: 14px;
        min-height: 0;
    }
    .cs-trust-cell + .cs-trust-cell {
        border-left: 0;
        border-top: 1px solid #E5EAF2;
    }
}

/* === Sticky add-to-cart bar (mobile only) =================== */
.cs-sticky-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9990;
    display: none; /* shown on mobile via media query */
    align-items: center;
    gap: 10px;
    padding: 8px 12px calc(8px + env(safe-area-inset-bottom, 0px));
    background: #ffffff;
    border-top: 1px solid #E5EAF2;
    box-shadow: 0 -6px 18px rgba(15, 23, 42, 0.08);
    transform: translateY(110%);
    transition: transform .28s cubic-bezier(.22,.61,.36,1);
    will-change: transform;
    box-sizing: border-box;
}
.cs-sticky-bar.cs-sticky-visible { transform: translateY(0); }
.cs-sticky-bar__img {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    border-radius: 8px;
    object-fit: cover;
    background: #F1F5F9;
    border: 1px solid #E5EAF2;
}
.cs-sticky-bar__meta {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
}
.cs-sticky-bar__title {
    font-size: 14px;
    font-weight: 600;
    color: #0F172A;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.cs-sticky-bar__price {
    font-size: 13px;
    font-weight: 500;
    color: #475569;
    line-height: 1.2;
}
.cs-sticky-bar__price .amount,
.cs-sticky-bar__price .woocommerce-Price-amount {
    color: #0F172A;
    font-weight: 700;
}
.cs-sticky-bar__price del { opacity: .55; margin-right: 4px; font-weight: 400; }
.cs-sticky-bar__btn {
    flex: 0 0 auto;
    appearance: none;
    border: 0;
    cursor: pointer;
    padding: 12px 18px;
    border-radius: 10px;
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
    color: #ffffff;
    font-weight: 700;
    font-size: 14.5px;
    letter-spacing: .01em;
    line-height: 1;
    box-shadow: 0 2px 6px rgba(37, 99, 235, .25);
    transition: transform .15s ease, box-shadow .2s ease;
    min-height: 44px;
}
.cs-sticky-bar__btn:hover { box-shadow: 0 4px 12px rgba(37, 99, 235, .35); }
.cs-sticky-bar__btn:active { transform: scale(.97); }
.cs-sticky-bar__btn:focus-visible { outline: 2px solid #1976D2; outline-offset: 2px; }

@media (max-width: 768px) {
    .cs-sticky-bar { display: flex; }
    body.cs-has-sticky-cta { padding-bottom: 76px; }
    /* Hide the legacy cs-sticky-cta from cs_product_styles.php so we don't double up */
    .cs-sticky-cta { display: none !important; }
}
@media (min-width: 769px) {
    .cs-sticky-bar { display: none !important; }
}

@media (prefers-reduced-motion: reduce) {
    .cs-sticky-bar { transition: none; }
}


/* cs-mi-styles */

/* =========================================================================
   1) PRODUCT CARDS - hover lift + tilt + image parallax
   Targets WooCommerce loop cards on shop + category + tag archives.
   Excludes the cinema-roll marquee cards which already have hover treatment.
   ========================================================================= */
.product-small.col,
.products .product-small {
    transition:
        transform 0.25s cubic-bezier(.2,.7,.2,1),
        box-shadow 0.25s cubic-bezier(.2,.7,.2,1);
    will-change: transform;
}
.product-small.col .box,
.products .product-small .box {
    transition: box-shadow 0.25s cubic-bezier(.2,.7,.2,1);
    border-radius: 6px;
}
.product-small.col .box-image,
.products .product-small .box-image {
    overflow: hidden;
    border-radius: 6px;
}
.product-small.col .box-image img,
.products .product-small .box-image img {
    transition: transform 0.35s cubic-bezier(.2,.7,.2,1);
    will-change: transform;
}

@media (hover: hover) {
    .product-small.col:hover,
    .products .product-small:hover {
        transform: translateY(-5px) rotate(-1deg);
        z-index: 2;
    }
    .product-small.col:hover .box,
    .products .product-small:hover .box {
        box-shadow:
            0 18px 32px -12px rgba(15, 23, 42, .35),
            0 6px 12px -6px rgba(15, 23, 42, .22);
    }
    .product-small.col:hover .box-image img,
    .products .product-small:hover .box-image img {
        transform: scale(1.04);
    }
}

/* Make sure marquee card children are not caught by the lift effect */
.cs-marquee__card,
.cs-banner-marquee-card,
.cs-home-marquee__card,
.cs-marquee__card:hover,
.cs-banner-marquee-card:hover,
.cs-home-marquee__card:hover {
    transform: none;
}

/* =========================================================================
   2) HIDE-THE-PAIN HAROLD - subtle wink animation
   The marquee plugin already transforms the OUTER .img wrapper, so we animate
   the inner <img loading="lazy" decoding="async"> element to avoid clobbering that translateX(250px).
   Harold (right side, 14.png) gets a "blink" (vertical squash).
   The left character (15.png) gets a softer, slower head-tilt.
   ========================================================================= */
body.home .cs-banner-has-marquee .banner-layers > .img.x100 img,
body.home .cs-banner-has-marquee .banner-layers > .img.lg-x95 img,
body.home .cs-banner-has-marquee .banner-layers > .img.md-x95 img {
    transform-origin: 50% 65%;
    animation: cs-mi-harold-wink 9s ease-in-out infinite;
    animation-delay: 2.4s;
    will-change: transform;
}
body.home .cs-banner-has-marquee .banner-layers > .img.x5 img,
body.home .cs-banner-has-marquee .banner-layers > .img.lg-x5 img,
body.home .cs-banner-has-marquee .banner-layers > .img.md-x5 img {
    transform-origin: 50% 70%;
    animation: cs-mi-sidekick-tilt 11s ease-in-out infinite;
    animation-delay: 5.1s;
    will-change: transform;
}

@keyframes cs-mi-harold-wink {
    /* Resting most of the time, brief blink near the end */
    0%, 86%   { transform: scaleY(1)    scaleX(1)    rotate(0deg); }
    88%       { transform: scaleY(.55)  scaleX(1.02) rotate(0deg); }
    90%       { transform: scaleY(1)    scaleX(1)    rotate(0deg); }
    /* Tiny micro-nod a moment later */
    94%       { transform: scaleY(1)    scaleX(1)    rotate(1deg); }
    97%       { transform: scaleY(1)    scaleX(1)    rotate(0deg); }
    100%      { transform: scaleY(1)    scaleX(1)    rotate(0deg); }
}

@keyframes cs-mi-sidekick-tilt {
    /* A shy "look around" - very gentle */
    0%, 78%  { transform: rotate(0deg) translateY(0); }
    84%      { transform: rotate(-2deg) translateY(-2px); }
    90%      { transform: rotate(0deg) translateY(0); }
    100%     { transform: rotate(0deg) translateY(0); }
}

/* =========================================================================
   3) FOOTER - payment + social icon hover polish
   ========================================================================= */

/* Payment icons (in .absolute-footer .payment-icons) */
.absolute-footer .payment-icons .payment-icon {
    transition:
        transform 0.2s ease,
        filter 0.2s ease;
    will-change: transform, filter;
}
@media (hover: hover) {
    .absolute-footer .payment-icons .payment-icon:hover {
        transform: translateY(-2px);
        filter: saturate(1.6) brightness(1.1);
    }
}

/* Social icons (the .social-icons.follow-icons block above the footer) */
.social-icons.follow-icons a.icon,
.absolute-footer .social-icons a.icon {
    transition:
        transform 0.2s ease,
        background-color 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;
    will-change: transform;
}
@media (hover: hover) {
    .social-icons.follow-icons a.icon:hover,
    .absolute-footer .social-icons a.icon:hover {
        animation: cs-mi-social-bounce 0.42s cubic-bezier(.34,1.56,.64,1) 1;
    }
}

@keyframes cs-mi-social-bounce {
    0%   { transform: translateY(0)    rotate(0deg); }
    45%  { transform: translateY(-4px) rotate(5deg); }
    70%  { transform: translateY(-1px) rotate(2deg); }
    100% { transform: translateY(0)    rotate(0deg); }
}

/* =========================================================================
   Reduced motion - kill non-essential animation
   ========================================================================= */
@media (prefers-reduced-motion: reduce) {
    .product-small.col,
    .products .product-small,
    .product-small.col .box-image img,
    .products .product-small .box-image img,
    .absolute-footer .payment-icons .payment-icon,
    .social-icons.follow-icons a.icon,
    .absolute-footer .social-icons a.icon {
        transition: none !important;
    }
    body.home .cs-banner-has-marquee .banner-layers > .img img {
        animation: none !important;
    }
    @media (hover: hover) {
        .product-small.col:hover,
        .products .product-small:hover {
            transform: none;
        }
        .product-small.col:hover .box-image img,
        .products .product-small:hover .box-image img {
            transform: none;
        }
        .absolute-footer .payment-icons .payment-icon:hover {
            transform: none;
        }
        .social-icons.follow-icons a.icon:hover,
        .absolute-footer .social-icons a.icon:hover {
            animation: none;
        }
    }
}


/* cs-skip-link-css */

.skip-link.screen-reader-text:focus,
.skip-link:focus {
    position: fixed;
    top: 16px;
    left: 16px;
    z-index: 99999;
    padding: 12px 20px;
    background: #0c2740;
    color: #f5f7fa;
    border: 2px solid #2196f3;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.2;
    box-shadow: 0 8px 24px rgba(0,0,0,.4);
    width: auto;
    height: auto;
    clip: auto;
    clip-path: none;
    overflow: visible;
    white-space: nowrap;
    outline: none;
}
.skip-link.screen-reader-text:focus-visible,
.skip-link:focus-visible {
    outline: 3px solid #f5f7fa;
    outline-offset: 2px;
}


/* cs-tb-nb-nl */

/* === A. Top bar (cs-tb-) ===================================== */
/* Wrap target: #top-bar.header-top .html_topbar_left strong.uppercase */
.cs-tb-emoji {
    display: inline-block;
    margin-right: 0.3em;
    transform-origin: 50% 60%;
    will-change: transform;
    animation: cs-tb-float 1.6s ease-in-out infinite;
    /* Keep the emoji visible even when parent uses gradient text fill */
    -webkit-text-fill-color: initial !important;
            color: initial !important;
    background: none !important;
}
@keyframes cs-tb-float {
    0%   { transform: translateY(0)    rotate(-3deg); }
    50%  { transform: translateY(-2px) rotate(3deg);  }
    100% { transform: translateY(0)    rotate(-3deg); }
}

/* Optional shimmer sweep across the announcement text (every 6s) */
.cs-tb-shimmer {
    background-image: linear-gradient(
        90deg,
        currentColor 0%,
        currentColor 40%,
        rgba(255,255,255,.95) 50%,
        currentColor 60%,
        currentColor 100%
    );
    background-size: 220% 100%;
    -webkit-background-clip: text;
            background-clip: text;
    -webkit-text-fill-color: transparent;
            color: transparent;
    animation: cs-tb-shimmer 6s linear infinite;
}
@keyframes cs-tb-shimmer {
    0%   { background-position: 120% 0; }
    60%  { background-position: -20% 0; }
    100% { background-position: -20% 0; }
}

/* === B. NEW badges (cs-nb-) ================================== */
/* Targets Flatsome callouts that say NEW / Nieuw inside .badge-container */
.badge-container .cs-nb-pulse,
.callout.label-new.cs-nb-pulse,
.callout.cs-nb-pulse {
    animation: cs-nb-pulse 1.6s ease-in-out infinite;
    transform-origin: 50% 50%;
    will-change: transform, box-shadow;
    border-radius: 999px;
}
@keyframes cs-nb-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.45);
    }
    50% {
        transform: scale(1.08);
        box-shadow: 0 0 0 8px rgba(37, 99, 235, 0);
    }
}

/* === C. Newsletter (cs-nl-) ================================== */
.cs-nl-form {
    transition: transform .25s ease, box-shadow .25s ease;
}
.cs-nl-form:focus-within {
    transform: scale(1.01);
}
.cs-nl-input:focus,
.cs-nl-form input[type="email"]:focus {
    outline: none !important;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.18) !important;
    border-color: #2196F3 !important;
    transition: box-shadow .25s ease, border-color .25s ease;
}
.cs-nl-cta {
    transition: transform .2s ease, box-shadow .2s ease;
}
.cs-nl-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(37, 99, 235, 0.28);
}
.cs-nl-cta.cs-nl-cta-primary {
    animation: cs-nl-once 1.4s ease-out 1;
}
@keyframes cs-nl-once {
    0%   { transform: scale(1);    box-shadow: 0 0 0 0 rgba(37,99,235,.55); }
    50%  { transform: scale(1.04); box-shadow: 0 0 0 10px rgba(37,99,235,0); }
    100% { transform: scale(1);    box-shadow: 0 0 0 0 rgba(37,99,235,0); }
}

@media (prefers-reduced-motion: reduce) {
    .cs-tb-emoji,
    .cs-tb-shimmer,
    .badge-container .cs-nb-pulse,
    .callout.cs-nb-pulse,
    .cs-nl-cta,
    .cs-nl-cta-primary,
    .cs-nl-form { animation: none !important; transition: none !important; }
}


/* cs-typo-widows-css */

h1,h2,h3,h4,
.cs-banner-marquee-headline,
.cs-consent-title,
.product-title,
.section-title,
.woocommerce-loop-product__title{text-wrap:balance}
p,li,.product-short-description,
.cs-consent-text,
.woocommerce-product-details__short-description,
.entry-content,
.woocommerce-error,.woocommerce-info,.woocommerce-message{text-wrap:pretty}


/* cs-trust-dark-override */

/* Subtle dark theme - barely there, just a quiet trust line */
.cs-trust-bar,
.woocommerce div.product .cs-trust-bar,
.single-product .cs-trust-bar {
    background: transparent !important;
    border-top: 1px solid rgba(96, 165, 250, .08) !important;
    border-bottom: 1px solid rgba(96, 165, 250, .08) !important;
    border-radius: 0 !important;
    padding: 18px 16px !important;
}
.cs-trust-cell {
    color: #94A3B8 !important;
    font-weight: 400 !important;
}
.cs-trust-cell + .cs-trust-cell {
    border-left-color: rgba(96, 165, 250, .08) !important;
}
.cs-trust-icon {
    color: #60A5FA !important;
    opacity: .7;
}
@media (max-width: 768px) {
    .cs-trust-cell + .cs-trust-cell {
        border-left: none !important;
        border-top: 1px solid rgba(96, 165, 250, .06) !important;
    }
}

