@charset "UTF-8";

/* flatsome-variation-images-css */
.ux-additional-variation-images-thumbs-placeholder {max-height: 0;opacity: 0;visibility: hidden;transition: visibility .1s, opacity .1s, max-height .2s ease-out;}.ux-additional-variation-images-thumbs-placeholder--visible {max-height: 1000px;opacity: 1;visibility: visible;transition: visibility .2s, opacity .2s, max-height .1s ease-in;}

/* cs-a11y-css */

/* 1. target-size: Flatsome absolute-footer nav (ul.links.footer-nav) links were 15px tall.
   Vertical padding lifts each link to 25px; the ul's own 5px padding is dropped so a
   single-line footer keeps exactly the same height. */
.absolute-footer ul.links.footer-nav > li > a { display: inline-block; padding: 5px 0; }
.absolute-footer ul.links.footer-nav { padding-top: 0; padding-bottom: 0; }

/* 2. color-contrast: white text on brand blue #2196F3 is 3.12:1 (sale red #E3342F 4.37:1); #1976D2 (same hue,
   already the end stop of the consent gradient) gives 4.60:1. Hover colours were
   already darker and stay untouched. */
.cs-product-badge.cs-badge-bs { background: #1976D2 !important; }
.cs-product-badge.cs-badge-sale { background: #DC322D !important; } /* was #E3342F (4.37:1), now 4.63:1 */
#cs-consent-bar .cs-consent-actions .cs-consent-btn.cs-consent-accept { background: #1976D2 !important; }
#cs-consent-bar .cs-consent-actions .cs-consent-btn.cs-consent-accept:hover { background: #1E40AF !important; }
.cs-banner-marquee-cta.cs-banner-marquee-cta--primary { background: #1976D2 !important; border-color: #1976D2 !important; }
.cs-banner-marquee-cta.cs-banner-marquee-cta--primary:hover { background: #1D4ED8 !important; border-color: #1D4ED8 !important; }

/* 3. color-contrast: language switcher. Inactive links were #222 at opacity .45 on the
   white pill (= #919191 on #EBEBEB, 2.64:1). Text now #666 (4.8:1); only the flag keeps
   the faded look. */
body .cs-lang-switch a { opacity: 1; color: #666; transition: color .15s; }
body .cs-lang-switch a.active { color: #222; }
body .cs-lang-switch a:not(.active) svg { opacity: .45; transition: opacity .15s; }
body .cs-lang-switch a:not(.active):hover { color: #222; }
body .cs-lang-switch a:not(.active):hover svg { opacity: 1; }

/* 4. heading-order: product feature grid headings are h2 now (were h4 directly after
   the h1). Same visual as the old h4 rule in cs_product_styles.php. */
.cs-product-desc .cs-feature h2 {
    font-size: 16px !important;
    line-height: 1.65 !important;
    margin: 0 0 6px !important;
    padding: 0 !important;
    color: #0F1E2E !important;
    font-weight: 700 !important;
    letter-spacing: -0.01em !important;
    text-transform: none !important;
}


/* kirki-inline-styles */


/* cs-paslinks-css */

	.cs-paslinks{background:#020000;padding:30px 15px 24px;text-align:center;border-bottom:1px solid rgba(255,255,255,.05)}
	.cs-paslinks__head{display:block;margin:0 0 14px;font-size:.72em;font-weight:700;letter-spacing:.14em;text-transform:uppercase;color:#8b93a1}
	.cs-paslinks__row{display:flex;flex-wrap:wrap;justify-content:center;gap:10px;max-width:720px;margin:0 auto;padding:0;list-style:none}
	.cs-paslinks__row li{margin:0}
	.cs-paslinks__row a{display:inline-block;padding:7px 16px;border:1px solid rgba(255,255,255,.14);border-radius:999px;font-size:.8em;line-height:1.2;color:#aeb6c2;text-decoration:none;transition:color .15s,border-color .15s}
	.cs-paslinks__row a:hover{color:#fff;border-color:#2196f3}
	

/* cs-pp-visual-css */

.cs-pick-card { position: relative; }
.cs-pp-visual {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 86px;
    aspect-ratio: 1.586 / 1;
    pointer-events: none;
    z-index: 1;
}
@media (max-width: 600px) {
    .cs-pp-visual { width: 70px; top: 12px; right: 12px; }
}

/* === MYSTERY (single card, flips between ? and random product) === */
.cs-pp-mystery {
    perspective: 600px;
}
.cs-pp-mystery-card {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    background: #1F2937;
    box-shadow: 0 6px 16px rgba(0,0,0,.35), 0 0 0 1px rgba(96,165,250,.18) inset;
    transition: transform .55s cubic-bezier(.4, .2, .2, 1);
    transform-style: preserve-3d;
}
.cs-pp-mystery-card.is-flipping { transform: rotateY(180deg); }
.cs-pp-mystery-face,
.cs-pp-mystery-back {
    position: absolute;
    inset: 0;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    overflow: hidden;
}
.cs-pp-mystery-face {
    background: linear-gradient(135deg, #1F2937 0%, #0F172A 100%);
    color: #93C5FD;
    font-family: "Fraunces", Georgia, serif;
    font-size: 36px;
    font-weight: 600;
    text-shadow: 0 2px 8px rgba(0,0,0,.6);
}
.cs-pp-mystery-back {
    transform: rotateY(180deg);
    background: #1F2937;
}
.cs-pp-mystery-back img {
    width: 100%; height: 100%;
    object-fit: cover;
    transform: scale(1.18);
}

/* === DUO (two cards fanned out) === */
.cs-pp-duo {
    position: absolute;
    top: 8px;
    right: 14px;
    width: 96px;
    height: 64px;
    pointer-events: none;
    z-index: 1;
}
@media (max-width: 600px) {
    .cs-pp-duo { width: 80px; height: 54px; top: 8px; right: 12px; }
}
.cs-pp-duo-card {
    position: absolute;
    width: 78%;
    aspect-ratio: 1.586 / 1;
    border-radius: 8px;
    overflow: hidden;
    background: #1F2937;
    box-shadow: 0 5px 12px rgba(0,0,0,.4), 0 0 0 1px rgba(96,165,250,.12) inset;
    transition: transform .5s cubic-bezier(.4, .2, .2, 1), opacity .35s ease;
}
.cs-pp-duo-card img {
    width: 100%; height: 100%;
    object-fit: cover;
    transform: scale(1.18);
}
.cs-pp-duo-card.cs-pp-duo-back {
    top: 0; right: 0;
    transform: rotate(8deg) translateX(2px);
    z-index: 1;
}
.cs-pp-duo-card.cs-pp-duo-front {
    top: 14px; right: 14px;
    transform: rotate(-6deg);
    z-index: 2;
}
.cs-pick-card:hover .cs-pp-duo-card.cs-pp-duo-back {
    transform: rotate(14deg) translateX(8px) translateY(-2px);
}
.cs-pick-card:hover .cs-pp-duo-card.cs-pp-duo-front {
    transform: rotate(-12deg) translateX(-6px) translateY(2px);
}

/* Make room on cards so visual doesn't overlap text */
.cs-pick-card { padding-right: 110px !important; }
@media (max-width: 600px) {
    .cs-pick-card { padding-right: 90px !important; }
}

@media (prefers-reduced-motion: reduce) {
    .cs-pp-mystery-card,
    .cs-pp-duo-card { transition: none !important; }
}


/* cs-consent-css */

#cs-consent-bar {
    position: fixed; left: 18px; bottom: 18px;
    z-index: 99999;
    width: 360px;
    font-family: "Inter", -apple-system, system-ui, sans-serif;
    animation: cs-consent-rise .45s cubic-bezier(.2,.8,.2,1) both;
}
@keyframes cs-consent-rise {
    from { transform: translateY(20px) scale(.96); opacity: 0; }
    to   { transform: none; opacity: 1; }
}
.cs-consent-card {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: start;
    gap: 12px;
    padding: 14px 16px 14px 14px;
    background: rgba(15, 30, 46, .94);
    -webkit-backdrop-filter: saturate(160%) blur(14px);
    backdrop-filter: saturate(160%) blur(14px);
    border-radius: 14px;
    box-shadow:
        0 16px 40px rgba(0,0,0,.32),
        0 0 0 1px rgba(255,255,255,.05);
    color: #F3F4F6;
}
.cs-consent-icon {
    width: 32px; height: 32px;
    display: grid; place-items: center;
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
    color: #fff;
    border-radius: 9px;
    box-shadow: 0 4px 12px rgba(33,150,243,.28);
    flex-shrink: 0;
    margin-top: 1px;
}
.cs-consent-icon svg { width: 16px; height: 16px; }
.cs-consent-body { min-width: 0; }
.cs-consent-title {
    font-family: "Fraunces", Georgia, serif !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    margin: 0 0 2px !important;
    color: #FFFFFF !important;
    line-height: 1.25 !important;
    letter-spacing: -0.01em;
}
.cs-consent-text {
    margin: 0 0 10px !important;
    font-size: 12.5px;
    line-height: 1.45;
    color: #CBD5E1;
    text-wrap: pretty;
    -webkit-text-wrap: pretty;
}
.cs-consent-link {
    color: #60A5FA;
    text-decoration: none;
    border-bottom: 1px solid rgba(96,165,250,.4);
    transition: border-color .15s ease;
}
.cs-consent-link:hover { border-bottom-color: #60A5FA; }
.cs-consent-actions {
    grid-column: 1 / -1;
    display: flex; gap: 6px;
    margin-top: 4px;
}
.cs-consent-btn {
    appearance: none; border: 0; cursor: pointer;
    padding: 7px 12px;
    border-radius: 8px;
    font-family: inherit;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: .01em;
    transition: transform .15s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
    display: inline-flex; align-items: center; gap: 4px;
    white-space: nowrap;
}
.cs-consent-btn:active { transform: translateY(1px); }
.cs-consent-decline {
    background: transparent;
    color: #94A3B8;
    border: 1px solid rgba(255,255,255,.14);
}
.cs-consent-decline:hover {
    color: #F3F4F6;
    border-color: rgba(255,255,255,.28);
    background: rgba(255,255,255,.04);
}
.cs-consent-accept {
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
    color: #fff;
    box-shadow: 0 6px 18px rgba(33,150,243,.34), 0 0 0 1px rgba(255,255,255,.08) inset;
}
.cs-consent-accept:hover {
    box-shadow: 0 10px 26px rgba(33,150,243,.5), 0 0 0 1px rgba(255,255,255,.12) inset;
}
.cs-consent-accept .cs-consent-arrow {
    width: 12px; height: 12px;
    transition: transform .2s ease;
}
.cs-consent-accept:hover .cs-consent-arrow { transform: translateX(2px); }

@media (max-width: 600px) {
    #cs-consent-bar {
        left: 10px; right: 10px; bottom: 10px;
        width: auto; max-width: none;
    }
    .cs-consent-card {
        gap: 8px;
        padding: 10px 12px;
    }
    .cs-consent-icon { display: none; }
    .cs-consent-card { grid-template-columns: 1fr; }
    .cs-consent-title {
        font-size: 12.5px !important;
        margin-bottom: 1px !important;
    }
    .cs-consent-text {
        font-size: 11.5px;
        line-height: 1.35;
        margin: 0 0 8px !important;
    }
    .cs-consent-actions { gap: 6px; margin-top: 2px; }
    .cs-consent-btn {
        flex: 1;
        padding: 7px 10px;
        font-size: 11.5px;
        justify-content: center;
    }
}


/* cs-marquee-pause-css */

.cs-banner-marquee-strip__track.is-offscreen,
.cs-marquee__track.is-offscreen { animation-play-state: paused !important; }


/* cs-cc-css */

/* Reposition + recompose the existing #cs-consent-bar (defined by cs_consent.php) */
#cs-consent-bar.cs-cc-styled {
    left: auto !important;
    right: 18px !important;
    bottom: 18px !important;
    width: 320px !important;
    max-width: calc(100vw - 24px);
    animation: cs-cc-fade .35s cubic-bezier(.2,.8,.2,1) both !important;
}
@keyframes cs-cc-fade {
    from { transform: translateY(12px); opacity: 0; }
    to   { transform: none; opacity: 1; }
}
#cs-consent-bar.cs-cc-styled .cs-consent-card {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
    padding: 12px 14px 12px !important;
    background: #0F1E2E !important;
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
    border-radius: 12px !important;
    box-shadow: 0 14px 36px rgba(0,0,0,.42), 0 0 0 1px rgba(255,255,255,.06) !important;
    color: #F3F4F6 !important;
}
/* Hide the original icon to keep it compact */
#cs-consent-bar.cs-cc-styled .cs-consent-icon { display: none !important; }
#cs-consent-bar.cs-cc-styled .cs-consent-body { min-width: 0; }
#cs-consent-bar.cs-cc-styled .cs-consent-title {
    font-family: "Fraunces", Georgia, serif !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    margin: 0 0 4px !important;
    color: #FFFFFF !important;
    line-height: 1.2 !important;
    letter-spacing: -0.01em !important;
}
#cs-consent-bar.cs-cc-styled .cs-consent-text {
    margin: 0 0 10px !important;
    font-size: 12px !important;
    line-height: 1.42 !important;
    color: #B6C3D1 !important;
}
#cs-consent-bar.cs-cc-styled .cs-consent-link {
    color: #60A5FA !important;
    border-bottom: 1px solid rgba(96,165,250,.45) !important;
}
#cs-consent-bar.cs-cc-styled .cs-consent-actions {
    grid-column: 1 !important;
    gap: 6px !important;
    margin-top: 0 !important;
}
#cs-consent-bar.cs-cc-styled .cs-consent-btn {
    padding: 7px 11px !important;
    font-size: 11.5px !important;
    border-radius: 7px !important;
    font-weight: 600 !important;
}
#cs-consent-bar.cs-cc-styled .cs-consent-decline {
    background: transparent !important;
    color: #94A3B8 !important;
    border: 1px solid rgba(255,255,255,.14) !important;
}
#cs-consent-bar.cs-cc-styled .cs-consent-decline:hover {
    color: #F3F4F6 !important;
    border-color: rgba(255,255,255,.28) !important;
    background: rgba(255,255,255,.04) !important;
}
#cs-consent-bar.cs-cc-styled .cs-consent-accept {
    background: #2196F3 !important;
    color: #FFFFFF !important;
    box-shadow: 0 4px 12px rgba(37,99,235,.32), 0 0 0 1px rgba(255,255,255,.08) inset !important;
}
#cs-consent-bar.cs-cc-styled .cs-consent-accept:hover {
    background: #1E40AF !important;
    box-shadow: 0 8px 22px rgba(37,99,235,.5), 0 0 0 1px rgba(255,255,255,.12) inset !important;
}
#cs-consent-bar.cs-cc-styled .cs-consent-accept .cs-consent-arrow {
    width: 11px !important; height: 11px !important;
}

@media (max-width: 600px) {
    #cs-consent-bar.cs-cc-styled {
        left: 10px !important;
        right: 10px !important;
        bottom: 10px !important;
        width: auto !important;
    }
    #cs-consent-bar.cs-cc-styled .cs-consent-card {
        padding: 9px 11px 9px !important;
        gap: 6px !important;
    }
    #cs-consent-bar.cs-cc-styled .cs-consent-title { display: none !important; }
    #cs-consent-bar.cs-cc-styled .cs-consent-text {
        font-size: 11.5px !important;
        line-height: 1.35 !important;
        margin: 0 0 7px !important;
    }
    #cs-consent-bar.cs-cc-styled .cs-consent-actions {
        display: flex !important;
        gap: 6px !important;
    }
    #cs-consent-bar.cs-cc-styled .cs-consent-btn {
        flex: 1 !important;
        justify-content: center !important;
        padding: 6px 10px !important;
        font-size: 11px !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    #cs-consent-bar.cs-cc-styled { animation: none !important; }
}

