@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;700&family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&display=swap');

/* --- GOTHIC-FANTASY STYLE SYSTEM --- */
:root {
    --color-bg-dark: #050206;
    --color-obsidian: rgba(8, 4, 8, 0.25);
    --color-purple-neon: #ab47bc;
    --color-purple-glow: rgba(171, 71, 188, 0.45);
    --color-purple-border: #3a153a;
    --color-gold-antique: #e5c158;
    --color-gold-glow: rgba(229, 193, 88, 0.35);
    --color-text-light: #e0d5e2;
    --color-text-muted: #ae96b7;
    --font-display: 'Cinzel', serif;
    --font-body: 'Cormorant Garamond', serif;
}

/* Base resets inside the willow shortcode context to prevent theme clashes */
.willow-wrapper-main {
    background-color: var(--color-bg-dark);
    color: var(--color-text-light);
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    width: 100%;
}

/* --- THE 100VH IMMERSIVE HERO VIEW --- */
.willow-hero-section {
    position: relative;
    min-height: 100vh;
    width: 100%;
    background-image: url('../img/willow-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px 40px;
    box-sizing: border-box;
}

/* Atmospheric vignette mask */
.willow-hero-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle, rgba(5, 2, 6, 0.2) 0%, rgba(5, 2, 6, 0.10) 90%);
    pointer-events: none;
    z-index: 1;
}

/* Ensure contents sit above vignette */
.willow-hero-header,
.willow-hero-body,
.willow-hero-footer {
    position: relative;
    z-index: 2;
}
div+br {
    display: none;
}
/* --- HEADER NAVIGATION --- */
.willow-hero-header {
    display: flex;
    justify-content: end;
    align-items: center;
    width: 100%;
    margin-bottom: 20px;
}

.willow-profile-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.willow-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid var(--color-gold-antique);
    box-shadow: 0 0 10px rgba(229, 193, 88, 0.4);
    object-fit: cover;
}

.willow-user-welcome {
    font-family: var(--font-display);
    font-size: 0.8em;
    letter-spacing: 2px;
    color: var(--color-text-light);
}

.willow-user-welcome span {
    color: var(--color-gold-antique);
}

/* HOW IT WORKS BUTTON */
.willow-how-btn {
    font-family: var(--font-display);
    font-size: 0.75em;
    letter-spacing: 2px;
    background: transparent;
    border: 1px solid var(--color-purple-border);
    color: #f3d3ff;
    padding: 8px 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    background: #380655;
}

.willow-how-btn::before {
    content: '✦ ';
    color: var(--color-purple-neon);
}

.willow-how-btn:hover {
    border-color: var(--color-purple-neon);
    color: var(--color-gold-antique);
    box-shadow: 0 0 12px var(--color-purple-glow);
    text-shadow: 0 0 5px rgba(229, 193, 88, 0.5);
}

/* --- HERO CORE GRID --- */
.willow-hero-body {
    flex-grow: 1;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1300px;
    width: 100%;
    margin: auto;
}

/* --- LEFT SIDE: TITLE & INTERACTIVE RITUAL CARD --- */
.willow-left-pane {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* MAIN HEADLINE */
.willow-main-title {
    font-family: var(--font-display);
    font-size: 3.5em;
    line-height: 1.0;
    margin: 0;
    letter-spacing: 8px;
    text-align: left;
    background: linear-gradient(to bottom, #ffffff 20%, #e0d5e2 55%, #ab47bc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: titleBreathingGlow 5s infinite ease-in-out;
}

.willow-main-title span {
    display: block;
    font-size: 0.55em;
    letter-spacing: 12px;
    background: linear-gradient(to right, #f3d980 0%, #e5c158 50%, #c59f4e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 5px;
}

.willow-title-divider {
    width: 150px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold-antique), transparent);
    margin: 15px 0 20px 0;
    position: relative;
}

.willow-title-divider::after {
    content: '✦';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    color: var(--color-gold-antique);
    font-size: 10px;
    text-shadow: 0 0 5px var(--color-gold-glow);
}

.willow-main-subtitle {
    font-size: 1.15em;
    color: var(--color-text-muted);
    font-style: italic;
    margin: 0 0 35px 0;
    letter-spacing: 1px;
}

/* --- THE ORNAMENTAL GOTHIC FRAME CARD --- */
.gothic-panel {
    background: var(--color-obsidian);
    border: 1px solid var(--color-purple-border);
    padding: 35px 20px;
    position: relative;
    box-shadow: inset 0 0 25px rgba(0, 0, 0, 0.95), 0 10px 30px rgba(0, 0, 0, 0.7);
    border-radius: 4px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

/* Thin illuminated border aura */
.gothic-panel.glow-purple {
    box-shadow: inset 0 0 25px rgba(0, 0, 0, 0.95), 0 10px 40px rgba(0, 0, 0, 0.7), 0 0 15px rgba(171, 71, 188, 0.15);
}

/* Asymmetric corner ornaments (Unicode or inline SVG overlays) */
.gothic-corner {
    position: absolute;
    width: 25px;
    height: 25px;
    pointer-events: none;
    z-index: 5;
    opacity: 0.85;
}

/* Inline SVG Corner Designs - Victorian Filigree Antique Gold */
.gothic-corner-tl {
    top: 6px; left: 6px;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 2h20v1.5H3.5V22H2V2z' fill='%23e5c158'/%3E%3Cpath d='M5 5h10v1H6v9H5V5z' fill='%23ab47bc'/%3E%3Ccircle cx='9' cy='9' r='1' fill='%23e5c158'/%3E%3C/svg%3E");
}
.gothic-corner-tr {
    top: 6px; right: 6px;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M22 2H2v1.5h18.5V22H22V2z' fill='%23e5c158'/%3E%3Cpath d='M19 5H9v1h9v9h1V5z' fill='%23ab47bc'/%3E%3Ccircle cx='15' cy='9' r='1' fill='%23e5c158'/%3E%3C/svg%3E");
}
.gothic-corner-bl {
    bottom: 6px; left: 6px;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 22h20v-1.5H3.5V2H2v20z' fill='%23e5c158'/%3E%3Cpath d='M5 19h10v-1H6V9H5v10z' fill='%23ab47bc'/%3E%3Ccircle cx='9' cy='15' r='1' fill='%23e5c158'/%3E%3C/svg%3E");
}
.gothic-corner-br {
    bottom: 6px; right: 6px;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M22 22H2v-1.5h18.5V2H22v20z' fill='%23e5c158'/%3E%3Cpath d='M19 19H9v-1h9V9h1v10z' fill='%23ab47bc'/%3E%3Ccircle cx='15' cy='15' r='1' fill='%23e5c158'/%3E%3C/svg%3E");
}

/* --- THE INPUT FORM ELEMENTS --- */
/* --- THE INPUT FORM ELEMENTS --- */
.willow-form-row {
    margin-bottom: 24px;
    position: relative;
}

.willow-form-row label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 0.85em;
    letter-spacing: 2.5px;
    color: var(--color-text-light);
    margin-bottom: 10px;
    font-weight: 500;
    text-transform: uppercase;
}

.willow-form-row label span {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.9), 0 0 16px rgba(208, 92, 227, 0.9);
}

/* Inputs & Textareas with Jack Rugile Glowing Pulse effect */
.willow-input,
.willow-textarea {
    width: 100%;
    background: rgba(10, 4, 15, 0.88);
    border: 1px solid rgba(171, 71, 188, 0.45);
    color: #f3e5f5;
    padding: 16px 20px;
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 1.18em;
    box-shadow: 0 0 12px rgba(171, 71, 188, 0.25), inset 0 0 10px rgba(10, 4, 15, 0.95);
    box-sizing: border-box;
    transition: all 0.35s ease;
}

