@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-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-cart-polish */

/* ============================================================
   CART & CHECKOUT — dark premium polish, brand-blue accents
   Scoped to body.woocommerce-cart, body.woocommerce-checkout
   ============================================================ */

body.woocommerce-cart, body.woocommerce-checkout {
    background: #0b0e13;
}
body.woocommerce-cart #main, body.woocommerce-checkout #main {
    background: transparent;
}
body.woocommerce-cart .page-title, body.woocommerce-checkout .page-title {
    background: transparent !important;
}
body.woocommerce-cart .page-title-inner h1,
body.woocommerce-checkout .page-title-inner h1 {
    font-family: "Fraunces", "Inter", serif !important;
    font-weight: 500 !important;
    letter-spacing: -.02em !important;
    color: #f5efe7 !important;
}

/* Kill the Flatsome column divider (border-left on .cart-collaterals) that
   drew a tall vertical line down the gutter, right of the subtotal. */
.woocommerce-cart .cart-collaterals {
    border-left: 0 !important;
}

/* Cart items table — dark cards */
.woocommerce-cart table.shop_table,
.woocommerce-checkout table.shop_table {
    background: rgba(24, 29, 39, .7) !important;
    border: 1px solid rgba(255, 255, 255, .08) !important;
    border-radius: 14px !important;
    border-collapse: separate !important;
    border-spacing: 0 !important;
    overflow: hidden;
    color: #f5efe7 !important;
}
.woocommerce-cart table.shop_table thead,
.woocommerce-checkout table.shop_table thead {
    background: rgba(15, 19, 26, .85) !important;
}
.woocommerce-cart table.shop_table thead th,
.woocommerce-checkout table.shop_table thead th {
    color: rgba(245, 239, 231, .6) !important;
    font-family: "Montserrat", "Inter", system-ui, sans-serif !important;
    font-size: 11.5px !important;
    font-weight: 700 !important;
    letter-spacing: .14em !important;
    text-transform: uppercase !important;
    padding: 18px 16px !important;
    border: 0 !important;
}
.woocommerce-cart table.shop_table tbody td,
.woocommerce-checkout table.shop_table tbody td {
    background: transparent !important;
    color: #f5efe7 !important;
    border-top: 1px solid rgba(255, 255, 255, .06) !important;
    padding: 18px 16px !important;
    vertical-align: middle !important;
}
.woocommerce-cart table.shop_table tbody td a,
.woocommerce-checkout table.shop_table tbody td a {
    color: #f5efe7 !important;
}
.woocommerce-cart table.shop_table tbody td a:hover {
    color: #2196f3 !important;
}
.woocommerce-cart table.shop_table .product-name,
.woocommerce-checkout table.shop_table .product-name {
    font-weight: 500 !important;
}
.woocommerce-cart table.shop_table .product-thumbnail img,
.woocommerce-checkout table.shop_table .product-thumbnail img {
    border-radius: 8px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .35);
}
.woocommerce-cart table.shop_table .product-remove a {
    color: rgba(245, 239, 231, .5) !important;
    transition: color .2s ease;
}
.woocommerce-cart table.shop_table .product-remove a:hover {
    color: #ef4444 !important;
}
.woocommerce-cart .quantity input[type="number"],
.woocommerce-cart .ux-quantity input[type="number"] {
    background: rgba(11, 14, 19, .6) !important;
    color: #f5efe7 !important;
    border: 1px solid rgba(255, 255, 255, .12) !important;
    border-radius: 8px !important;
}
.woocommerce-cart .ux-quantity__button {
    background: rgba(255, 255, 255, .04) !important;
    color: #f5efe7 !important;
    border: 1px solid rgba(255, 255, 255, .08) !important;
}
.woocommerce-cart .ux-quantity__button:hover {
    background: rgba(33, 150, 243, .15) !important;
    border-color: rgba(33, 150, 243, .35) !important;
}

