/* =============================================================
   EPZ Shop Banner  —  epz-shop-banner.css
   Matches ElizaPopZone dark glassmorphic theme.
   Drop into theme root and enqueue via functions.php snippet.
   ============================================================= */

/* ── Wrapper ── */
.epz-sb {
    position: relative;
    overflow: hidden;
    /* Sits ABOVE .main-area — full container width */
    padding: 40px 0 0;
    margin: 0px 0px 0px 5px !important;
    /* Glass panel — same style as .elizapop-zoom-content */
    background: rgba(22, 18, 34, 0.85);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(162, 139, 212, 0.18);
    border-radius: 20px;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.45),
        0 0 0 1px rgba(162, 139, 212, 0.08) inset;
   
}

.Shop-hero section{
    margin: 0px 0px 0px 5px !important;
    padding-bottom: 15px;
}

.Shop-hero{
    padding-bottom: 10px;
}
/* ── Ambient orbs — identical to hero banner ── */
.epz-sb-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}
.epz-sb-orb--1 {
    width: 320px;
    height: 320px;
    top: -80px;
    right: 8%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.22) 0%, transparent 70%);
    filter: blur(40px);
    animation: epz-sb-drift 9s ease-in-out infinite alternate;
}
.epz-sb-orb--2 {
    width: 200px;
    height: 200px;
    bottom: -40px;
    left: 5%;
    background: radial-gradient(circle, rgba(255, 107, 157, 0.14) 0%, transparent 70%);
    filter: blur(32px);
    animation: epz-sb-drift 11s ease-in-out 2s infinite alternate-reverse;
}
@keyframes epz-sb-drift {
    from { transform: translateY(0) scale(1);   }
    to   { transform: translateY(18px) scale(1.06); }
}

/* ── Inner layout: left copy + right stat ── */
.epz-sb-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    padding: 0 28px;
}

/* ── LEFT ── */
.epz-sb-left { flex: 1; min-width: 0; }

.epz-sb-eyebrow {
    font-family: 'Fredoka', 'Lato-Regular', sans-serif !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    letter-spacing: .14em !important;
    text-transform: uppercase !important;
    color: #a78bfa !important;
    margin: 0 0 12px !important;
    line-height: 1 !important;
    opacity: 0;
    animation: epz-sb-floatup .6s cubic-bezier(.22,.61,.36,1) .1s both;
}

.epz-sb-headline {
    font-family: 'Gochi Hand', 'Lato-Bold', sans-serif !important;
    font-size: clamp(1.9rem, 4vw, 3rem) !important;
    font-weight: 700 !important;
    line-height: 1.1 !important;
    letter-spacing: -.01em !important;
    margin: 0 0 14px !important;
    color: #f5f3ff;
    -webkit-text-fill-color: #f5f3ff;
    background: none;
    animation: epz-sb-floatup .7s cubic-bezier(.22,.61,.36,1) .2s both;
}

/* ── Highlighted words: animated pink→purple gradient ── */
.epz-sb-hl {
    background: linear-gradient(
        120deg,
        #ff6b9d 0%,
        #c44dff 35%,
        #b388ff 60%,
        #ff6b9d 100%
    ) !important;
    background-size: 250% auto !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
    display: inline-block !important;
    animation: epz-hl-flow 6s ease-in-out infinite !important;
}
@keyframes epz-hl-flow {
    0%   { background-position: 0%   center; }
    50%  { background-position: 100% center; }
    100% { background-position: 0%   center; }
}

/* ── Corner sparkles ── */
.epz-sb-sparks {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 3;
    overflow: visible;
}

/*
 * Each spark is a 4-pointed star built from two thin rectangles (::before + ::after),
 * one vertical, one horizontal, crossing at centre.
 * The glow comes from a drop-shadow filter.
 */
.epz-sb-spark {
    position: absolute;
    width: var(--sz, 14px);
    height: var(--sz, 14px);
    opacity: 0;
    animation: epz-spark-twinkle var(--dur, 3.5s) ease-in-out var(--delay, 0s) infinite;
}
.epz-sb-spark::before,
.epz-sb-spark::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    border-radius: 2px;
    background: var(--clr, #fff);
}
/* vertical arm */
.epz-sb-spark::before {
    width: 2px;
    height: 100%;
    transform: translate(-50%, -50%);
}
/* horizontal arm */
.epz-sb-spark::after {
    width: 100%;
    height: 2px;
    transform: translate(-50%, -50%);
}