.willow-input::placeholder,
.willow-textarea::placeholder {
    color: rgba(174, 150, 183, 0.65);
    font-style: italic;
    font-family: var(--font-body);
}

.willow-textarea {
    resize: none;
    min-height: 120px;
}

/* Jack Rugile Pulsing Glow Focus State (Input fields only) */
.willow-input:focus,
.willow-textarea:focus {
    outline: none !important;
    background: rgba(15, 6, 22, 0.95);
    -webkit-animation: jackRugileGlow 800ms ease-out infinite alternate;
    -moz-animation: jackRugileGlow 800ms ease-out infinite alternate;
    animation: jackRugileGlow 800ms ease-out infinite alternate;
}

@keyframes jackRugileGlow {
    0% {
        border-color: rgba(171, 71, 188, 0.55);
        box-shadow: 0 0 8px rgba(171, 71, 188, 0.4), inset 0 0 6px rgba(171, 71, 188, 0.2);
    }
    100% {
        border-color: rgba(245, 160, 255, 0.95);
        box-shadow: 0 0 25px rgba(208, 92, 227, 0.85), inset 0 0 12px rgba(255, 255, 255, 0.35), 0 0 35px rgba(171, 71, 188, 0.5);
    }
}

/* Character Counter style */
.char-counter {
    position: absolute;
    bottom: -22px;
    right: 5px;
    font-size: 0.82em;
    color: var(--color-text-muted);
    font-family: var(--font-body);
    font-style: italic;
}

/* --- PREMIUM RITUAL BUTTON (TaniaDou witty-rabbit-59 Gold & Purple Foggy Effect) --- */
.willow-submit-wrap {
    margin-top: 32px;
    position: relative;
    display: flex;
    justify-content: center;
}

.willow-submit-btn {
    width: 100%;
    position: relative;
    padding: 18px 28px;
    /* Translucent Gold & Purple-fog gradient background */
    background: linear-gradient(135deg, rgba(55, 22, 75, 0.5) 0%, rgba(22, 7, 34, 0.65) 50%, rgba(45, 18, 58, 0.45) 100%) !important;
    backdrop-filter: blur(14px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(14px) saturate(180%) !important;
    color: #f3e5f5;
    font-family: var(--font-display);
    font-size: 1.22em;
    letter-spacing: 4px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    text-transform: uppercase;
    z-index: 1;
    overflow: hidden;
    /* Gold & Purple foggy outer glow & translucent inner rim */
    box-shadow: 0 8px 32px 0 rgba(74, 14, 108, 0.5), inset 0 0 20px rgba(229, 193, 88, 0.25), inset 0 0 12px rgba(199, 125, 255, 0.3) !important;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.willow-submit-btn svg {
    fill: #f3d980;
    width: 22px;
    height: 22px;
    filter: drop-shadow(0 0 8px rgba(243, 217, 128, 0.85));
    transition: transform 0.35s ease, fill 0.35s ease, filter 0.35s ease;
}

/* Luminous Masked Gold & Purple Gradient Foggy Border Effect via ::before */
.willow-submit-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 10px;
    padding: 1.5px;
    background: linear-gradient(135deg, #e5c158 0%, #f3d980 22%, #c77dff 50%, #7b2cbf 78%, #e5c158 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    transition: all 0.35s ease;
}

/* Gold & Purple Foggy Radial Gradient Aura Core via ::after */
.willow-submit-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(229, 193, 88, 0.45) 0%, rgba(199, 125, 255, 0.35) 45%, rgba(123, 44, 191, 0.15) 75%, transparent 100%);
    opacity: 0.6;
    z-index: -1;
    filter: blur(4px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

/* Hover & Active States for Gold & Purple Foggy Effect */
.willow-submit-btn:hover {
    color: #ffffff;
    background: linear-gradient(135deg, rgba(75, 28, 100, 0.65) 0%, rgba(32, 10, 48, 0.78) 50%, rgba(60, 22, 85, 0.6) 100%) !important;
    text-shadow: 0 0 12px #ffffff, 0 0 20px #f3d980, 0 0 30px #c77dff;
    box-shadow: 0 12px 40px 0 rgba(199, 125, 255, 0.55), 0 0 25px rgba(229, 193, 88, 0.5), inset 0 0 25px rgba(243, 217, 128, 0.35) !important;
    transform: translateY(-2px);
}

.willow-submit-btn:hover::before {
    background: linear-gradient(135deg, #ffffff 0%, #f3d980 25%, #e0aaff 55%, #9d4edd 80%, #ffffff 100%);
}

.willow-submit-btn:hover::after {
    opacity: 1;
    filter: blur(2px);
}

.willow-submit-btn:hover svg {
    fill: #ffffff;
    transform: scale(1.15) rotate(-5deg);
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.95)) drop-shadow(0 0 8px rgba(243, 217, 128, 0.9));
}

.willow-submit-btn:active {
    transform: translateY(1px);
    box-shadow: 0 4px 20px 0 rgba(229, 193, 88, 0.5) !important;
}

.willow-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    box-shadow: none !important;
}

