/* Social Proof Floating Card 
    Position: Bottom Left
*/
.social-proof-card {
    position: fixed;
    bottom: 30px; /* Base position */
    left: 20px;
    z-index: 9999; /* Ensure it's on top of everything */
    
    background-color: #ffffff;
    border-left: 4px solid #ff6600; /* Fly Fitness Orange Accent */
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    
    padding: 15px 20px;
    max-width: 320px;
    min-width: 280px;
    
    cursor: pointer;
    overflow: hidden;
    
    /* Animation States */
    opacity: 0;
    transform: translateY(50px) scale(0.95);
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    
    /* Font Handling */
    font-family: 'Poppins', sans-serif; /* Matching likely site font */
}

/* Ensure it creates space if WhatsApp button is present */
@media (max-width: 768px) {
    .social-proof-card {
        bottom: 90px; /* Move up on mobile to avoid bottom nav/WhatsApp */
        right: 15px;
        left: 15px; /* Full width-ish on mobile */
        max-width: none;
    }
}

/* Visible State */
.social-proof-card.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Exiting State */
.social-proof-card.exiting {
    opacity: 0;
    transform: translateY(20px);
}

/* Inner Layout */
.social-proof-card .sp-content {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

/* Icon */
.social-proof-card .sp-icon {
    font-size: 24px;
    background: #fff0e6; /* Light orange bg */
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* Text */
.social-proof-card .sp-text {
    flex: 1;
}

.social-proof-card .sp-title {
    margin: 0;
    font-size: 14px;
    color: #333;
    line-height: 1.3;
}

.social-proof-card .sp-subtitle {
    margin: 2px 0 0 0;
    font-size: 12px;
    color: #666;
}

/* Close Button */
.social-proof-card .sp-close {
    position: absolute;
    top: -10px;
    right: -12px;
    background: transparent;
    border: none;
    font-size: 18px;
    color: #999;
    cursor: pointer;
    padding: 5px;
    line-height: 1;
}

.social-proof-card .sp-close:hover {
    color: #333;
}

/* Hover Effect on Card */
.social-proof-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}
