/* ===========================================
   Toast Social Proof - Styles
   =========================================== */

.social-proof-toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    max-width: 320px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 9999;
    opacity: 0;
    transform: translateY(20px) translateX(20px);
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 4px solid #2d5016;
}

.social-proof-toast.show {
    opacity: 1;
    transform: translateY(0) translateX(0);
    visibility: visible;
}

.social-proof-toast.hide {
    opacity: 0;
    transform: translateY(20px) translateX(20px);
    visibility: hidden;
}

/* Icon */
.toast-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: linear-gradient(135deg, #2d5016, #3d6b1e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 18px;
}

/* Content */
.toast-content {
    flex: 1;
}

.toast-message {
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a;
    line-height: 1.4;
    margin: 0;
}

.toast-time {
    font-size: 12px;
    color: #888888;
    margin-top: 4px;
}

/* Close button */
.toast-close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 20px;
    height: 20px;
    border: none;
    background: transparent;
    color: #999999;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
    padding: 0;
    line-height: 1;
}

.toast-close:hover {
    background: #f0f0f0;
    color: #333333;
}

/* Responsive */
@media (max-width: 480px) {
    .social-proof-toast {
        left: 16px;
        right: 16px;
        bottom: 16px;
        max-width: none;
    }
}