/* Lock note styling */
.willow-lock-note {
    font-size: 0.75em;
    color: var(--color-text-muted);
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.willow-lock-note svg {
    width: 12px;
    height: 12px;
    fill: currentColor;
}

/* --- THE SUBMITTED PANEL (LANTERN ANSWERS) --- */
.willow-response-panel {
    display: none; /* Controlled by JS submission */
    animation: bloomFadeIn 1s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

/* If already submitted on load */
.willow-response-panel.active {
    display: block;
}

/* Ornate title for the response */
.willow-response-header {
    font-family: var(--font-display);
    font-size: 1.1em;
    letter-spacing: 3px;
    color: var(--color-gold-antique);
    text-align: center;
    border-bottom: 1px solid var(--color-purple-border);
    padding-bottom: 15px;
    margin-bottom: 25px;
    text-shadow: 0 0 8px var(--color-gold-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Flame animation inside response panel */
.willow-flame-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
}

.willow-flame-circle {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    border: 1px solid var(--color-purple-border);
    background: radial-gradient(circle, rgba(171, 71, 188, 0.15) 0%, transparent 70%);
    box-shadow: 0 0 15px rgba(171, 71, 188, 0.2), inset 0 0 10px rgba(171, 71, 188, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.willow-flame-icon {
    width: 35px;
    height: 35px;
    fill: var(--color-purple-neon);
    filter: drop-shadow(0 0 10px var(--color-purple-glow));
    animation: flameFlicker 3s infinite ease-in-out;
}
.willow-countdown-timer-live {
    font-size: 40px;
    font-family: 'Cinzel';
}
/* Quote of the Answer */
.willow-quote-block {
    text-align: center;
    font-size: 1.35em;
    font-style: italic;
    color: #fff;
    margin: 20px 0 35px 0;
    line-height: 1.5;
    position: relative;
    padding: 0 20px;
}

.willow-quote-block::before,
.willow-quote-block::after {
    content: '“';
    font-size: 2.5em;
    color: var(--color-purple-border);
    position: absolute;
    line-height: 1;
}

.willow-quote-block::before {
    left: -10px;
    top: -15px;
}

.willow-quote-block::after {
    content: '”';
    right: -10px;
    bottom: -35px;
}

/* --- THE SPLIT SUBMITTED TIMER SECTION --- */
.willow-submitted-timer-grid {
    display: grid;
    grid-template-columns: 1fr;
    border-top: 1px solid var(--color-purple-border);
    padding-top: 25px;
    margin-top: 25px;
    text-align: center;
}

.willow-timer-label {
    font-family: var(--font-display);
    font-size: 0.8em;
    letter-spacing: 2px;
    color: var(--color-text-muted);
    margin-bottom: 8px;
}

.willow-timer-countdown {
    font-family: var(--font-display);
    font-size: 2.2em;
    font-weight: 700;
    color: var(--color-purple-neon);
    letter-spacing: 3px;
    text-shadow: 0 0 15px var(--color-purple-glow);
    margin-bottom: 5px;
}

.willow-timer-caption {
    font-size: 1em;
    color: var(--color-text-muted);
}

/* --- RIGHT SIDE: FLOATING LANTERN & STATS HEADER --- */
.willow-right-pane {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.willow-right-pane-wrapper {
    width: 320px;
    animation: idleFloat 6s infinite ease-in-out;
}

/* Floating dynamic count card on right */
.willow-floating-count-box {
    text-align: center;
    border: 1px solid rgba(229, 193, 88, 0.25);
    background: rgba(10, 4, 10, 0.85);
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.95), 0 0 20px rgba(171, 71, 188, 0.08);
}

.willow-count-header {
    font-family: var(--font-display);
    font-size: 0.8em;
    letter-spacing: 3px;
    color: var(--color-text-muted);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.willow-count-val {
    font-family: var(--font-display);
    font-size: 2.8em;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.1;
    margin-bottom: 10px;
    background: linear-gradient(to bottom, #ffffff 20%, #e0d5e2 55%, #ab47bc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: titleBreathingGlow 5s infinite ease-in-out;
}

.willow-count-lbl {
    font-family: var(--font-display);
    font-size: 0.8em;
    letter-spacing: 4px;
    color: var(--color-gold-antique);
    text-transform: uppercase;
    text-shadow: 0 0 5px var(--color-gold-glow);
}

/* --- HERO FOOTER SCROLL INDICATOR --- */
.willow-hero-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 20px;
}

/* Invisible until submitted */
.willow-scroll-guide {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.willow-scroll-guide.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.willow-scroll-guide span {
    font-family: var(--font-display);
    font-size: 0.65em;
    letter-spacing: 3px;
    color: #fff;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.willow-scroll-guide svg {
    width: 20px;
    height: 20px;
    fill: var(--color-purple-neon);
    animation: bounceDown 2s infinite ease-in-out;
}

/* --- THE SUB-SECTIONS CONTAINER (BELOW THE FOLD) --- */
.willow-subsections-container {
    display: none;
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    padding: 80px 0;
    box-sizing: border-box;
    position: relative;
    z-index: 3;
}

/* If already submitted on load */
.willow-subsections-container.active {
    display: block;
}

/* Section Separators */
.willow-section-spacer {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-purple-border), transparent);
    margin: 40px auto;
    width: 80%;
    position: relative;
}

.willow-section-spacer::after {
    content: '✦';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    color: var(--color-purple-border);
    font-size: 11px;
}

/* --- 1. FEATURED WISH OF THE DAY CARD --- */
.willow-featured-card {
    background: linear-gradient(135deg, rgba(20, 8, 25, 0.65) 0%, rgba(8, 4, 8, 0.95) 100%);
    border: 1px dashed var(--color-gold-antique);
    padding: 40px 50px;
    box-shadow: 0 0 25px rgba(229, 193, 88, 0.05), inset 0 0 20px rgba(0, 0, 0, 0.9);
    text-align: center;
}

.featured-badge {
    font-family: var(--font-display);
    font-size: 0.75em;
    color: var(--color-gold-antique);
    font-weight: 500;
    letter-spacing: 3px;
    margin-bottom: 25px;
    text-shadow: 0 0 8px var(--color-gold-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.featured-text {
    font-size: 1.6em;
    font-style: italic;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.5;
}

.featured-author {
    font-family: var(--font-display);
    font-size: 0.8em;
    letter-spacing: 2px;
    color: var(--color-text-muted);
}

.featured-author span {
    color: var(--color-gold-antique);
}

/* --- 2. STATS SUMMARY DASHBOARD --- */
.willow-stats-summary-box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px auto;
}

.stats-col {
    background: var(--color-obsidian);
    border: 1px solid var(--color-purple-border);
    padding: 30px 20px;
    text-align: center;
    border-radius: 4px;
    box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.9), 0 5px 15px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.stats-col:hover {
    border-color: var(--color-purple-neon);
    box-shadow: 0 0 15px rgba(171, 71, 188, 0.15), inset 0 0 15px rgba(0, 0, 0, 0.9);
    transform: translateY(-2px);
}

.stats-val {
    display: block;
    font-family: var(--font-display);
    font-size: 2.2em;
    font-weight: 700;
    color: var(--color-purple-neon);
    margin-bottom: 8px;
    text-shadow: 0 0 12px var(--color-purple-glow);
}

.stats-lbl {
    display: block;
    font-family: var(--font-display);
    font-size: 0.75em;
    letter-spacing: 2px;
    color: var(--color-text-muted);
    text-transform: uppercase;
}

/* --- 3. WISH WALL GRID --- */
.willow-wall-section-standalone {
    margin-top: 40px;
}

.willow-wall-title {
    font-family: var(--font-display);
    font-size: 1.8em;
    letter-spacing: 4px;
    color: #fff;
    margin-bottom: 40px;
    text-align: center;
    text-shadow: 0 0 12px rgba(171, 71, 188, 0.3);
}

.willow-wishes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.willow-wish-card {
    background: var(--color-obsidian);
    border: 1px solid var(--color-purple-border);
    padding: 30px 25px;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5), inset 0 0 15px rgba(0, 0, 0, 0.95);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.willow-wish-card:hover {
    border-color: var(--color-purple-neon);
    box-shadow: 0 0 18px rgba(171, 71, 188, 0.2), 0 10px 20px rgba(0, 0, 0, 0.6);
    transform: translateY(-3px);
}

.wish-card-meta {
    font-size: 0.8em;
    color: var(--color-text-muted);
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(171, 71, 188, 0.15);
    padding-bottom: 12px;
}

.wish-card-author {
    font-family: var(--font-display);
    color: var(--color-gold-antique);
    letter-spacing: 1px;
}

.wish-card-text {
    margin: 0 0 20px 0;
    font-style: italic;
    color: var(--color-text-light);
    font-size: 1.05em;
    line-height: 1.5;
    flex-grow: 1;
}

/* Liking Button Styles */
.willow-like-btn {
    background: rgba(171, 71, 188, 0.05);
    border: 1px solid rgba(171, 71, 188, 0.2);
    color: var(--color-text-muted);
    cursor: pointer;
    font-family: var(--font-display);
    font-size: 0.7em;
    letter-spacing: 1.5px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border-radius: 3px;
    transition: all 0.3s ease;
    outline: none;
}

.willow-like-btn:hover {
    color: #ff1744;
    border-color: rgba(255, 23, 68, 0.4);
    background: rgba(255, 23, 68, 0.08);
    box-shadow: 0 0 10px rgba(255, 23, 68, 0.2);
}

.willow-like-btn svg {
    width: 12px;
    height: 12px;
    fill: currentColor;
    transition: transform 0.2s ease;
}

.willow-like-btn:hover svg {
    transform: scale(1.2);
}

.willow-like-btn.liked {
    color: #ff1744 !important;
    border-color: rgba(255, 23, 68, 0.5) !important;
    background: rgba(255, 23, 68, 0.1) !important;
    cursor: not-allowed;
}

.willow-like-btn.liked svg {
    animation: heartbeat 0.4s ease;
}

/* Empty Wall Notice */
.willow-wish-card.empty {
    grid-column: 1 / -1;
    text-align: center;
    justify-content: center;
    min-height: 120px;
    color: var(--color-text-muted);
}

/* --- THE COUNTDOWN STANDALONE BLOCK --- */
.willow-time-left-box {
    background: var(--color-obsidian);
    border: 1px solid var(--color-purple-border);
    padding: 30px 40px;
    max-width: 400px;
    margin: 20px auto;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5), inset 0 0 15px rgba(0, 0, 0, 0.95);
    border-radius: 4px;
}

.willow-time-left-box .timer-title {
    margin: 0 0 15px 0;
    color: var(--color-text-muted);
    font-family: var(--font-display);
    font-size: 0.75em;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.willow-countdown-timer-standalone {
    font-family: var(--font-display);
    font-size: 2.2em;
    font-weight: 700;
    color: var(--color-purple-neon);
    letter-spacing: 3px;
    text-shadow: 0 0 15px var(--color-purple-glow);
}

/* --- CUSTOM MODAL POPUP (HOW IT WORKS) --- */
.willow-modal {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: rgba(4, 2, 5, 0.88);
    z-index: 99999999 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    backdrop-filter: blur(8px);
}

.willow-modal.open {
    opacity: 1;
    visibility: visible;
}

.willow-modal-content {
    width: 90%;
    max-width: 900px;
    transform: scale(0.9);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    z-index: 99999999 !important;
}

.willow-modal.open .willow-modal-content {
    transform: scale(1);
}

.willow-modal-close {
    position: absolute;
    top: 25px;
    right: 30px;
    font-family: var(--font-display);
    font-size: 0.85em;
    color: var(--color-text-muted);
    background: rgba(20, 8, 25, 0.85);
    border: 1px solid var(--color-purple-border);
    padding: 6px 14px;
    border-radius: 4px;
    cursor: pointer;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    z-index: 100000000 !important;
    pointer-events: auto !important;
}

.willow-modal-close:hover {
    color: var(--color-gold-antique);
    border-color: var(--color-gold-antique);
    box-shadow: 0 0 12px var(--color-gold-glow);
}

/* Ritual Process Steps Grid */
.ritual-title {
    font-family: var(--font-display);
    font-size: 1.8em;
    letter-spacing: 4px;
    color: #fff;
    margin-bottom: 40px;
    text-align: center;
    text-shadow: 0 0 12px var(--color-purple-glow);
}

.ritual-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    text-align: center;
    margin: 20px 0;
}

.ritual-step-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Connecting arrows/lines between steps */
.ritual-step-item:not(:last-child)::after {
    content: '✦';
    position: absolute;
    top: 30px;
    right: -10px;
    color: var(--color-purple-border);
    font-size: 10px;
    z-index: 10;
}

.ritual-step-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid var(--color-purple-border);
    background: rgba(10, 4, 10, 0.9);
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    transition: all 0.3s ease;
}

.ritual-step-circle::before {
    content: attr(data-step);
    position: absolute;
    top: -8px;
    font-size: 0.6em;
    font-family: var(--font-display);
    color: var(--color-text-muted);
}

.ritual-step-circle svg {
    width: 25px;
    height: 25px;
    fill: var(--color-purple-neon);
    filter: drop-shadow(0 0 5px var(--color-purple-glow));
    transition: all 0.3s ease;
}

.ritual-step-item:hover .ritual-step-circle {
    border-color: var(--color-gold-antique);
    box-shadow: 0 0 15px var(--color-gold-glow);
}

.ritual-step-item:hover .ritual-step-circle svg {
    fill: var(--color-gold-antique);
    filter: drop-shadow(0 0 8px var(--color-gold-glow));
    transform: scale(1.1);
}

.ritual-step-name {
    font-family: var(--font-display);
    font-size: 0.7em;
    letter-spacing: 2px;
    color: var(--color-gold-antique);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.ritual-step-desc {
    font-size: 0.85em;
    color: var(--color-text-muted);
    line-height: 1.4;
}

/* Test mode banner style */
.willow-test-banner {
    position: absolute;
    top: 95px;
    left: 40px;
    border: 1px solid rgba(229, 193, 88, 0.4);
    background: rgba(229, 193, 88, 0.08);
    color: var(--color-gold-antique);
    padding: 6px 14px;
    font-family: var(--font-display);
    font-size: 0.65em;
    letter-spacing: 2px;
    border-radius: 2px;
    z-index: 10;
}

/* Prompt wrappers for non-logged-in state */
.willow-prompt-wrap {
    font-family: var(--font-body);
}

.willow-prompt-title {
    font-family: var(--font-display);
    font-size: 2.2em;
    letter-spacing: 4px;
    color: #fff;
    margin-bottom: 10px;
    text-shadow: 0 0 12px var(--color-purple-glow);
}

.willow-login-btn {
    display: inline-block;
    background: linear-gradient(135deg, #1b0a23 0%, #0d0412 100%);
    color: var(--color-text-light);
    border: 1px solid var(--color-gold-antique);
    padding: 12px 28px;
    font-family: var(--font-display);
    font-size: 0.8em;
    letter-spacing: 2px;
    text-decoration: none;
    margin-top: 15px;
    box-shadow: 0 0 8px rgba(229, 193, 88, 0.1);
    transition: all 0.3s ease;
}

.willow-login-btn:hover {
    color: #fff;
    border-color: #fff;
    box-shadow: 0 0 15px var(--color-purple-glow);
    text-decoration: none;
}

/* --- SYSTEM UTILITY CLASSES (FOR JS EMBER SPARKS) --- */
.willow-spark {
    position: absolute;
    pointer-events: none;
    border-radius: 50%;
    mix-blend-mode: screen;
    z-index: 99;
}

/* --- KEYFRAME ANIMATIONS --- */
@keyframes flameFlicker {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.85; }
    20% { transform: scale(0.95) rotate(-3deg) skewX(2deg); opacity: 0.95; }
    40% { transform: scale(1.05) rotate(2deg); opacity: 0.8; }
    60% { transform: scale(0.9) rotate(-1deg) skewX(-2deg); opacity: 1; }
    80% { transform: scale(1.1) rotate(3deg); opacity: 0.9; }
}

@keyframes idleFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@keyframes bounceDown {
    0%, 100%, 20%, 50%, 80% { transform: translateY(0); }
    40% { transform: translateY(-6px); }
    60% { transform: translateY(-3px); }
}

@keyframes heartbeat {
    0% { transform: scale(1); }
    50% { transform: scale(1.35); }
    100% { transform: scale(1); }
}

@keyframes bloomFadeIn {
    0% {
        opacity: 0;
        transform: scale(0.95);
        filter: blur(10px);
    }
    100% {
        opacity: 1;
        transform: scale(1);
        filter: blur(0);
    }
}

/* --- RESPONSIVE ADAPTABILITY --- */
@media (max-width: 1100px) {
    .willow-hero-body {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 40px 0;
    }
    .willow-right-pane {
        justify-content: center;
    }
    .willow-main-title {
        font-size: 2.8em;
        text-align: center;
    }
    .willow-main-subtitle {
        text-align: center;
    }
    .willow-title-divider {
        margin: 15px auto 20px auto;
    }
    .ritual-steps {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
    .ritual-step-item:nth-child(3)::after {
        display: none;
    }
    .willow-wishes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .willow-stats-summary-box {
        grid-template-columns: repeat(3, 1fr);
    }
    .willow-test-banner {
        position: static;
        margin-bottom: 20px;
        display: inline-block;
    }
}

@media (max-width: 768px) {
    .willow-hero-section {
        padding: 20px;
    }
    .willow-hero-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    .willow-wishes-grid {
        grid-template-columns: 1fr;
    }
    .willow-stats-summary-box {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .ritual-steps {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .ritual-step-name{margin-bottom: 0;}
    .ritual-step-item::after {
        display: none !important;
    }
    .gothic-panel {
        padding: 25px 20px;
    }
    .willow-main-title {
        font-size: 2.2em;
    }
    .willow-timer-countdown {
        font-size: 1.8em;
    }
    .willow-void-stats-container{padding: 30px 15px 35px !important;}
    .willow-hero-body {        padding: 20px 0 !important;    }
}


@media (max-width: 575px) {
.willow-section-title{font-size: 1rem;}
.willow-void-stats-panel {    position: relative;    padding: 24px 12px;}
.willow-section-spacer{margin: 30px auto;}
.ritual-title{font-size: 0.8em;}
.ritual-title{margin-bottom: 25px;}
.willow-flyout-drawer { width: 100% !important; max-width: 100% !important;}
}

/* --- TITLE AND BUTTON BREATHING GLOW ANIMATIONS --- */
@keyframes titleBreathingGlow {
    0%, 100% {
        filter: drop-shadow(0 0 6px rgba(171, 71, 188, 0.45)) drop-shadow(0 0 2px rgba(171, 71, 188, 0.2));
    }
    50% {
        filter: drop-shadow(0 0 16px rgba(171, 71, 188, 0.95)) drop-shadow(0 0 5px rgba(171, 71, 188, 0.4));
    }
}

@keyframes buttonGlowBreathing {
    0%, 100% {
        opacity: 0.15;
        box-shadow: 0 0 10px rgba(171, 71, 188, 0.4), 0 0 3px rgba(229, 193, 88, 0.2);
    }
    50% {
        opacity: 0.75;
        box-shadow: 0 0 25px rgba(171, 71, 188, 0.95), 0 0 8px rgba(229, 193, 88, 0.5);
    }
}

/* --- CUSTOM CURSOR FOLLOWER --- */
.willow-cursor-dot,
.willow-cursor-circle {
    position: fixed;
    top: 0; left: 0;
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    opacity: 0;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
}

.willow-cursor-dot {
    width: 6px;
    height: 6px;
    background-color: var(--color-purple-neon);
    box-shadow: 0 0 8px var(--color-purple-neon);
}

.willow-cursor-circle {
    width: 32px;
    height: 32px;
    border: 1px solid var(--color-purple-neon);
    box-shadow: 0 0 12px var(--color-purple-glow);
    background-color: transparent;
}

/* --- SHORTCODE HIDDEN UNTIL SUBMITTED & FULL-WIDTH BACKGROUND --- */
.willow-hide-until-submitted {
    display: none;
}

.willow-subsections-outer-fullwidth {
    display: none;
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background-image: url('../img/btm-bg.jpg'), url('../img/btn-bg.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    padding: 50px 0 60px;
    box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.95);
    overflow: hidden;
}

/* Dark gothic gradient pseudo-element overlay */
.willow-subsections-outer-fullwidth::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg, 
        rgba(8, 4, 12, 0.78) 0%, 
        rgba(15, 7, 22, 0.65) 50%, 
        rgba(8, 4, 12, 0.88) 100%
    );
    pointer-events: none;
    z-index: 1;
}

.willow-subsections-outer-fullwidth.active,
.willow-hide-until-submitted.active {
    display: block !important;
}

/* Centered inner container for section contents */
.willow-subsections-inner-container {
    position: relative;
    z-index: 2;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* --- HIDE UNWANTED WordPress wpautop <br> TAGS BETWEEN SECTIONS --- */
.willow-wrapper-main br,
.willow-subsections-container br,
.willow-hero-section br:not(.willow-allow-br),
.willow-hide-until-submitted br {
    display: none !important;
}

/* --- MYSTICAL AMBIENT & FLUID CANVAS OVERLAYS --- */
.willow-ambient-canvas,
.willow-mystic-canvas,
.willow-bottom-ambient-canvas {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* ==========================================================================
   ANCIENT PARCHMENT WISH OF THE DAY
   ========================================================================== */
.willow-ancient-parchment {
    position: relative;
    padding: 35px 30px 30px;
    background: linear-gradient(145deg, rgba(28, 16, 22, 0.95), rgba(18, 10, 15, 0.98));
    border: 1px solid rgba(229, 193, 88, 0.35);
    border-radius: 6px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.7), inset 0 0 40px rgba(171, 71, 188, 0.08);
    text-align: center;
    margin: 30px 0;
    overflow: hidden;
}

.willow-ancient-parchment::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 50% 30%, rgba(229, 193, 88, 0.06), transparent 70%);
    pointer-events: none;
}

.parchment-header-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(229, 193, 88, 0.12);
    border: 1px solid rgba(229, 193, 88, 0.4);
    border-radius: 20px;
    color: #e5c158;
    font-family: 'Cinzel', 'Trajan Pro', Georgia, serif;
    font-size: 0.82rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    box-shadow: 0 0 15px rgba(229, 193, 88, 0.2);
}

.parchment-wish-text {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-size: 1.45rem;
    font-style: italic;
    line-height: 1.65;
    color: #f3e5f5;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    max-width: 750px;
    margin: 0 auto 20px;
}

.parchment-footer {
    display: flex;
    justify-content: center;
    align-items: center;
}

.parchment-author {
    font-family: 'Cinzel', serif;
    font-size: 0.95rem;
    color: #e5c158;
    letter-spacing: 1px;
}

/* ==========================================================================
   THE VOID SO FAR - STATISTICS PANEL (PIXEL-PERFECT MATCH)
   ========================================================================== */
.willow-void-stats-container {
    position: relative;
    padding: 30px 40px 35px;
    background: rgba(10, 5, 14, 0.94);
    border: 1px solid rgba(171, 71, 188, 0.22);
    border-radius: 6px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.85);
    margin: 40px 0;
}

.willow-section-header {
    text-align: center;
    margin-bottom: 22px;
}

.willow-section-title {
    font-family: 'Cinzel', 'Trajan Pro', serif;
    font-size: 1.3rem;
    letter-spacing: 3.5px;
    color: #e5c158;
    text-transform: uppercase;
    margin: 0 0 8px 0;
    text-shadow: 0 0 15px rgba(229, 193, 88, 0.3);
}

.header-flourish {
    color: #e5c158;
    margin: 0 8px;
    font-size: 0.9em;
    opacity: 0.7;
}

.willow-gothic-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    opacity: 0.5;
}

.willow-gothic-divider .divider-line {
    height: 1px;
    width: 60px;
    background: linear-gradient(90deg, transparent, #ab47bc, transparent);
}

.willow-gothic-divider .divider-diamond {
    color: #e5c158;
    font-size: 0.6rem;
}

.willow-void-stats-panel {
    position: relative;
    padding: 24px 30px;
    background: rgba(16, 8, 22, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    gap: 20px;
}

.void-stat-col {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
    justify-content: center;
    padding: 8px 12px;
}

.stat-badge {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-badge.purple {
    background: rgba(171, 71, 188, 0.15);
    border: 1px solid rgba(171, 71, 188, 0.5);
    color: #d05ce3;
    box-shadow: 0 0 20px rgba(171, 71, 188, 0.35);
}

.stat-badge.crimson {
    background: rgba(229, 57, 53, 0.15);
    border: 1px solid rgba(229, 57, 53, 0.5);
    color: #ff5252;
    box-shadow: 0 0 20px rgba(229, 57, 53, 0.35);
}

.stat-badge.gold {
    background: rgba(229, 193, 88, 0.15);
    border: 1px solid rgba(229, 193, 88, 0.5);
    color: #e5c158;
    box-shadow: 0 0 20px rgba(229, 193, 88, 0.35);
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-val {
    font-family: 'Cinzel', serif;
    font-size: 1.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.15;
}

.stat-val-purple {
    color: #d05ce3;
    text-shadow: 0 0 14px rgba(171, 71, 188, 0.4);
}

.stat-val-crimson {
    color: #ff5252;
    text-shadow: 0 0 14px rgba(229, 57, 53, 0.4);
}

.stat-val-gold {
    color: #f3d980;
    text-shadow: 0 0 14px rgba(229, 193, 88, 0.4);
}

.stat-lbl {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-size: 1.05rem;
    font-style: italic;
    color: rgba(243, 229, 245, 0.7);
    margin-top: 3px;
}

@media (max-width: 768px) {
    .willow-void-stats-panel {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }
    .void-stat-col {
        justify-content: flex-start;
    }
}

/* ==========================================================================
   ECHOES OF OTHER WISHES - CAROUSEL (MOCKUP 1 MATCH)
   ========================================================================== */
.willow-echoes-container {
    margin: 45px 0;
}

.willow-echoes-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 0 5px;
}

.willow-echoes-title {
    font-family: 'Cinzel', serif;
    font-size: 1.25rem;
    letter-spacing: 2.5px;
    color: #f3e5f5;
    text-transform: uppercase;
    margin: 0;
}

.willow-view-all-btn {
    background: none;
    border: none;
    color: #ff84d6;
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.25s ease;
    padding: 4px 8px;
}

.willow-view-all-btn:hover {
    color: #f3e5f5;
    text-shadow: 0 0 10px rgba(229, 83, 180, 0.6);
    transform: translateX(3px);
}

.willow-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.willow-carousel-viewport {
    width: 100%;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* IE */
    padding: 10px 0;
}

.willow-carousel-viewport::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.willow-carousel-track {
    display: flex;
    gap: 20px;
}

.willow-carousel-card {
    position: relative;
    flex: 0 0 280px;
    padding: 24px 20px 20px;
    background: rgba(14, 7, 18, 0.92);
    border: 1px solid rgba(171, 71, 188, 0.25);
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.willow-carousel-card:hover {
    transform: translateY(-5px);
    border-color: rgba(171, 71, 188, 0.55);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.9), 0 0 20px rgba(171, 71, 188, 0.2);
}

.card-author-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.author-avatar-frame {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid rgba(229, 193, 88, 0.4);
    background: rgba(22, 12, 26, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.author-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-avatar-fallback {
    font-size: 1.2rem;
}

.author-meta-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-family: 'Cinzel', serif;
    font-size: 0.92rem;
    font-weight: 600;
    color: #f3e5f5;
    line-height: 1.2;
}

.author-time {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.85rem;
    color: rgba(243, 229, 245, 0.55);
    margin-top: 2px;
}

.card-body {
    flex-grow: 1;
    margin-bottom: 16px;
}

.wish-quote {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-size: 1.15rem;
    font-style: italic;
    color: rgba(243, 229, 245, 0.9);
    line-height: 1.5;
    margin: 0;
}

.card-footer {
    display: flex;
    justify-content: center;
}

.willow-carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(18, 9, 22, 0.92);
    border: 1px solid rgba(171, 71, 188, 0.4);
    color: #f3e5f5;
    font-size: 1.6rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
    transition: all 0.25s ease;
}

.willow-carousel-arrow:hover {
    background: rgba(171, 71, 188, 0.3);
    border-color: #d05ce3;
    color: #ffffff;
    box-shadow: 0 0 15px rgba(171, 71, 188, 0.5);
}

.willow-carousel-prev {
    left: -22px;
}

.willow-carousel-next {
    right: -22px;
}

/* ==========================================================================
   SLIDE-OVER FLYOUT SIDEBAR DRAWER (TODAY'S WHISPERS)
   ========================================================================== */
.willow-flyout-backdrop {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.78);
    backdrop-filter: blur(4px);
    z-index: 9999998 !important;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.willow-flyout-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.willow-flyout-drawer {
    position: fixed;
    top: 0; right: -480px;
    width: 440px;
    max-width: 90vw;
    height: 100vh;
    background: rgba(14, 7, 18, 0.98);
    border-left: 1px solid rgba(171, 71, 188, 0.35);
    box-shadow: -15px 0 50px rgba(0, 0, 0, 0.95);
    z-index: 9999999 !important;
    display: flex;
    flex-direction: column;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.willow-flyout-drawer.active {
    right: 0;
}

.willow-flyout-header {
    padding: 24px 24px 18px;
    border-bottom: 1px solid rgba(171, 71, 188, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background: rgba(22, 11, 28, 0.9);
}

.willow-flyout-title {
    font-family: 'Cinzel', serif;
    font-size: 1.25rem;
    letter-spacing: 2px;
    color: #f3e5f5;
    margin: 0 0 4px 0;
}

.willow-flyout-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.92rem;
    color: rgba(243, 229, 245, 0.6);
}

.willow-flyout-close {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(243, 229, 245, 0.7);
    font-size: 1.1rem;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.willow-flyout-close:hover {
    background: rgba(229, 57, 53, 0.2);
    border-color: #ff5252;
    color: #ffffff;
}

.willow-flyout-body {
    flex-grow: 1;
    overflow-y: auto;
    padding: 20px 0;
    scrollbar-width: thin;
    scrollbar-color: rgba(171, 71, 188, 0.4) transparent;
}

.willow-flyout-body::-webkit-scrollbar {
    width: 6px;
}

.willow-flyout-body::-webkit-scrollbar-thumb {
    background: rgba(171, 71, 188, 0.4);
    border-radius: 3px;
}

.willow-flyout-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.flyout-wish-item {
    padding: 16px;
    background: rgba(24, 13, 30, 0.7);
    border: 1px solid rgba(171, 71, 188, 0.18);
    border-radius: 6px;
    transition: all 0.25s ease;
}

.flyout-wish-item:hover {
    background: rgba(32, 17, 40, 0.9);
    border-color: rgba(171, 71, 188, 0.4);
}

.flyout-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.flyout-author {
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    color: #e5c158;
}

.flyout-time {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.82rem;
    color: rgba(243, 229, 245, 0.5);
}

.flyout-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.08rem;
    font-style: italic;
    color: #f3e5f5;
    line-height: 1.45;
    margin: 0 0 12px 0;
}

.flyout-item-footer {
    display: flex;
    justify-content: flex-end;
}

.willow-flyout-loader {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px 0;
    color: rgba(243, 229, 245, 0.6);
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.95rem;
}

.willow-spinner {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(171, 71, 188, 0.2);
    border-top-color: #d05ce3;
    border-radius: 50%;
    animation: willowSpin 0.8s linear infinite;
}

@keyframes willowSpin {
    to { transform: rotate(360deg); }
}

/* ==========================================================================
   NEW SHORTCODES STYLING (Notification Toast, My Wishes, Live Feed)
   ========================================================================== */

/* 1. Notification Toast Overlay */
.willow-notification-toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999999;
    max-width: 400px;
    background: rgba(15, 6, 20, 0.95);
    border: 1px solid #d05ce3;
    border-radius: 10px;
    box-shadow: 0 0 25px rgba(208, 92, 227, 0.4), inset 0 0 15px rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    animation: toastSlideIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes toastSlideIn {
    from { opacity: 0; transform: translateY(50px) scale(0.9); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.willow-toast-content {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    gap: 14px;
}

.willow-toast-icon {
    font-size: 2rem;
    animation: iconPulse 2s infinite ease-in-out;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); text-shadow: 0 0 10px #e5c158; }
    50% { transform: scale(1.15); text-shadow: 0 0 20px #d05ce3; }
}

.willow-toast-body {
    flex: 1;
}

.willow-toast-title {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    color: #e5c158;
    margin: 0 0 4px 0;
}

.willow-toast-message {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.95rem;
    color: #f3e5f5;
    margin: 0;
    line-height: 1.3;
}

.willow-toast-close {
    background: none;
    border: none;
    color: rgba(243, 229, 245, 0.5);
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    transition: color 0.2s;
}

.willow-toast-close:hover {
    color: #e5c158;
}

/* 2. My Wishes Dashboard */
.willow-my-wishes-wrapper {
    margin: 30px 0;
    padding: 30px;
    background: rgba(14, 6, 20, 0.92);
    border: 1px solid rgba(171, 71, 188, 0.3);
    border-radius: 12px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
}

.willow-section-header {
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(171, 71, 188, 0.2);
    padding-bottom: 15px;
}

.gothic-title {
    font-family: 'Cinzel', serif;
    font-size: 1.6rem;
    color: #e5c158;
    margin: 0 0 6px 0;
    letter-spacing: 1px;
}

.gothic-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    color: rgba(243, 229, 245, 0.7);
    margin: 0;
    font-style: italic;
}

.willow-my-wishes-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
}

.willow-wish-card {
    background: rgba(24, 11, 33, 0.85);
    border: 1px solid rgba(171, 71, 188, 0.25);
    border-radius: 8px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.willow-wish-card:hover {
    transform: translateY(-4px);
    border-color: rgba(208, 92, 227, 0.6);
    box-shadow: 0 8px 25px rgba(208, 92, 227, 0.25);
}

.willow-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.willow-badge {
    font-family: 'Cinzel', serif;
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.willow-badge.approved {
    background: rgba(46, 204, 113, 0.15);
    color: #2ecc71;
    border: 1px solid rgba(46, 204, 113, 0.4);
}

.willow-badge.pending {
    background: rgba(241, 196, 15, 0.15);
    color: #f1c40f;
    border: 1px solid rgba(241, 196, 15, 0.4);
}

.willow-badge.rejected {
    background: rgba(231, 76, 60, 0.15);
    color: #e74c3c;
    border: 1px solid rgba(231, 76, 60, 0.4);
}

.willow-time {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.85rem;
    color: rgba(243, 229, 245, 0.5);
}

.willow-user-wish {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-style: italic;
    color: #ffffff;
    line-height: 1.45;
    margin: 0 0 16px 0;
}

.willow-response-box {
    background: rgba(10, 4, 14, 0.7);
    border-left: 3px solid #d05ce3;
    padding: 10px 14px;
    border-radius: 0 6px 6px 0;
    margin-bottom: 16px;
}

.willow-label {
    font-family: 'Cinzel', serif;
    font-size: 0.75rem;
    color: #e5c158;
    display: block;
    margin-bottom: 2px;
}

.willow-response-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.95rem;
    color: rgba(243, 229, 245, 0.85);
    margin: 0;
}

.willow-card-footer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
    color: #e5c158;
}

/* 3. Live Chat Feed Shortcode */
.willow-live-feed-container {
    margin: 30px 0;
    background: rgba(12, 5, 18, 0.94);
    border: 1px solid rgba(171, 71, 188, 0.35);
    border-radius: 12px;
    box-shadow: 0 0 35px rgba(0, 0, 0, 0.9);
    overflow: hidden;
}

.willow-live-feed-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    background: rgba(20, 8, 30, 0.8);
    border-bottom: 1px solid rgba(171, 71, 188, 0.25);
}

.willow-live-indicator {
    display: flex;
    align-items: center;
    gap: 12px;
}

.willow-pulse-dot {
    width: 10px;
    height: 10px;
    background-color: #2ecc71;
    border-radius: 50%;
    box-shadow: 0 0 10px #2ecc71;
    animation: livePulse 1.5s infinite ease-in-out;
}

@keyframes livePulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.5; }
}

.willow-live-counter {
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
    color: #e5c158;
    letter-spacing: 1px;
}

.willow-live-feed-stream {
    max-height: 520px;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    scroll-behavior: smooth;
}

.willow-live-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: rgba(22, 10, 32, 0.75);
    border: 1px solid rgba(171, 71, 188, 0.18);
    border-radius: 8px;
    padding: 14px 18px;
    transition: all 0.25s ease;
    animation: liveItemSlide 0.4s ease-out forwards;
}

@keyframes liveItemSlide {
    from { opacity: 0; transform: translateY(-15px); }
    to { opacity: 1; transform: translateY(0); }
}

.willow-live-item:hover {
    background: rgba(30, 14, 42, 0.95);
    border-color: rgba(208, 92, 227, 0.45);
    box-shadow: 0 4px 15px rgba(208, 92, 227, 0.15);
}

.willow-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid #e5c158;
    object-fit: cover;
    box-shadow: 0 0 10px rgba(229, 193, 88, 0.3);
    flex-shrink: 0;
}

.willow-live-item-body {
    flex: 1;
}

.willow-live-author-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 6px;
    gap: 8px;
}

