/* Mobile Sticky CTA - Sleek Version */
.mobile-sticky-cta {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: none;
}

.mobile-sticky-cta.show {
    transform: translateX(-50%) translateY(0);
}

.cta-content {
    display: block;
}

.cta-text {
    display: none; /* Hide text for sleek look */
}

.cta-button-sticky {
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(20px);
    border: 3px solid rgba(255, 255, 255, 0.4);
    color: #4A3021;
    padding: 20px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    font-size: 16px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    text-align: center;
    position: relative;
    overflow: hidden;
    font-size: 1.2rem;
}

.cta-button-sticky::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    opacity: 0.9;
    z-index: -1;
    border-radius: 25px;
}

.cta-button-sticky:hover {
    color: white;
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.cta-button-sticky:hover::before {
    background: linear-gradient(45deg, #2A5A39, #1a472a);
}

/* Show only on mobile */
@media (max-width: 768px) {
    .mobile-sticky-cta {
        display: block;
    }
}