@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-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-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-vp-fade */

/* Initial state for product cards on shop / category / search archives.
   We only set the initial state on cards that have been tagged by JS so that
   if JS fails the cards remain visible. */
.cs-vp-fade-init {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .5s ease-out, transform .5s ease-out;
    will-change: opacity, transform;
}
.cs-vp-fade-in {
    opacity: 1;
    transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
    .cs-vp-fade-init,
    .cs-vp-fade-in {
        opacity: 1 !important;
        transform: none !important;
        transition: none !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-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-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-shop-controls-css */

/* ---------- Order-by dropdown ---------- */
.woocommerce-ordering select.orderby{
    -webkit-appearance:none;-moz-appearance:none;appearance:none;color-scheme:dark;
    background:#14171d url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none' stroke='%23aeb6c2' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M1 1.6 6 6.4 11 1.6'/%3E%3C/svg%3E") no-repeat right 14px center;
    background-color:#14171d !important;
    color:#e7eaf0;border:1px solid rgba(255,255,255,.14);border-radius:11px;
    padding:11px 40px 11px 15px;font-size:.95rem;line-height:1.2;cursor:pointer;
    box-shadow:none;transition:border-color .15s,background-color .15s;}
.woocommerce-ordering select.orderby:hover{border-color:rgba(255,255,255,.28);background-color:#191d24 !important;}
.woocommerce-ordering select.orderby:focus{outline:none;border-color:#2196f3;box-shadow:0 0 0 3px rgba(33,150,243,.25);}
.woocommerce-ordering select.orderby option{background:#14171d;color:#e7eaf0;}

/* ---------- Filter off-canvas popout ---------- */
.off-canvas.off-canvas-left .mfp-content{background:#0b0d11 !important;
    box-shadow:24px 0 60px rgba(0,0,0,.55);}
.off-canvas #shop-sidebar{background:transparent;}
.off-canvas #shop-sidebar .sidebar-inner{padding:34px 26px 40px;}
.off-canvas .widget{margin-bottom:30px;border:none;padding:0;}
.off-canvas .widget-title.shop-sidebar{display:block;color:#fff;font-size:.8rem;
    letter-spacing:.14em;text-transform:uppercase;font-weight:700;margin:0 0 4px;}
.off-canvas .is-divider{background:rgba(255,255,255,.13) !important;height:2px;
    max-width:44px;margin:.5em 0 1.05em;}
.off-canvas .product-categories,
.off-canvas .product-categories .children{list-style:none;margin:0;padding:0;}
.off-canvas .product-categories a{display:block;color:#c2c9d4;text-decoration:none;
    padding:9px 0;border-bottom:1px solid rgba(255,255,255,.06);font-size:.98rem;
    transition:color .15s;}
.off-canvas .product-categories a:hover{color:#fff;}
.off-canvas .product-categories .children{margin-left:14px;}
.off-canvas .product-categories .children a{color:#97a0ad;font-size:.92rem;
    padding:7px 0;border-bottom:none;}
.off-canvas .product-categories .children a:hover{color:#cfd6e0;}
.off-canvas .product-categories .count{color:#6f7886;font-size:.82rem;}
/* price filter */
.off-canvas .ui-slider{position:relative;height:4px;background:#272c35;border:none;
    border-radius:3px;margin:16px 7px 20px;}
.off-canvas .ui-slider .ui-slider-range{background:#2196f3;height:100%;border-radius:3px;}
.off-canvas .ui-slider .ui-slider-handle{width:16px;height:16px;background:#fff;
    border:3px solid #2196f3;border-radius:50%;top:50%;transform:translateY(-50%);
    margin-left:-8px;box-shadow:0 1px 4px rgba(0,0,0,.4);cursor:grab;}
.off-canvas .price_slider_amount{display:flex;flex-wrap:wrap;align-items:center;gap:10px;}
.off-canvas .price_slider_amount .price_label{order:1;width:100%;color:#c2c9d4;font-size:.92rem;}
.off-canvas .price_slider_amount .button{order:2;background:#2196f3;color:#fff;border:none;
    border-radius:9px;padding:9px 22px;font-weight:600;font-size:.9rem;box-shadow:none;
    transition:background .15s;}
.off-canvas .price_slider_amount .button:hover{background:#1b86e0;}
/* close button */
.off-canvas .mfp-close{color:#aeb6c2 !important;opacity:1;font-size:30px;}
.off-canvas .mfp-close:hover{color:#fff !important;}


/* cs-combo-cat-css */

body.tax-product_cat .woocommerce-products-header,
body.tax-product_cat ul.products,
body.tax-product_cat div.products,
body.tax-product_cat .woocommerce-result-count,
body.tax-product_cat .woocommerce-ordering,
body.tax-product_cat nav.woocommerce-pagination,
body.tax-product_cat .shop-toolbar,
body.tax-product_cat .category-filtering { display: none !important; }

.cs-combo{
  --blue:#2196f3;--ink:#f5efe7;--muted:rgba(245,239,231,.78);--green:#34d399;
  color:var(--ink);
  background:radial-gradient(60% 55% at 50% -5%,rgba(33,150,243,.10),transparent 60%),
             radial-gradient(40% 50% at 85% 95%,rgba(52,211,153,.05),transparent 70%);
  padding:56px 0 84px;margin:0;font-family:"Inter",system-ui,sans-serif;border-radius:16px;
}
.cs-combo__inner{max-width:1200px;margin:0 auto;padding:0 24px}

/* ---- editorial hero heading (left-aligned, magazine feel) ---- */
.cs-combo__head{max-width:760px;margin:0 0 44px}
.cs-combo__eyebrow{display:inline-block;font-family:"Montserrat","Inter",system-ui,sans-serif;font-size:11px;font-weight:700;letter-spacing:.2em;text-transform:uppercase;color:var(--blue);margin-bottom:16px}
.cs-combo__title{font-family:"Fraunces","Inter",serif;font-weight:500;font-size:clamp(44px,6.4vw,82px);line-height:.98;margin:0 0 18px;letter-spacing:-.03em;text-wrap:balance;color:var(--ink)}
.cs-combo__sub{font-size:clamp(16px,1.5vw,19px);line-height:1.55;color:var(--muted);margin:0;max-width:56ch;text-wrap:pretty}
.cs-combo__price-accent{color:var(--blue);font-weight:600}

/* ---- decorative title dot (ambient breathe) ---- */
.cs-combo__dot{display:inline-block;color:var(--blue);font-weight:600;margin-left:.02em;transform:scale(1.3) 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-combo-dot-breathe 3.2s ease-in-out infinite}
@keyframes cs-combo-dot-breathe{0%,100%{opacity:.92;transform:scale(1.3) translateY(.03em)}50%{opacity:1;transform:scale(1.5) translateY(.03em)}}

/* ---- shared savings chip ---- */
.cs-combo__save{display:inline-flex;align-items:center;flex-wrap:wrap;gap:6px 9px;font-family:"Montserrat","Inter",system-ui,sans-serif;font-size:12.5px;line-height:1}
.cs-combo__strike{white-space:nowrap;color:rgba(245,239,231,.45);text-decoration:line-through;text-decoration-thickness:1.5px;font-weight:500}
.cs-combo__save-amt{color:var(--green);background:rgba(52,211,153,.12);border:1px solid rgba(52,211,153,.30);padding:4px 10px;border-radius:999px;text-transform:uppercase;font-size:10.5px;font-weight:700;letter-spacing:.07em;white-space:nowrap}

/* =====================================================================
   HERO FEATURE BAND - full-bleed cinematic, build-your-own is the star
   ===================================================================== */
.cs-combo__feature{
  position:relative;display:block;margin:0 0 64px;min-height:460px;
  border-radius:24px;overflow:hidden;text-decoration:none!important;color:inherit;
  border:1px solid rgba(33,150,243,.28);
  background:linear-gradient(180deg,#1f2632 0%,#181d27 100%);
  box-shadow:0 40px 90px -40px rgba(0,0,0,.7);
  transition:transform .4s cubic-bezier(.2,.7,.2,1),border-color .4s ease,box-shadow .4s ease;
}
.cs-combo__feature:hover{transform:translateY(-4px);border-color:rgba(33,150,243,.55);box-shadow:0 50px 110px -40px rgba(0,0,0,.8),0 0 60px -22px rgba(33,150,243,.45)}
.cs-combo__feature:focus-visible{outline:2px solid var(--blue);outline-offset:4px}

/* the cinematic design wall fills the band, cropped uniformly */
.cs-combo__feature-wall{
  position:absolute;inset:0;z-index:1;display:grid;
  grid-template-columns:repeat(5,1fr);grid-template-rows:repeat(3,1fr);gap:3px;
  background:#0b0e13;filter:saturate(.92);
  transition:transform .8s cubic-bezier(.2,.7,.2,1);
}
.cs-combo__feature:hover .cs-combo__feature-wall{transform:scale(1.03)}
.cs-combo__wall-cell{position:relative;overflow:hidden;background:linear-gradient(135deg,#0b0e13,#11151c)}
.cs-combo__wall-cell img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;object-position:center;display:block}
/* ambient: each design tile slowly drifts + twinkles, staggered, so the wall feels alive */
.cs-combo__wall-cell img{animation:cs-wall-drift 34s ease-in-out infinite;will-change:transform,opacity}
.cs-combo__wall-cell:nth-child(4n) img{animation-duration:28s;animation-delay:-6s}
.cs-combo__wall-cell:nth-child(4n+1) img{animation-duration:34s;animation-delay:-15s}
.cs-combo__wall-cell:nth-child(4n+2) img{animation-duration:40s;animation-delay:-23s}
.cs-combo__wall-cell:nth-child(4n+3) img{animation-duration:31s;animation-delay:-11s}
@keyframes cs-wall-drift{0%{transform:scale(1.02);opacity:.72}50%{transform:scale(1.09) translateY(-1.5%);opacity:.95}100%{transform:scale(1.02);opacity:.72}}

/* strong diagonal veil so editorial copy reads cleanly over a busy mosaic (AA-safe) */
.cs-combo__feature-veil{
  position:absolute;inset:0;z-index:2;
  background:linear-gradient(105deg,rgba(11,14,19,.95) 0%,rgba(11,14,19,.9) 40%,rgba(11,14,19,.45) 72%,rgba(11,14,19,.16) 100%),
             linear-gradient(0deg,rgba(11,14,19,.6),transparent 55%),
             radial-gradient(120% 90% at 0% 50%,rgba(33,150,243,.18),transparent 60%);
}

.cs-combo__feature-body{
  position:relative;z-index:3;display:flex;flex-direction:column;align-items:flex-start;
  max-width:600px;padding:clamp(32px,4.5vw,56px);min-height:460px;box-sizing:border-box;justify-content:center;gap:0;
}
.cs-combo__feature-label{font-family:"Montserrat","Inter",system-ui,sans-serif;font-size:11px;font-weight:700;letter-spacing:.2em;text-transform:uppercase;color:var(--blue);margin-bottom:14px}
.cs-combo__feature-h{font-family:"Fraunces","Inter",serif;font-weight:600;font-size:clamp(34px,4.4vw,52px);line-height:1.02;letter-spacing:-.025em;color:#fff;text-wrap:balance;margin-bottom:14px}

/* monumental live count - the unmistakable star, with brand-blue recolored plus */
.cs-combo__feature-count{display:flex;align-items:baseline;gap:14px;flex-wrap:wrap;margin-bottom:18px}
.cs-combo__feature-num{font-family:"Fraunces","Inter",serif;font-size:clamp(64px,8.2vw,104px);line-height:.88;font-weight:600;letter-spacing:-.035em;
  background:linear-gradient(135deg,#fff 0%,#bfdbfe 55%,#93c5fd 100%);-webkit-background-clip:text;background-clip:text;-webkit-text-fill-color:transparent;
  filter:drop-shadow(0 8px 30px rgba(33,150,243,.45))}
.cs-combo__feature-num{background-size:220% 100%;animation:cs-num-shimmer 7s ease-in-out infinite}
@keyframes cs-num-shimmer{0%,100%{background-position:0% 50%}50%{background-position:100% 50%}}
.cs-combo__feature-plus{-webkit-text-fill-color:var(--blue);color:var(--blue);font-size:.5em;vertical-align:.22em;margin-left:.02em;filter:none}
.cs-combo__feature-num-lbl{font-family:"Montserrat","Inter",system-ui,sans-serif;font-size:11.5px;font-weight:700;letter-spacing:.16em;text-transform:uppercase;color:rgba(245,239,231,.82);max-width:13ch;line-height:1.4}
.cs-combo__feature-lead{font-size:clamp(15px,1.45vw,17px);line-height:1.55;color:rgba(245,239,231,.88);max-width:42ch;text-wrap:pretty;margin-bottom:28px}

.cs-combo__feature-foot{display:flex;align-items:center;gap:22px;flex-wrap:wrap}
.cs-combo__feature-price{display:inline-flex;align-items:center;gap:12px;flex-wrap:wrap}
.cs-combo__feature-pill{display:inline-flex;align-items:center;padding:7px 14px;background:var(--blue);color:#fff;border-radius:999px;font-family:"Montserrat","Inter",system-ui,sans-serif;font-size:11.5px;font-weight:700;letter-spacing:.04em;text-transform:uppercase;box-shadow:0 10px 24px -8px rgba(33,150,243,.6)}
.cs-combo__feature-cta{
  display:inline-flex;align-items:center;padding:13px 24px;border-radius:999px;
  background:var(--blue);color:#fff;
  font-family:"Montserrat","Inter",system-ui,sans-serif;font-size:13px;font-weight:700;letter-spacing:.04em;text-transform:uppercase;
  box-shadow:0 14px 34px -12px rgba(33,150,243,.7);transition:transform .3s ease,box-shadow .3s ease,background .3s ease;
}
.cs-combo__feature:hover .cs-combo__feature-cta{transform:translateY(-2px);background:#3aa5ff;box-shadow:0 20px 44px -12px rgba(33,150,243,.85)}

/* =====================================================================
   SECONDARY - curated packs loose on the table: no frames, no boxes
   ===================================================================== */
.cs-combo__curated-head{text-align:center;margin:0 auto 4px;max-width:62ch}
.cs-combo__curated-or{display:block;font-family:"Fraunces","Inter",serif;font-style:italic;font-weight:400;font-size:22px;color:var(--blue);line-height:1;margin-bottom:4px}
.cs-combo__curated-title{font-family:"Fraunces","Inter",serif;font-weight:500;font-size:clamp(34px,4vw,48px);margin:0;letter-spacing:-.025em;line-height:1;color:var(--ink);text-wrap:balance}
.cs-combo__curated-sub{font-size:14px;line-height:1.5;color:rgba(245,239,231,.55);text-wrap:pretty;margin:10px auto 0}

.cs-combo__wall{display:flex;flex-wrap:wrap;justify-content:center;gap:48px 36px;padding:36px 0 8px}
.cs-combo__item{flex:0 1 300px;display:flex;flex-direction:column;align-items:center;text-align:center;gap:5px;text-decoration:none!important;color:inherit}
.cs-combo__item:hover{color:inherit;text-decoration:none!important}
.cs-combo__item:focus-visible{outline:2px solid var(--blue);outline-offset:6px;border-radius:12px}
.cs-combo__item-img{display:block;width:100%;aspect-ratio:1/1;position:relative}
.cs-combo__item-img img{position:absolute;inset:0;width:100%;height:100%;object-fit:contain;display:block;
  filter:drop-shadow(0 24px 36px rgba(0,0,0,.6));transform:scale(1.18) rotate(-2deg);transition:transform .45s cubic-bezier(.2,.7,.2,1)}
.cs-combo__item:nth-child(even) .cs-combo__item-img img{transform:scale(1.18) rotate(2.5deg)}
.cs-combo__item:hover .cs-combo__item-img img{transform:scale(1.26) rotate(0deg)}
.cs-combo__item-name{font-family:"Fraunces","Inter",serif;font-size:24px;font-weight:500;letter-spacing:-.015em;line-height:1.15;color:var(--ink);margin-top:2px}
.cs-combo__item-tag{font-size:13.5px;line-height:1.45;color:rgba(245,239,231,.6);max-width:30ch;text-wrap:pretty}
.cs-combo__item-price{display:flex;flex-direction:column;align-items:center;gap:3px;margin-top:6px}
.cs-combo__item-price b,.cs-combo__item-price .woocommerce-Price-amount{font-family:"Fraunces","Inter",serif;font-size:34px;line-height:1;font-weight:500;color:#fff;letter-spacing:-.02em}
.cs-combo__item-price small{font-family:"Montserrat","Inter",system-ui,sans-serif;font-size:11.5px;color:rgba(245,239,231,.5);letter-spacing:.02em}
.cs-combo__item-cta{font-family:"Montserrat","Inter",system-ui,sans-serif;font-size:12px;font-weight:700;letter-spacing:.04em;text-transform:uppercase;color:var(--blue);opacity:0;transform:translateY(-4px);transition:opacity .3s,transform .3s}
.cs-combo__item:hover .cs-combo__item-cta,.cs-combo__item:focus-visible .cs-combo__item-cta{opacity:1;transform:none}

/* ---- responsive ---- */
@media (max-width:1080px){
  .cs-combo__feature-wall{grid-template-columns:repeat(5,1fr);grid-template-rows:repeat(3,1fr)}
  .cs-combo__wall{gap:40px 28px}
  .cs-combo__item{flex-basis:260px}
}
@media (max-width:680px){
  .cs-combo__inner{padding:0 18px}
  .cs-combo__feature{min-height:0}
  .cs-combo__feature-wall{position:relative;aspect-ratio:16/10;grid-template-columns:repeat(5,1fr);grid-template-rows:repeat(3,1fr)}
  .cs-combo__feature-veil{background:linear-gradient(0deg,rgba(11,14,19,.96) 0%,rgba(11,14,19,.72) 45%,rgba(11,14,19,.28) 100%)}
  .cs-combo__feature-body{position:relative;min-height:0;max-width:none;padding:28px 24px 32px}
  .cs-combo__feature-foot{gap:16px}
  .cs-combo__feature-cta{width:100%;justify-content:center}
  .cs-combo__wall{gap:28px 20px}
  .cs-combo__item{flex:0 1 calc(50% - 10px)}
  .cs-combo__item-name{font-size:20px}
  .cs-combo__item-tag{font-size:13px}
  .cs-combo__item-cta{opacity:1;transform:none}
}
@media (max-width:480px){
  .cs-combo__feature-wall{aspect-ratio:5/3}
  .cs-combo__item{flex:0 1 100%;max-width:300px}
}
@media (prefers-reduced-motion:reduce){
  .cs-combo__feature,.cs-combo__feature:hover,
  .cs-combo__feature-wall,.cs-combo__feature:hover .cs-combo__feature-wall,
  .cs-combo__feature-cta,.cs-combo__feature:hover .cs-combo__feature-cta,
  .cs-combo__item-img img,.cs-combo__item:hover .cs-combo__item-img img{
    transition:none!important;transform:none!important;animation:none!important;
  }
  .cs-combo__item-cta{opacity:1;transform:none}
  .cs-combo__dot{animation:none!important;transform:scale(1.3) translateY(.03em)!important}
  .cs-combo__wall-cell img,.cs-combo__feature-num{animation:none!important;transform:none!important;opacity:1!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 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;
    }
}