/* Coupon input + apply button */
.woocommerce-cart .coupon {
    display: flex !important;
    gap: 8px !important;
    align-items: center !important;
}
.woocommerce-cart .coupon input[type="text"] {
    background: rgba(11, 14, 19, .6) !important;
    color: #f5efe7 !important;
    border: 1px solid rgba(255, 255, 255, .12) !important;
    border-radius: 999px !important;
    padding: 10px 18px !important;
    font-family: inherit !important;
}
.woocommerce-cart .coupon input[type="text"]:focus {
    border-color: rgba(33, 150, 243, .55) !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(33, 150, 243, .18) !important;
}
.woocommerce-cart .coupon button[name="apply_coupon"],
.woocommerce-cart button[name="update_cart"] {
    background: rgba(255, 255, 255, .06) !important;
    color: #f5efe7 !important;
    border: 1px solid rgba(255, 255, 255, .12) !important;
    border-radius: 999px !important;
    padding: 10px 22px !important;
    font-family: "Montserrat", "Inter", system-ui, sans-serif !important;
    font-weight: 600 !important;
    font-size: 13px !important;
    letter-spacing: .02em !important;
    transition: background .2s ease, border-color .2s ease, transform .2s ease !important;
}
.woocommerce-cart .coupon button[name="apply_coupon"]:hover,
.woocommerce-cart button[name="update_cart"]:hover {
    background: rgba(33, 150, 243, .15) !important;
    border-color: rgba(33, 150, 243, .45) !important;
    color: #f5efe7 !important;
}

/* Cart totals box (right column on cart, summary on checkout) */
.woocommerce-cart .cart_totals,
.woocommerce-checkout .cart_totals,
.woocommerce-checkout #order_review {
    background: linear-gradient(180deg, rgba(31, 38, 50, .85) 0%, rgba(24, 29, 39, .75) 100%) !important;
    border: 1px solid rgba(33, 150, 243, .15) !important;
    border-radius: 16px !important;
    padding: 28px 26px !important;
    box-shadow: 0 18px 44px -22px rgba(0, 0, 0, .55), 0 0 0 1px rgba(33, 150, 243, .06) !important;
    color: #f5efe7 !important;
}
.woocommerce-cart .cart_totals h2,
.woocommerce-checkout #order_review_heading {
    font-family: "Fraunces", "Inter", serif !important;
    font-size: 22px !important;
    font-weight: 500 !important;
    letter-spacing: -.012em !important;
    color: #f5efe7 !important;
    margin: 0 0 18px !important;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    padding-bottom: 14px;
}
.woocommerce-cart .cart_totals table.shop_table,
.woocommerce-checkout table.shop_table {
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
}
.woocommerce-cart .cart_totals table.shop_table tbody tr {
    background: transparent !important;
}
.woocommerce-cart .cart_totals table.shop_table tbody td,
.woocommerce-cart .cart_totals table.shop_table tbody th {
    background: transparent !important;
    color: rgba(245, 239, 231, .82) !important;
    border-top: 1px solid rgba(255, 255, 255, .06) !important;
    padding: 12px 0 !important;
}
.woocommerce-cart .cart_totals .order-total .woocommerce-Price-amount,
.woocommerce-checkout .order-total .woocommerce-Price-amount {
    color: #2196f3 !important;
    font-family: "Fraunces", "Inter", serif !important;
    font-weight: 600 !important;
    font-size: 1.4em !important;
}

/* Proceed-to-checkout button — primary brand action */
.woocommerce-cart .wc-proceed-to-checkout,
.woocommerce-checkout #place_order {
    margin-top: 20px !important;
}
.woocommerce-cart .wc-proceed-to-checkout .checkout-button,
.woocommerce-checkout #place_order {
    display: inline-flex !important;
    width: 100% !important;
    align-items: center !important;
    justify-content: center !important;
    background: #2196f3 !important;
    color: #fff !important;
    border: none !important;
    border-radius: 999px !important;
    padding: 16px 28px !important;
    font-family: "Montserrat", "Inter", system-ui, sans-serif !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    letter-spacing: .02em !important;
    text-transform: none !important;
    box-shadow: 0 14px 32px -10px rgba(33, 150, 243, .55) !important;
    transition: background .2s ease, transform .2s ease, box-shadow .2s ease !important;
    text-shadow: none !important;
}
.woocommerce-cart .wc-proceed-to-checkout .checkout-button:hover,
.woocommerce-checkout #place_order:hover {
    background: #1976d2 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 18px 40px -12px rgba(33, 150, 243, .7) !important;
    color: #fff !important;
}