/* ── top-right edge cluster ── */
.epz-sb-spark:nth-child(1) {
    top: -6px; right: 18%;
    --sz: 18px; --clr: #ff6b9d; --dur: 3.2s; --delay: 0s;
    filter: drop-shadow(0 0 4px #ff6b9d);
}
.epz-sb-spark:nth-child(2) {
    top: 12%; right: -5px;
    --sz: 12px; --clr: #b388ff; --dur: 4.0s; --delay: 1.1s;
    filter: drop-shadow(0 0 3px #b388ff);
}
.epz-sb-spark:nth-child(3) {
    top: -4px; right: 8%;
    --sz: 9px;  --clr: #ffffff; --dur: 2.6s; --delay: 2.0s;
    filter: drop-shadow(0 0 3px #fff);
}
.epz-sb-spark:nth-child(4) {
    top: 22%; right: 2%;
    --sz: 14px; --clr: #c44dff; --dur: 3.8s; --delay: 0.5s;
    filter: drop-shadow(0 0 5px #c44dff);
}
.epz-sb-spark:nth-child(5) {
    top: -8px; right: 28%;
    --sz: 8px;  --clr: #ff6b9d; --dur: 2.9s; --delay: 1.7s;
    filter: drop-shadow(0 0 2px #ff6b9d);
}

/* ── bottom-left edge cluster ── */
.epz-sb-spark:nth-child(6) {
    bottom: -6px; left: 18%;
    --sz: 18px; --clr: #b388ff; --dur: 3.5s; --delay: 0.8s;
    filter: drop-shadow(0 0 4px #b388ff);
}
.epz-sb-spark:nth-child(7) {
    bottom: 14%; left: -5px;
    --sz: 12px; --clr: #ff6b9d; --dur: 4.2s; --delay: 0.2s;
    filter: drop-shadow(0 0 3px #ff6b9d);
}
.epz-sb-spark:nth-child(8) {
    bottom: -4px; left: 8%;
    --sz: 9px;  --clr: #ffffff; --dur: 2.7s; --delay: 1.4s;
    filter: drop-shadow(0 0 3px #fff);
}
.epz-sb-spark:nth-child(9) {
    bottom: 24%; left: 2%;
    --sz: 14px; --clr: #c44dff; --dur: 3.6s; --delay: 2.3s;
    filter: drop-shadow(0 0 5px #c44dff);
}
.epz-sb-spark:nth-child(10) {
    bottom: -8px; left: 28%;
    --sz: 8px;  --clr: #ff6b9d; --dur: 3.1s; --delay: 0.6s;
    filter: drop-shadow(0 0 2px #ff6b9d);
}

@keyframes epz-spark-twinkle {
    0%   { opacity: 0;   transform: scale(0.3) rotate(0deg);   }
    20%  { opacity: 1;   transform: scale(1.0) rotate(20deg);  }
    50%  { opacity: 0.5; transform: scale(0.7) rotate(-15deg); }
    80%  { opacity: 1;   transform: scale(1.1) rotate(10deg);  }
    100% { opacity: 0;   transform: scale(0.3) rotate(0deg);   }
}

.epz-sb-subline {
    font-family: 'Fredoka', 'Lato-Regular', sans-serif !important;
    font-size: 13px !important;
    color: #a394c7 !important;
    margin: 0 !important;
    line-height: 1.6 !important;
    max-width: 400px;
    opacity: 0;
    animation: epz-sb-floatup .7s cubic-bezier(.22,.61,.36,1) .35s both;
}

@keyframes epz-sb-floatup {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: translateY(0);    }
}

/* ── RIGHT: stat ── */
.epz-sb-right {
    flex-shrink: 0;
    text-align: right;
    opacity: 0;
    animation: epz-sb-floatup .7s cubic-bezier(.22,.61,.36,1) .45s both;
}

.epz-sb-stat-num {
    display: block;
    font-family: 'Lato-Bold', sans-serif;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    letter-spacing: -.03em;
    line-height: 1;
    color: #f5f3ff;
    /* Subtle purple glow on the number */
    text-shadow: 0 0 28px rgba(167, 139, 250, 0.4);
}

.epz-sb-stat-label {
    display: block;
    font-family: 'Fredoka', 'Lato-Regular', sans-serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    margin-top: 7px;
    width: 150px;
    text-align: center;
    word-wrap: break-word;
    background: linear-gradient(
        120deg,
        #ff6b9d 0%,
        #c44dff 35%,
        #b388ff 60%,
        #ff6b9d 100%
    );
    background-size: 250% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: epz-hl-flow 6s ease-in-out infinite;
}

/* ── Category pills section ── */
.epz-sb-cats {
    position: relative;
    z-index: 1;
    margin-top: 28px;
    padding: 20px 28px;
    border-top: 1px solid rgba(162, 139, 212, 0.14);
    /* subtle inner glow at the divider */
    background: linear-gradient(to bottom, rgba(124,58,237,.04) 0%, transparent 100%);
}

.epz-sb-cats-eyebrow {
    font-family: 'Fredoka', 'Lato-Regular', sans-serif !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    letter-spacing: .16em !important;
    text-transform: uppercase !important;
    color: #FF4FA3 !important;
    margin: 0 0 12px !important;
}

/* ── Pills ── */
.epz-sb-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.epz-sb-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 15px;
    border-radius: 999px;
    /* Glass pill — same language as .elizapop-category-shortcut */
    background: rgba(162, 139, 212, 0.10);
    border: 1px solid rgba(162, 139, 212, 0.22);
    color: #c4b5fd !important;
    font-family: 'Gochi Hand', 'Lato-Regular', sans-serif;
    font-size: 13px;
    text-decoration: none !important;
    white-space: nowrap;
    transition: background .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
    cursor: pointer;
}

.epz-sb-pill:hover,
.epz-sb-pill:focus {
    background: rgba(162, 139, 212, 0.22);
    border-color: rgba(162, 139, 212, 0.5);
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 4px 14px rgba(162, 139, 212, 0.20);
    color: #f5f3ff !important;
    text-decoration: none !important;
}

/* Active pill */
.epz-sb-pill--active {
    background: rgba(124, 58, 237, 0.25);
    border-color: rgba(167, 139, 250, 0.50);
    color: #f5f3ff !important;
    box-shadow: 0 0 0 1px rgba(167,139,250,.18) inset;
}
.epz-sb-pill--active:hover {
    background: rgba(124, 58, 237, 0.35);
}

/* Sale pill: amber accent */
.epz-sb-pill--sale {
    background: rgba(240, 165, 0, 0.12);
    border-color: rgba(240, 165, 0, 0.40);
    color: #fcd34d !important;
}
.epz-sb-pill--sale:hover {
    background: rgba(240, 165, 0, 0.22);
    border-color: rgba(240, 165, 0, 0.60);
    color: #fde68a !important;
    box-shadow: 0 4px 14px rgba(240, 165, 0, 0.18);
}

.epz-sb-pill-emoji { font-style: normal; }

/* ── Pill stagger-in ── */
.epz-sb-pills .epz-sb-pill {
    opacity: 0;
    animation: epz-sb-pill-pop .35s cubic-bezier(.34,1.56,.64,1) both;
}
/* Each pill gets a staggered delay via nth-child */
.epz-sb-pills .epz-sb-pill:nth-child(1)  { animation-delay: .50s; }
.epz-sb-pills .epz-sb-pill:nth-child(2)  { animation-delay: .56s; }
.epz-sb-pills .epz-sb-pill:nth-child(3)  { animation-delay: .62s; }
.epz-sb-pills .epz-sb-pill:nth-child(4)  { animation-delay: .68s; }
.epz-sb-pills .epz-sb-pill:nth-child(5)  { animation-delay: .74s; }
.epz-sb-pills .epz-sb-pill:nth-child(6)  { animation-delay: .80s; }
.epz-sb-pills .epz-sb-pill:nth-child(7)  { animation-delay: .86s; }
.epz-sb-pills .epz-sb-pill:nth-child(8)  { animation-delay: .92s; }
.epz-sb-pills .epz-sb-pill:nth-child(9)  { animation-delay: .98s; }
.epz-sb-pills .epz-sb-pill:nth-child(10) { animation-delay: 1.04s; }
.epz-sb-pills .epz-sb-pill:nth-child(11) { animation-delay: 1.10s; }
.epz-sb-pills .epz-sb-pill:nth-child(12) { animation-delay: 1.16s; }
.epz-sb-pills .epz-sb-pill:nth-child(13) { animation-delay: 1.22s; }
.epz-sb-pills .epz-sb-pill:nth-child(14) { animation-delay: 1.28s; }
.epz-sb-pills .epz-sb-pill:nth-child(15) { animation-delay: 1.34s; }
.epz-sb-pills .epz-sb-pill:nth-child(n+16) { animation-delay: 1.40s; }

@keyframes epz-sb-pill-pop {
    from { opacity: 0; transform: scale(.7) translateY(6px); }
    to   { opacity: 1; transform: scale(1) translateY(0);    }
}

/* ─────────────────────────────────────────────────────────────
   RESPONSIVE  —  tablet (≤768px)
   Layout: eyebrow → headline → subline → stat row → pills
   Stat moves into a compact inline row below the copy.
   Gradient highlights + stat-label gradient kept — just no
   entrance animations (saves jank on low-end devices).
───────────────────────────────────────────────────────────── */
@media (max-width: 768px) {

    /* Container */
    .epz-sb {
        padding: 24px 0 0 !important;
        border-radius: 16px !important;
        margin: 0 0 0 0 !important;
    }

    /* Stack copy + stat vertically */
    .epz-sb-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 0 20px;
    }

    /* Left copy: full width */
    .epz-sb-left { width: 100%; }

    .epz-sb-eyebrow {
        font-size: 10px !important;
        margin: 0 0 10px !important;
        opacity: 1 !important;
        animation: none !important;
        transform: none !important;
    }

    .epz-sb-headline {
        font-size: clamp(1.75rem, 7vw, 2.4rem) !important;
        line-height: 1.15 !important;
        margin: 0 0 10px !important;
        /* keep white base — highlights handle their own gradient */
        animation: none !important;
        color: #f5f3ff !important;
        -webkit-text-fill-color: #f5f3ff !important;
        background: none !important;
        opacity: 1 !important;
    }

    /* Gradient highlights stay — but no animation (perf) */
    .epz-sb-hl {
        animation: none !important;
        /* static gradient snapshot at mid-point */
        background: linear-gradient(120deg, #ff6b9d 0%, #c44dff 50%, #b388ff 100%) !important;
        background-size: 100% auto !important;
        -webkit-background-clip: text !important;
        background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
        color: transparent !important;
        display: inline-block !important;
    }

    .epz-sb-subline {
        font-size: 12px !important;
        max-width: 100% !important;
        opacity: 1 !important;
        animation: none !important;
        transform: none !important;
        margin: 0 0 16px !important;
    }

    /* Stat: stacked 2-line block under copy */
    .epz-sb-right {
        width: 100%;
        display: block;
        text-align: left;
        opacity: 1 !important;
        animation: none !important;
        transform: none !important;
        padding: 14px 0 6px;
        border-top: 1px solid rgba(162, 139, 212, 0.12);
    }

    .epz-sb-stat { display: block; }

    .epz-sb-stat-num {
        font-size: 2.4rem !important;
        display: block !important;
        text-align: center !important;
    }

    .epz-sb-stat-label {
        font-size: 13px !important;
        width: auto !important;
        line-height: 1.3 !important;
        display: block !important;
        /* keep gradient, drop animation */
        animation: none !important;
        background: linear-gradient(120deg, #ff6b9d 0%, #c44dff 50%, #b388ff 100%) !important;
        background-size: 100% auto !important;
        -webkit-background-clip: text !important;
        background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
         text-align: center !important;
    }

    /* Pills */
    .epz-sb-cats { padding: 14px 20px 18px; }
    .epz-sb-cats-eyebrow { font-size: 9px !important; }
    .epz-sb-pills { gap: 6px; }
    .epz-sb-pills .epz-sb-pill {
        opacity: 1 !important;
        animation: none !important;
        transform: none !important;
        font-size: 12px;
        padding: 5px 13px;
    }

    /* Orbs: keep 1 subtle orb, hide 2nd */
    .epz-sb-orb--1 {
        width: 180px; height: 180px;
        top: -40px; right: -20px;
        filter: blur(40px);
        animation: none !important;
    }
    .epz-sb-orb--2 { display: none; }

    /* Sparkles: hide on mobile — too noisy on small screens */
    .epz-sb-sparks { display: none; }
}

/* ─────────────────────────────────────────────────────────────
   RESPONSIVE  —  small phones (≤400px)
───────────────────────────────────────────────────────────── */
@media (max-width: 400px) {
    .epz-sb { border-radius: 12px !important; }
    .epz-sb-headline { font-size: 1.6rem !important; }
    .epz-sb-stat-num { font-size: 2rem !important; }
    .epz-sb-pill { font-size: 11px !important; padding: 4px 11px !important; }
}

/* ─────────────────────────────────────────────────────────────
   REDUCED MOTION
───────────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    .epz-sb-eyebrow,
    .epz-sb-subline,
    .epz-sb-right,
    .epz-sb-pills .epz-sb-pill {
        opacity: 1 !important;
        animation: none !important;
        transform: none !important;
    }
    .epz-sb-headline {
        animation: none !important;
        color: #f5f3ff !important;
        -webkit-text-fill-color: #f5f3ff !important;
        background: none !important;
        opacity: 1 !important;
    }
    .epz-sb-hl {
        animation: none !important;
        background: linear-gradient(120deg, #ff6b9d, #c44dff, #b388ff) !important;
        background-size: 100% auto !important;
        -webkit-background-clip: text !important;
        background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
    }
    .epz-sb-stat-label {
        animation: none !important;
        background: linear-gradient(120deg, #ff6b9d, #c44dff, #b388ff) !important;
        background-size: 100% auto !important;
        -webkit-background-clip: text !important;
        background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
    }
    .epz-sb-orb { animation: none !important; }
    .epz-sb-sparks { display: none; }
}


/* =============================================================
   EPZ Shop Banner  —  epz-shop-banner.css
   Matches ElizaPopZone Dark Glassmorphic Theme Exactly.
   ============================================================= */

/* ── Main Glassmorphic Container ── */
.epz-sb {
    position: relative;
    overflow: hidden;
    padding: 40px;
    margin: 0px 0px 0px 5px !important;
    
    /* Strict Brand Glassmorphism */
    background: rgba(22, 18, 34, 0.82);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(162, 139, 212, 0.18);
    border-radius: 20px;
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(162, 139, 212, 0.08) inset;
}

.Shop-hero section {
    margin: 0px 0px 0px 5px !important;
    padding-bottom: 15px;
}

.Shop-hero {
    padding-bottom: 10px;
}

/* ── Eyebrow: Bright Cherry Pink Accent ── */
.epz-sb-eyebrow {
    display: inline-block;
    font-size: 0.88rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    color: #ff4b82; /* Cherry Pink breakdown pop */
    margin-bottom: 14px;
    opacity: 0;
    transform: translateY(-10px);
    animation: epzSbFadeDown 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* ── Base Headline adjustments (second block — defers to first) ── */
.epz-sb-headline {
    position: relative;
    z-index: 2;
}

/* Legacy alias kept for back-compat — .epz-sb-hl is the live class */
.epz-gradient-text {
    background: linear-gradient(120deg, #ff6b9d 0%, #c44dff 35%, #b388ff 60%, #ff6b9d 100%);
    background-size: 250% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    display: inline-block;
    animation: epz-hl-flow 6s ease-in-out infinite;
}

/* ── Ambient Background Clouds (Deep Layer Below Glass) ── */
.epz-sb-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15; /* Highly transparent so it feels like depth, not a solid fill */
    pointer-events: none;
    z-index: 0;
}

/* Orb 1: Soft Signature Purple aura shifting gently */
.epz-sb-orb--1 {
    top: -20%;
    right: 10%;
    width: 350px;
    height: 350px;
    background: #a28bd4;
    animation: epzOrbFloatOne 25s ease-in-out infinite alternate;
}

/* Orb 2: Low-light soft pink glow filling space from the bottom-left */
.epz-sb-orb--2 {
    bottom: -30%;
    left: 15%;
    width: 400px;
    height: 400px;
    background: #ff4b82;
    animation: epzOrbFloatTwo 30s ease-in-out infinite alternate;
}

/* Layout Core Wrapper */
.epz-sb-inner {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

/* ── ANIMATION KEYFRAMES ── */

@keyframes epzSbFadeDown {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes epzGradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes epzOrbFloatOne {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(30px, 20px) scale(1.1); }
}

@keyframes epzOrbFloatTwo {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-30px, -20px) scale(1.05); }
}



/* =============================================================
   EPZ Shop SEO Footer Block
   ============================================================= */

.epz-sf {
    position: relative;
    overflow: hidden;
    margin-top: 32px;
    border-radius: 18px;
    background: rgba(18, 14, 28, 0.82);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(162, 139, 212, 0.16);
    box-shadow: 0 4px 40px rgba(0,0,0,0.50), 0 0 0 1px rgba(162,139,212,0.06) inset, 0 1px 0 rgba(255,255,255,0.04) inset;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .6s cubic-bezier(.22,.61,.36,1), transform .6s cubic-bezier(.22,.61,.36,1);
}
.epz-sf.epz-sf--visible {
    opacity: 1;
    transform: translateY(0);
}
.epz-sf-shimmer-bar {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(167,139,250,0.5) 30%, rgba(255,107,157,0.4) 60%, transparent 100%);
    background-size: 200% 100%;
    animation: epz-sf-bar-slide 4s linear infinite;
}
@keyframes epz-sf-bar-slide {
    from { background-position: 200% 0; }
    to   { background-position: -200% 0; }
}
.epz-sf-orb { position: absolute; border-radius: 50%; pointer-events: none; z-index: 0; }
.epz-sf-orb--1 { width: 280px; height: 280px; top: -60px; right: 5%; background: radial-gradient(circle, rgba(124,58,237,0.18) 0%, transparent 70%); filter: blur(36px); animation: epz-sf-drift 10s ease-in-out infinite alternate; }
.epz-sf-orb--2 { width: 160px; height: 160px; bottom: -30px; left: 8%; background: radial-gradient(circle, rgba(255,107,157,0.12) 0%, transparent 70%); filter: blur(28px); animation: epz-sf-drift 13s ease-in-out 1.5s infinite alternate-reverse; }
@keyframes epz-sf-drift { from { transform: translateY(0) scale(1); } to { transform: translateY(16px) scale(1.07); } }

.epz-sf-inner { position: relative; z-index: 1; padding: 28px 30px 24px; }

.epz-sf-heading {
    font-family: 'Gochi Hand', 'Lato-Bold', sans-serif !important;
    font-size: clamp(1.1rem, 2.2vw, 1.4rem) !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
    margin: 0 0 14px !important;
    background: linear-gradient(90deg, #f5f3ff 0%, #c4b5fd 50%, #f5f3ff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: epz-sf-heading-shimmer 2.5s ease .3s 1 forwards;
}
@keyframes epz-sf-heading-shimmer { from { background-position: 0% center; } to { background-position: 200% center; } }

.epz-sf-body {
    font-family: 'Fredoka', 'Lato-Regular', sans-serif !important;
    font-size: 14px !important;
    line-height: 1.75 !important;
    color: #9580b8 !important;
    margin: 0 0 20px !important;
    max-width: 820px;
}

.epz-sf-tags { display: flex; flex-wrap: wrap; gap: 8px; }

.epz-sf-tag {
    display: inline-block;
    padding: 5px 13px;
    border-radius: 8px;
    background: rgba(162,139,212,0.08);
    border: 1px solid rgba(162,139,212,0.18);
    color: #8b7ab8 !important;
    font-family: 'Fredoka', 'Lato-Regular', sans-serif;
    font-size: 12px;
    cursor: default;
    opacity: 0;
    transform: scale(.88) translateY(5px);
    transition: background .2s, border-color .2s, color .2s;
}
.epz-sf-tag.epz-sf--tag-in {
    opacity: 1;
    transform: scale(1) translateY(0);
    transition: background .2s, border-color .2s, color .2s, opacity .3s cubic-bezier(.34,1.56,.64,1), transform .3s cubic-bezier(.34,1.56,.64,1);
}
.epz-sf-tag:hover { background: rgba(162,139,212,0.18); border-color: rgba(162,139,212,0.38); color: #c4b5fd !important; transform: translateY(-2px) scale(1.04); }

@media (max-width: 768px) {
    .epz-sf { border-radius: 12px; opacity: 1 !important; transform: none !important; transition: none !important; }
    .epz-sf-inner { padding: 22px 18px 18px; }
    .epz-sf-orb--2 { display: none; }
    .epz-sf-heading { animation: none !important; background: none !important; -webkit-text-fill-color: #f5f3ff !important; }
    .epz-sf-tag { opacity: 1 !important; transform: none !important; }
}
@media (prefers-reduced-motion: reduce) {
    .epz-sf, .epz-sf-tag { opacity: 1 !important; transform: none !important; animation: none !important; }
    .epz-sf-heading { animation: none !important; background: none !important; -webkit-text-fill-color: #f5f3ff !important; }
    .epz-sf-shimmer-bar, .epz-sf-orb { animation: none !important; }
}