/* ===== SPACER SECTION STYLES ===== */

.spacer-section {
    position: relative;
    padding: 80px 20px;
    background: linear-gradient(135deg, #fff5f0 0%, #ffeee5 50%, #fff0e8 100%);
    overflow: hidden;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Background Shapes */
.spacer-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(255, 154, 108, 0.15), rgba(255, 107, 107, 0.1));
    border-radius: 50%;
    z-index: 0;
}

.spacer-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, rgba(255, 193, 150, 0.2), rgba(255, 154, 108, 0.1));
    border-radius: 50%;
    z-index: 0;
}

/* Floating Stickers */
.spacer-floating-stickers {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.spacer-sticker {
    position: absolute;
    opacity: 0.15;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.spacer-sticker-1 {
    width: 60px;
    top: 20%;
    left: 8%;
    animation: floatSoft 6s ease-in-out infinite;
}

.spacer-sticker-2 {
    width: 50px;
    top: 30%;
    right: 10%;
    animation: floatSoft 5s ease-in-out infinite 1s;
}

.spacer-sticker-3 {
    width: 45px;
    bottom: 25%;
    left: 15%;
    animation: floatSoft 7s ease-in-out infinite 0.5s;
}

/* Alternative Spacer Style (for variety) */
.spacer-section.alt {
    background: linear-gradient(135deg, #fef3e8 0%, #fff8f3 50%, #ffeee5 100%);
}

.spacer-section.alt::before {
    top: -30px;
    left: -80px;
    right: auto;
    background: linear-gradient(135deg, rgba(255, 182, 125, 0.15), rgba(255, 154, 108, 0.1));
}

.spacer-section.alt::after {
    bottom: -60px;
    right: -60px;
    left: auto;
    background: linear-gradient(135deg, rgba(255, 220, 180, 0.2), rgba(255, 193, 150, 0.15));
}

/* ===== CTA Container ===== */
.spacer-cta-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

.spacer-cta-cat {
    width: 80px;
    height: auto;
    animation: bounce 2s ease-in-out infinite;
    filter: drop-shadow(0 8px 16px rgba(255, 154, 108, 0.3));
}

.spacer-cta-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: #6b3e26;
    margin: 0;
}

.spacer-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #ff9a6c 0%, #ff6b6b 100%);
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.35);
    transition: all 0.3s ease;
}

.spacer-cta-button:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.45);
}

/* Bounce Animation */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Float Animation */
@keyframes floatSoft {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-10px) rotate(3deg);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .spacer-section {
        padding: 60px 15px;
        min-height: 150px;
    }

    .spacer-sticker-1 {
        width: 45px;
    }

    .spacer-sticker-2 {
        width: 40px;
    }

    .spacer-sticker-3 {
        width: 35px;
    }

    .spacer-cta-cat {
        width: 60px;
    }

    .spacer-cta-text {
        font-size: 1.1rem;
    }

    .spacer-cta-button {
        padding: 14px 28px;
        font-size: 1rem;
    }
}