/* Empty cart message */
.woocommerce-cart .cart-empty,
.woocommerce-cart .return-to-shop {
    text-align: center !important;
    color: rgba(245, 239, 231, .8) !important;
    font-size: 17px !important;
    padding: 32px 0 !important;
}
.woocommerce-cart .return-to-shop .button {
    background: #2196f3 !important;
    color: #fff !important;
    border-radius: 999px !important;
    padding: 12px 26px !important;
    font-family: "Montserrat", "Inter", system-ui, sans-serif !important;
    font-weight: 600 !important;
    box-shadow: 0 12px 28px -10px rgba(33, 150, 243, .55) !important;
    transition: background .2s ease, transform .2s ease !important;
}
.woocommerce-cart .return-to-shop .button:hover {
    background: #1976d2 !important;
    transform: translateY(-2px) !important;
}

/* Checkout-specific: form fields */
.woocommerce-checkout form.checkout {
    color: #f5efe7;
}
.woocommerce-checkout .woocommerce-billing-fields h3,
.woocommerce-checkout .woocommerce-shipping-fields h3,
.woocommerce-checkout .woocommerce-additional-fields h3,
.woocommerce-checkout #order_review_heading {
    font-family: "Fraunces", "Inter", serif !important;
    color: #f5efe7 !important;
    font-weight: 500 !important;
    letter-spacing: -.012em !important;
}
.woocommerce-checkout .form-row label {
    color: rgba(245, 239, 231, .82) !important;
    font-weight: 500 !important;
}
.woocommerce-checkout .form-row input.input-text,
.woocommerce-checkout .form-row textarea,
.woocommerce-checkout .form-row select,
.woocommerce-checkout .select2-container--default .select2-selection--single {
    background: rgba(11, 14, 19, .6) !important;
    color: #f5efe7 !important;
    border: 1px solid rgba(255, 255, 255, .12) !important;
    border-radius: 10px !important;
    padding: 11px 14px !important;
    height: auto !important;
    font-family: inherit !important;
}
.woocommerce-checkout .form-row input.input-text:focus,
.woocommerce-checkout .form-row textarea:focus {
    border-color: rgba(33, 150, 243, .55) !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(33, 150, 243, .18) !important;
}
.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #f5efe7 !important;
    line-height: 28px !important;
}
.woocommerce-checkout #payment {
    background: rgba(24, 29, 39, .7) !important;
    border: 1px solid rgba(255, 255, 255, .08) !important;
    border-radius: 14px !important;
    color: #f5efe7 !important;
}
.woocommerce-checkout #payment ul.payment_methods {
    background: transparent !important;
    border-bottom: 1px solid rgba(255, 255, 255, .08) !important;
}
.woocommerce-checkout #payment ul.payment_methods li {
    color: #f5efe7 !important;
}
.woocommerce-checkout #payment div.payment_box {
    background: rgba(11, 14, 19, .5) !important;
    color: rgba(245, 239, 231, .82) !important;
    border-radius: 10px !important;
}
.woocommerce-checkout #payment div.payment_box::before {
    border-bottom-color: rgba(11, 14, 19, .5) !important;
}

/* Notices (cart + checkout) — clean branded toast. Flatsome wraps these as
   .woocommerce-message.message-wrapper > .message-container.success-color, so
   we style the inner container too (its green/centred default looked off). */