.willow-live-author {
    font-family: 'Cinzel', serif;
    font-size: 0.95rem;
    color: #e5c158;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 190px;
}

.willow-live-time {
    font-family: 'Cinzel', serif;
    font-size: 0.78rem;
    font-weight: 500;
    color: rgba(243, 229, 245, 0.7);
    white-space: nowrap;
    flex-shrink: 0;
    text-transform: uppercase;
}

.willow-live-wish-text {
    font-size: 0.90rem;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.25;
    margin: 4px 0 0 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

.willow-live-footer-row {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 8px;
}

.willow-live-like-btn {
    background: rgba(208, 92, 227, 0.1);
    border: 1px solid rgba(208, 92, 227, 0.3);
    color: #d05ce3;
    padding: 3px 10px;
    border-radius: 14px;
    font-family: 'Cinzel', serif;
    font-size: 0.72rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.willow-live-like-btn:hover {
    background: rgba(208, 92, 227, 0.3);
    border-color: #d05ce3;
    color: #ffffff;
    box-shadow: 0 0 10px rgba(208, 92, 227, 0.4);
}

.willow-btn-ritual:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(208, 92, 227, 0.7) !important;
}

/* ==========================================================================
   SITE-WIDE FLOATING LIVE FEED & SACRED WHISPERS WIDGET (GOTHIC LUXURY UI)
   ========================================================================== */

.willow-floating-widget {
    position: fixed;
    bottom: 24px;
    z-index: 999999;
    pointer-events: auto;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.willow-floating-widget.pos-bottom-right {
    right: 24px;
}

.willow-floating-widget.pos-bottom-left {
    left: 24px;
}

/* Reactive Heart Canvas */
.willow-heart-canvas {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 320px;
    height: 480px;
    pointer-events: none;
    z-index: 1000000;
}
.willow-floating-widget.pos-bottom-left .willow-heart-canvas {
    left: 0;
    right: auto;
}

/* Floating Pill Trigger Bar (Ultra Compact & Sleek) */
.willow-floating-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(8, 4, 12, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(171, 71, 188, 0.45);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.7), 0 0 18px rgba(171, 71, 188, 0.3);
    border-radius: 40px;
    padding: 8px 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
}

.willow-floating-pill:hover {
    border-color: rgba(229, 193, 88, 0.7);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.9), 0 0 22px rgba(229, 193, 88, 0.35);
    transform: translateY(-2px);
}

