/* Decorative Heart Stack Styles */
.liquid-heart-widget {
    position: fixed;
    z-index: 0; /* Behind content but visible */
    pointer-events: none;
    width: 120px;
    height: auto; /* Allow height to grow */
    display: flex;
    justify-content: center;
}

/* Positioning classes */
.liquid-heart-widget.bottom-right {
    bottom: 45px;
    right: 45px;
}

.liquid-heart-widget.bottom-left {
    bottom: 45px;
    left: 45px;
}

.liquid-heart-widget.top-left {
    top: 45px;
    left: 45px;
}

.liquid-heart-widget.top-right {
    top: 65px;
    right: 65px;
}

/* Stack Layout */
.heart-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

/* Common SVG Styles */
.heart-stack svg {
    display: block;
    fill: #A9383E; /* Vintage Red */
    filter: drop-shadow(0 4px 8px rgba(169, 56, 62, 0.2));
}

/* Main Heart (Top) */
.main-heart {
    width: 100px;
    height: 92px;
    animation: gentle-float 3s ease-in-out infinite;
}

/* Small Hearts (Decreasing sizes) */
.heart-stack svg:nth-child(2) {
    width: 40px;
    height: 37px;
    opacity: 0.85;
    animation: gentle-float 3s ease-in-out infinite 0.5s;
}

.heart-stack svg:nth-child(3) {
    width: 24px;
    height: 22px;
    opacity: 0.7;
    animation: gentle-float 3s ease-in-out infinite 1s;
}

.heart-stack svg:nth-child(4) {
    width: 14px;
    height: 13px;
    opacity: 0.5;
    animation: gentle-float 3s ease-in-out infinite 1.5s;
}

/* Gentle Float Animation */
@keyframes gentle-float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}