.woocommerce-cart .woocommerce-message,
.woocommerce-cart .woocommerce-info,
.woocommerce-checkout .woocommerce-message,
.woocommerce-checkout .woocommerce-info {
    background: rgba(33, 150, 243, .1) !important;
    border: 1px solid rgba(33, 150, 243, .28) !important;
    border-left: 3px solid #2196f3 !important;
    color: #f5efe7 !important;
    border-radius: 12px !important;
    overflow: hidden !important;
}
.woocommerce-cart .woocommerce-message .message-container,
.woocommerce-cart .woocommerce-info .message-container,
.woocommerce-checkout .woocommerce-message .message-container,
.woocommerce-checkout .woocommerce-info .message-container {
    background: transparent !important;
    color: #f5efe7 !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    text-align: left !important;
    max-width: none !important;
    padding: 13px 18px !important;
    font-family: "Montserrat", "Inter", system-ui, sans-serif !important;
    font-size: 13.5px !important;
    font-weight: 600 !important;
}
.woocommerce-cart .message-container [class^="icon-"],
.woocommerce-checkout .message-container [class^="icon-"] { color: #2196f3 !important; flex: 0 0 auto; }
.woocommerce-cart .woocommerce-message .restore-item,
.woocommerce-checkout .woocommerce-message .restore-item {
    margin-left: auto !important;
    color: #2196f3 !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    border: 1px solid rgba(33, 150, 243, .4) !important;
    border-radius: 999px !important;
    padding: 5px 14px !important;
    transition: background .2s ease !important;
}
.woocommerce-cart .woocommerce-message .restore-item:hover { background: rgba(33, 150, 243, .15) !important; }
.woocommerce-cart .woocommerce-error,
.woocommerce-checkout .woocommerce-error {
    background: rgba(239, 68, 68, .1) !important;
    border: 1px solid rgba(239, 68, 68, .28) !important;
    border-left: 3px solid #ef4444 !important;
    color: #f5efe7 !important;
    border-radius: 12px !important;
}
.woocommerce-cart .woocommerce-error .message-container,
.woocommerce-checkout .woocommerce-error .message-container {
    background: transparent !important; color: #f5efe7 !important;
    text-align: left !important; padding: 13px 18px !important;
}

/* ============================================================
   REFRESH 2026-06-17 — fixes + finish on top of the base above
   ============================================================ */

/* Cart-page step nav (WINKELWAGEN › AFREKENINGSDETAILS › ORDER AFGEROND).
   Tone the default uppercase Montserrat nav into the brand palette:
   muted future steps, brand-blue active step. */
.woocommerce-cart .cart-steps,
.woocommerce-cart ul.checkout-steps,
.woocommerce-cart .nav-steps {
    color: rgba(245, 239, 231, .45) !important;
}
.woocommerce-cart .cart-steps a,
.woocommerce-cart ul.checkout-steps a {
    color: rgba(245, 239, 231, .55) !important;
}
.woocommerce-cart .cart-steps .active,
.woocommerce-cart ul.checkout-steps li.active,
.woocommerce-cart .cart-steps a:hover {
    color: #2196f3 !important;
}

/* Larger, framed product thumbnail. Alle CardSticker-beelden (featured images
   en Lumise-design-screenshots) zijn liggend kaartformaat ~1.58:1; een vast
   vierkant drukte ze plat/sneed ze af. height:auto houdt de verhouding altijd
   intact, ook als de cel de breedte inperkt. */
.woocommerce-cart table.shop_table td.product-thumbnail {
    min-width: 100px !important;
}
.woocommerce-cart table.shop_table .product-thumbnail img {
    width: 88px !important;
    max-width: 88px !important;
    height: auto !important;
    object-fit: unset !important;
    background: rgba(255, 255, 255, .04) !important;
}
/* Lumise-design-preview in de cart (show_only_design vervangt de productfoto) */
.woocommerce-cart .lumise-cart-thumbnails {
    display: block;
}
.woocommerce-cart .lumise-cart-thumbnails .lumise-cart-thumbnail {
    display: block;
    margin: 0 0 6px;
}

/* Quantity stepper — group the - [n] + into one neat pill */
.woocommerce-cart .ux-quantity.quantity {
    display: inline-flex !important;
    align-items: stretch !important;
    border-radius: 999px !important;
    overflow: hidden !important;
    border: 1px solid rgba(255, 255, 255, .12) !important;
    background: rgba(11, 14, 19, .6) !important;
}
.woocommerce-cart .ux-quantity .ux-quantity__button {
    border: 0 !important;
    background: transparent !important;
    width: 38px !important;
    border-radius: 0 !important;
}
.woocommerce-cart .ux-quantity input[type="number"] {
    border: 0 !important;
    border-left: 1px solid rgba(255, 255, 255, .1) !important;
    border-right: 1px solid rgba(255, 255, 255, .1) !important;
    border-radius: 0 !important;
    width: 46px !important;
    text-align: center !important;
    background: transparent !important;
}

/* "Update winkelwagen" disabled state — Flatsome disables it until a qty
   changes; the browser default made it look broken/greyed. Make it a clearly
   intentional, quiet secondary button instead. */
.woocommerce-cart button[name="update_cart"]:disabled,
.woocommerce-cart button[name="update_cart"][disabled] {
    opacity: .45 !important;
    cursor: default !important;
    background: rgba(255, 255, 255, .04) !important;
    border-color: rgba(255, 255, 255, .08) !important;
    color: rgba(245, 239, 231, .6) !important;
    box-shadow: none !important;
    transform: none !important;
}

/* "← Verder winkelen" link-button — quiet ghost button next to the actions */
.woocommerce-cart .cart .button.wc-backward,
.woocommerce-cart a.button.wc-backward {
    background: transparent !important;
    color: rgba(245, 239, 231, .8) !important;
    border: 1px solid rgba(255, 255, 255, .14) !important;
    border-radius: 999px !important;
    padding: 10px 22px !important;
    font-family: "Montserrat", "Inter", system-ui, sans-serif !important;
    font-weight: 600 !important;
    font-size: 13px !important;
    box-shadow: none !important;
    transition: border-color .2s ease, color .2s ease !important;
}
.woocommerce-cart .cart .button.wc-backward:hover,
.woocommerce-cart a.button.wc-backward:hover {
    border-color: rgba(33, 150, 243, .45) !important;
    color: #f5efe7 !important;
}

/* Coupon form fix — the base rule put .coupon on display:flex, which threw
   the heading + input + (Flatsome `expand`) button into one row so they
   overlapped into a pill cluster. Stack them full-width instead. */
.woocommerce-cart form.ux-cart-coupon,
.woocommerce-cart .coupon {
    display: block !important;
    margin-top: 8px !important;
}
.woocommerce-cart .coupon h3.widget-title {
    display: block !important;
    width: 100% !important;
    margin: 0 0 14px !important;
    font-family: "Montserrat", "Inter", system-ui, sans-serif !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    letter-spacing: .12em !important;
    text-transform: uppercase !important;
    color: rgba(245, 239, 231, .6) !important;
}
.woocommerce-cart .coupon h3.widget-title .icon-tag {
    color: #2196f3 !important;
    margin-right: 4px !important;
}
.woocommerce-cart .coupon input[type="text"]#coupon_code,
.woocommerce-cart .coupon input.input-text {
    display: block !important;
    width: 100% !important;
    margin: 0 0 10px !important;
    border-radius: 10px !important;
    box-sizing: border-box !important;
}
.woocommerce-cart .coupon button[name="apply_coupon"] {
    display: block !important;
    width: 100% !important;
    border-radius: 10px !important;
    margin: 0 !important;
}

/* Tidy the totals "shipping" cell so the address/calc note reads calmer */
.woocommerce-cart .cart_totals .shipping td,
.woocommerce-cart .cart_totals .woocommerce-shipping-destination {
    color: rgba(245, 239, 231, .6) !important;
    font-size: 13px !important;
    line-height: 1.5 !important;
}
.woocommerce-cart .cart_totals .shipping th {
    vertical-align: top !important;
}

/* Mobile — keep table readable */
@media (max-width: 720px) {
    .woocommerce-cart table.shop_table tbody td {
        padding: 12px 10px !important;
    }
    .woocommerce-cart table.shop_table td.product-thumbnail {
        min-width: 72px !important;
    }
    .woocommerce-cart table.shop_table .product-thumbnail img {
        width: 64px !important;
        max-width: 64px !important;
        height: auto !important;
    }
    /* Cookie-banner (113px) + sticky afrekenbalk (73px) bedekken samen ~200px
       van het scherm; geef de pagina onderaan lucht zolang de banner er staat,
       zodat totalen/waardebon scrollbaar vrijkomen. Na akkoord verdwijnt de
       banner uit de DOM en valt :has() terug op de normale padding. */
    body.woocommerce-cart:has(#cs-consent-bar) {
        padding-bottom: 215px !important;
    }
    .woocommerce-cart .cart_totals,
    .woocommerce-checkout #order_review,
    .woocommerce-checkout .cart_totals {
        padding: 22px 18px !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-cart-boost-css */

/* Trust badges */
.cs-trust {
    list-style: none;
    margin: 16px 0 0;
    padding: 16px 4px 0;
    border-top: 1px solid rgba(255, 255, 255, .08);
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    justify-content: center;
}
.cs-trust li {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin: 0;
    font-family: "Montserrat", "Inter", system-ui, sans-serif;
    font-size: 12.5px;
    font-weight: 600;
    color: rgba(245, 239, 231, .7);
}
.cs-trust__ic { font-size: 15px; line-height: 1; }
.woocommerce-checkout .cs-trust { justify-content: center; }

/* Rich empty cart */
.cs-empty { max-width: 880px; margin: 8px auto 40px; color: #f5efe7; text-align: center; }
.cs-empty__head h2 {
    font-family: "Fraunces", "Inter", serif;
    font-weight: 500;
    letter-spacing: -.02em;
    font-size: 30px;
    margin: 0 0 8px;
    color: #f5efe7;
}
.cs-empty__head p { color: rgba(245, 239, 231, .7); font-size: 15px; margin: 0 0 26px; }
.cs-empty__label {
    font-family: "Montserrat", "Inter", system-ui, sans-serif;
    font-size: 11.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
    color: rgba(245, 239, 231, .5);
    text-align: left; margin: 26px 0 12px;
}
.cs-empty__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.cs-empty__tile {
    display: flex; flex-direction: column;
    background: transparent; border: 0; border-radius: 0; overflow: visible;
    text-decoration: none; color: #f5efe7;
}
.cs-empty__img {
    display: block; aspect-ratio: 1.586/1; border-radius: 11px; overflow: hidden;
    background: #0b0e13; box-shadow: inset 0 0 0 1px rgba(255,255,255,.06);
    transition: box-shadow .25s ease, transform .25s ease;
}
.cs-empty__img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.cs-empty__tile:hover .cs-empty__img { box-shadow: inset 0 0 0 1px rgba(33,150,243,.32), 0 14px 30px -12px rgba(0,0,0,.6); }
.cs-empty__tile:hover .cs-empty__img img { transform: scale(1.05); }
.cs-empty__name { padding: 11px 2px 3px; font-size: 13px; font-weight: 600; line-height: 1.3; text-align: center; }
.cs-empty__price { padding: 0 2px; font-size: 13px; color: #2196f3; font-weight: 700; text-align: center; }
.cs-empty__price del { color: rgba(245,239,231,.4); font-weight: 400; margin-right: 5px; }
.cs-empty__cats { display: flex; flex-wrap: wrap; gap: 9px; }
.cs-empty__chip {
    display: inline-flex; align-items: center;
    padding: 9px 18px; border-radius: 999px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .12);
    color: #f5efe7; text-decoration: none;
    font-family: "Montserrat", "Inter", system-ui, sans-serif;
    font-size: 13px; font-weight: 600;
    transition: background .2s ease, border-color .2s ease;
}
.cs-empty__chip:hover { background: rgba(33, 150, 243, .15); border-color: rgba(33, 150, 243, .45); color: #f5efe7; }

@media (max-width: 720px) {
    .cs-empty__grid { grid-template-columns: repeat(2, 1fr); }
    .cs-empty__head h2 { font-size: 24px; }
}


/* cs-upsell-css */

.cs-xsell { margin: 26px 0 0; }
.cs-xsell__label, .cs-bump__hd {
    font-family: "Montserrat", "Inter", system-ui, sans-serif;
}
.cs-xsell__label {
    font-size: 11.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
    color: rgba(245, 239, 231, .5); margin: 0 0 14px;
}
.cs-xsell__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.cs-xsell__tile {
    background: transparent; border: 0; border-radius: 0; overflow: visible;
    display: flex; flex-direction: column; text-align: center;
}
.cs-xsell__img {
    display: block; aspect-ratio: 1.586/1; border-radius: 11px; overflow: hidden;
    background: #0b0e13; box-shadow: inset 0 0 0 1px rgba(255,255,255,.06);
    transition: box-shadow .25s ease, transform .25s ease;
}
.cs-xsell__img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.cs-xsell__tile:hover .cs-xsell__img { box-shadow: inset 0 0 0 1px rgba(33,150,243,.32), 0 14px 30px -12px rgba(0,0,0,.6); }
.cs-xsell__tile:hover .cs-xsell__img img { transform: scale(1.05); }
.cs-xsell__name {
    display: block; padding: 11px 2px 3px; color: #f5efe7; text-decoration: none;
    font-size: 12.5px; font-weight: 600; line-height: 1.3; text-align: center;
}
.cs-xsell__name:hover { color: #2196f3; }
.cs-xsell__row { display: flex; flex-direction: column; align-items: center; gap: 9px; padding: 2px 2px 0; margin-top: auto; }
.cs-xsell__price { font-size: 13.5px; font-weight: 700; color: #f5efe7; text-align: center; }
.cs-xsell__price del { color: rgba(245,239,231,.4); font-weight: 400; margin-right: 4px; }
.cs-xsell__price small, .cs-xsell__price .woocommerce-price-suffix { display: none; }
.cs-empty__price small, .cs-empty__price .woocommerce-price-suffix { display: none; }
.cs-xsell__btn, .cs-bump__btn {
    border: 0; cursor: pointer; white-space: nowrap;
    background: rgba(33, 150, 243, .15);
    color: #7cc4fb;
    border: 1px solid rgba(33, 150, 243, .35);
    border-radius: 999px; padding: 8px 12px;
    font-family: "Montserrat", "Inter", system-ui, sans-serif;
    font-size: 12px; font-weight: 700;
    transition: background .2s ease, color .2s ease;
}
.cs-xsell__btn { width: 100%; text-align: center; }
.cs-xsell__btn:hover, .cs-bump__btn:hover { background: #2196f3; color: #fff; }
.cs-qadd--busy { opacity: .6; pointer-events: none; }

/* Order bump */
.cs-bump {
    margin: 0 0 20px;
    background: rgba(33, 150, 243, .08);
    border: 1px dashed rgba(33, 150, 243, .45);
    border-radius: 14px; padding: 16px 18px;
}
.cs-bump__hd { font-size: 13.5px; color: rgba(245, 239, 231, .85); margin-bottom: 13px; line-height: 1.45; }
.cs-bump__hd strong { color: #f5efe7; font-weight: 700; }
.cs-bump__ic { margin-right: 5px; }
.cs-bump__offer { display: flex; align-items: center; gap: 12px; }
.cs-bump__img { flex: 0 0 auto; width: 50px; height: 50px; border-radius: 9px; overflow: hidden; background: rgba(255,255,255,.04); }
.cs-bump__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cs-bump__meta { display: flex; flex-direction: column; flex: 1 1 auto; min-width: 0; }
.cs-bump__name { font-size: 13px; font-weight: 600; color: #f5efe7; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cs-bump__price { font-size: 12.5px; color: #2196f3; font-weight: 700; }

@media (max-width: 720px) {
    .cs-xsell__grid { grid-template-columns: repeat(2, 1fr); }
}


/* 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-edit-design-styles */

/* Brand pill matching cs_aanbiedingen / cs_bundle_picker conventions.
   Selectors cover both cart (.lumise-edit-design) and my-account
   (.lumise-view-design) action links. Overrides Lumise frontend.min.css
   teal background and dark text. */
.woocommerce a.lumise-edit-design,
.woocommerce-page a.lumise-edit-design,
a.lumise-edit-design,
.woocommerce a.lumise-view-design,
.woocommerce-page a.lumise-view-design,
a.lumise-view-design {
	display: inline-flex !important;
	align-items: center;
	gap: 8px;
	margin: 8px 0 0 !important;
	padding: 10px 20px !important;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: .01em;
	text-decoration: none;
	text-transform: none;
	color: #f5f7fa !important;
	background: rgba(33, 150, 243, .12) !important;
	border: 1px solid rgba(33, 150, 243, .35) !important;
	border-radius: 999px !important;
	box-shadow: 0 1px 0 rgba(255, 255, 255, .03) inset,
				0 8px 20px -14px rgba(33, 150, 243, .55);
	transition: background .25s ease,
				border-color .25s ease,
				box-shadow .25s ease,
				transform .15s ease,
				color .25s ease;
	-webkit-appearance: none;
	appearance: none;
}

/* Tiny pencil glyph via pseudo-element on the edit link only (cart). */
.woocommerce a.lumise-edit-design::before,
a.lumise-edit-design::before {
	content: "";
	display: inline-block;
	width: 12px;
	height: 12px;
	background: currentColor;
	-webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M3 17.25V21h3.75L17.81 9.94l-3.75-3.75L3 17.25zM20.71 7.04a1 1 0 0 0 0-1.41l-2.34-2.34a1 1 0 0 0-1.41 0l-1.83 1.83 3.75 3.75 1.83-1.83z'/></svg>") center / contain no-repeat;
			mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M3 17.25V21h3.75L17.81 9.94l-3.75-3.75L3 17.25zM20.71 7.04a1 1 0 0 0 0-1.41l-2.34-2.34a1 1 0 0 0-1.41 0l-1.83 1.83 3.75 3.75 1.83-1.83z'/></svg>") center / contain no-repeat;
	opacity: .9;
	flex: 0 0 auto;
}

/* Eye glyph for the view-design link (my-account). */
.woocommerce a.lumise-view-design::before,
a.lumise-view-design::before {
	content: "";
	display: inline-block;
	width: 13px;
	height: 13px;
	background: currentColor;
	-webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 5c-7 0-10 7-10 7s3 7 10 7 10-7 10-7-3-7-10-7zm0 11a4 4 0 1 1 0-8 4 4 0 0 1 0 8zm0-6a2 2 0 1 0 0 4 2 2 0 0 0 0-4z'/></svg>") center / contain no-repeat;
			mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 5c-7 0-10 7-10 7s3 7 10 7 10-7 10-7-3-7-10-7zm0 11a4 4 0 1 1 0-8 4 4 0 0 1 0 8zm0-6a2 2 0 1 0 0 4 2 2 0 0 0 0-4z'/></svg>") center / contain no-repeat;
	opacity: .9;
	flex: 0 0 auto;
}

/* Hover / focus state: brighter brand fill, subtle glow, no harsh white. */
.woocommerce a.lumise-edit-design:hover,
.woocommerce a.lumise-edit-design:focus-visible,
.woocommerce-page a.lumise-edit-design:hover,
a.lumise-edit-design:hover,
a.lumise-edit-design:focus-visible,
.woocommerce a.lumise-view-design:hover,
.woocommerce a.lumise-view-design:focus-visible,
.woocommerce-page a.lumise-view-design:hover,
a.lumise-view-design:hover,
a.lumise-view-design:focus-visible {
	color: #ffffff !important;
	background: rgba(33, 150, 243, .22) !important;
	border-color: rgba(33, 150, 243, .65) !important;
	box-shadow: 0 1px 0 rgba(255, 255, 255, .05) inset,
				0 14px 30px -14px rgba(33, 150, 243, .75),
				0 0 0 3px rgba(33, 150, 243, .14);
	transform: translateY(-1px);
	text-decoration: none;
}

.woocommerce a.lumise-edit-design:active,
a.lumise-edit-design:active,
.woocommerce a.lumise-view-design:active,
a.lumise-view-design:active {
	transform: translateY(0);
}

.woocommerce a.lumise-edit-design:focus-visible,
a.lumise-edit-design:focus-visible,
.woocommerce a.lumise-view-design:focus-visible,
a.lumise-view-design:focus-visible {
	outline: 2px solid #2196f3;
	outline-offset: 2px;
}

/* Wrapper spacing in cart: small gap from the product name above. */
.lumise-edit-design-wrp {
	margin-top: 6px;
	line-height: 1;
}

/* Respect reduced motion preference. */
@media (prefers-reduced-motion: reduce) {
	.woocommerce a.lumise-edit-design,
	a.lumise-edit-design,
	.woocommerce a.lumise-view-design,
	a.lumise-view-design {
		transition: none !important;
	}
	.woocommerce a.lumise-edit-design:hover,
	a.lumise-edit-design:hover,
	.woocommerce a.lumise-view-design:hover,
	a.lumise-view-design:hover {
		transform: none !important;
	}
}


/* 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;
    }
}