/* Live Badge */
.willow-pill-live-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(171, 71, 188, 0.18);
    border: 1px solid rgba(171, 71, 188, 0.45);
    padding: 5px 12px;
    border-radius: 20px;
    flex-shrink: 0;
}

.willow-pill-title {
    font-family: var(--font-display, 'Cinzel', serif);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #e5c158;
    text-transform: uppercase;
}

/* Pulsating Dot */
.willow-pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #00e676;
    border-radius: 50%;
    box-shadow: 0 0 8px #00e676;
    animation: pulseDotGlow 1.8s infinite ease-in-out;
}

@keyframes pulseDotGlow {
    0% { transform: scale(0.9); opacity: 0.7; }
    50% { transform: scale(1.3); opacity: 1; box-shadow: 0 0 12px #00e676, 0 0 20px #00e676; }
    100% { transform: scale(0.9); opacity: 0.7; }
}

/* Ticker Text - Hidden in minimized state for a clean compact floating pill */
.willow-pill-ticker {
    display: none;
}

/* Ticker Actions */
.willow-pill-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

/* Heart Reaction Button */
.willow-pill-heart-btn {
    background: linear-gradient(135deg, rgba(255, 23, 68, 0.25), rgba(171, 71, 188, 0.25));
    border: 1px solid rgba(255, 23, 68, 0.5);
    color: #ff1744;
    border-radius: 20px;
    padding: 5px 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: var(--font-display, 'Cinzel', serif);
    font-size: 0.82rem;
    font-weight: 700;
}

.willow-pill-heart-btn:hover {
    background: linear-gradient(135deg, rgba(255, 23, 68, 0.45), rgba(171, 71, 188, 0.45));
    border-color: #ff1744;
    box-shadow: 0 0 14px rgba(255, 23, 68, 0.6);
    transform: scale(1.05);
}

.willow-pill-heart-btn:active {
    transform: scale(0.95);
}

.willow-heart-svg {
    width: 15px;
    height: 15px;
    fill: #ff1744;
    filter: drop-shadow(0 0 4px rgba(255, 23, 68, 0.6));
    transition: transform 0.2s ease;
}

/* Expand Drawer Button */
.willow-pill-expand-btn {
    background: rgba(171, 71, 188, 0.2);
    border: 1px solid rgba(171, 71, 188, 0.4);
    color: #e5c158;
    border-radius: 50%;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.95rem;
}

.willow-pill-expand-btn:hover {
    background: rgba(171, 71, 188, 0.4);
    border-color: #e5c158;
    box-shadow: 0 0 12px rgba(229, 193, 88, 0.5);
    transform: scale(1.1);
}

/* Floating Expandable Drawer Container */
.willow-floating-drawer {
    position: absolute;
    bottom: 60px;
    right: 0;
    width: 400px;
    height: calc(100vh - 200px);
    max-height: 100vh;
    background: rgba(8, 4, 14, 0.96);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid var(--color-purple-border, #4a1c4a);
    border-radius: 12px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.9), 0 0 25px rgba(171, 71, 188, 0.35);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
}

.willow-floating-widget.pos-bottom-left .willow-floating-drawer {
    left: 0;
    right: auto;
}

.willow-floating-drawer.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

/* Drawer Header */
.willow-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 12px;
    background: rgba(18, 8, 26, 0.9);
    border-bottom: 1px solid rgba(171, 71, 188, 0.25);
    border-radius: 8px;
}

