/* STICKY CTA BAR */
.sticky-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-white);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 12px 0;
    animation: slideUp 0.5s ease-out 1s both;
    /* Delays appearance slightly */
    border-top: 3px solid var(--color-accent-terracotta);
}

.sticky-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sticky-text {
    display: flex;
    flex-direction: column;
}

.price-stick {
    font-weight: 800;
    color: var(--color-text-dark);
    font-size: 1.3rem;
    line-height: 1;
}

.scarcity-stick {
    font-size: 0.75rem;
    color: var(--color-accent-terracotta);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.btn-sm {
    padding: 0.8rem 1.5rem;
    font-size: 0.95rem;
    white-space: nowrap;
}

/* Adjust body to prevent footer covered by sticky bar */
body {
    padding-bottom: 80px;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }

    to {
        transform: translateY(0);
    }
}

@media (max-width: 600px) {
    .btn-sm {
        font-size: 0.75rem;
        padding: 0.7rem 1rem;
        white-space: normal;
        text-align: center;
        line-height: 1.2;
        max-width: 60%;
    }

    .sticky-text {
        min-width: 80px;
    }

    .scarcity-stick {
        font-size: 0.65rem;
    }
}