/* Mobile Sticky CTA Footer */
.mobile-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 12px 16px;
    display: none;
    /* Hidden by default, shown via JS or media query */
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--gray-200, #e2e8f0);
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}

.mobile-sticky-cta.visible {
    transform: translateY(0);
}

.sticky-cta-content {
    display: flex;
    flex-direction: column;
}

.sticky-cta-title {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--indigo-deep, #1a1a2e);
    margin: 0;
}

.sticky-cta-price {
    font-size: 0.85rem;
    color: var(--text-muted, #666);
}

.sticky-cta-btn {
    background: var(--gold-accent, #e2b96b);
    color: var(--indigo-deep, #1a1a2e);
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.sticky-cta-btn:active {
    transform: translateY(1px);
}

/* Spacer to prevent content from being hidden behind sticky footer */
.sticky-footer-spacer {
    height: 80px;
    display: none;
}

@media (max-width: 768px) {
    .mobile-sticky-cta {
        display: flex;
    }

    .sticky-footer-spacer {
        display: block;
    }
}