.willow-drawer-tabs {
    display: flex;
    gap: 8px;
}

.willow-drawer-tab {
    background: transparent;
    border: 1px solid transparent;
    color: rgba(243, 229, 245, 0.85);
    padding: 7px 14px;
    border-radius: 20px;
    font-family: var(--font-display, 'Cinzel', serif);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.willow-drawer-tab:hover {
    color: #ffffff;
    background: rgba(171, 71, 188, 0.2);
}

.willow-drawer-tab.active {
    background: linear-gradient(135deg, rgba(171, 71, 188, 0.4), rgba(58, 21, 58, 0.7));
    border-color: rgba(171, 71, 188, 0.6);
    color: #e5c158;
    box-shadow: 0 0 12px rgba(171, 71, 188, 0.4);
}

.willow-drawer-close-btn {
    background: transparent;
    border: none;
    color: rgba(243, 229, 245, 0.7);
    font-size: 1.15rem;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.willow-drawer-close-btn:hover {
    color: #ff1744;
    background: rgba(255, 23, 68, 0.15);
}

/* Drawer Tab Content */
.willow-drawer-tab-content {
    display: none;
    flex-direction: column;
    flex: 1;
    overflow: hidden;
}

.willow-drawer-tab-content.active {
    display: flex;
}

.willow-drawer-feed-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 16px;
    background: rgba(10, 4, 16, 0.6);
    border-bottom: 1px solid rgba(171, 71, 188, 0.15);
}

.willow-feed-subtitle {
    font-family: var(--font-display, 'Cinzel', serif);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: rgba(229, 193, 88, 0.9);
}

.willow-feed-live-indicator {
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: var(--font-display, 'Cinzel', serif);
    font-size: 0.68rem;
    font-weight: 700;
    color: #00e676;
    letter-spacing: 1px;
}

/* Drawer Stream (Scrollable Feed) */
.willow-drawer-stream {
    flex: 1;
    overflow-y: auto;
    padding: 12px 12px 0 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    scrollbar-width: thin;
    scrollbar-color: rgba(171, 71, 188, 0.4) transparent;
}

.willow-drawer-stream::-webkit-scrollbar {
    width: 5px;
}
.willow-drawer-stream::-webkit-scrollbar-thumb {
    background: rgba(171, 71, 188, 0.5);
    border-radius: 4px;
}

/* Tab 2: Sacred Whispers Drawer Container */
.willow-drawer-mywishes-container {
    flex: 1;
    overflow-y: auto;
    padding: 12px;
    max-height: 350px;
}

.willow-drawer-login-prompt {
    text-align: center;
    padding: 30px 15px;
}

.willow-drawer-login-prompt p {
    font-size: 1.05rem;
    color: rgba(243, 229, 245, 0.9);
    margin-bottom: 15px;
}

.willow-drawer-login-btn {
    display: inline-block;
    padding: 9px 20px;
    background: linear-gradient(135deg, #7b1fa2, #d05ce3);
    color: #ffffff !important;
    text-decoration: none !important;
    border-radius: 20px;
    font-family: var(--font-display, 'Cinzel', serif);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 0 12px rgba(208, 92, 227, 0.5);
    transition: all 0.2s ease;
}

.willow-drawer-login-btn:hover {
    box-shadow: 0 0 20px rgba(208, 92, 227, 0.8);
    transform: translateY(-1px);
}

.willow-drawer-mywishes-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Drawer Footer */
.willow-drawer-footer {
    text-align: center;
    padding: 12px 0;
}

.willow-drawer-make-wish-btn {
    display: block;
    width: 100%;
    padding: 10px 14px;
    background: linear-gradient(135deg, rgba(171, 71, 188, 0.4), rgba(229, 193, 88, 0.3));
    border: 1px solid rgba(229, 193, 88, 0.5);
    color: #ffffff !important;
    text-decoration: none !important;
    border-radius: 6px;
    font-family: var(--font-display, 'Cinzel', serif);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1px;
    box-sizing: border-box;
    transition: all 0.25s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

.willow-drawer-make-wish-btn:hover {
    background: linear-gradient(135deg, rgba(171, 71, 188, 0.6), rgba(229, 193, 88, 0.5));
    border-color: #e5c158;
    color: #ffffff !important;
    box-shadow: 0 0 18px rgba(229, 193, 88, 0.4);
}

/* Responsive Mobile Layout for Floating Widget */
@media (max-width: 600px) {
    .willow-floating-widget {
        bottom: 16px;
    }
    .willow-floating-widget.pos-bottom-right {
        right: 12px;
    }
    .willow-floating-widget.pos-bottom-left {
        left: 12px;
    }
    .willow-floating-pill {
        padding: 6px 12px;
    }
    .willow-floating-drawer {
        width: calc(100vw - 24px);
        max-height: 440px;
        bottom: 56px;
    }
}

