/*
 * ═══════════════════════════════════════════════════════════════
 * LIV INTERNATIONAL - FOMO POPUP NOTIFICATIONS
 * ═══════════════════════════════════════════════════════════════
 * Version: 1.0
 * Created: November 2024
 * Purpose: Social proof notifications for orders, signups, and promos
 * Mobile-First Design with Modern Animations
 * ═══════════════════════════════════════════════════════════════
 */

/* ═══════════════════════════════════════════════════════════════
   CONTAINER & POSITIONING
   ═══════════════════════════════════════════════════════════════ */

.livFomo-container {
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 999999;
    pointer-events: none;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Mobile positioning */
@media (max-width: 767px) {
    .livFomo-container {
        bottom: 10px;
        right: 10px;
        left: 10px;
        max-width: calc(100% - 20px);
    }
}

/* ═══════════════════════════════════════════════════════════════
   POPUP CARD - BASE STYLES
   ═══════════════════════════════════════════════════════════════ */

.livFomo-popup {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15),
                0 0 0 1px rgba(0, 0, 0, 0.05);
    padding: 16px 20px;
    min-width: 320px;
    max-width: 400px;
    pointer-events: auto;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transform: translateY(150%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Active state - slide in */
.livFomo-popup.livFomo-active {
    transform: translateY(0);
    opacity: 1;
}

/* Hiding state - slide out */
.livFomo-popup.livFomo-hiding {
    transform: translateY(150%);
    opacity: 0;
    transition: all 0.3s ease-in;
}

/* Mobile responsive */
@media (max-width: 767px) {
    .livFomo-popup {
        min-width: 100%;
        max-width: 100%;
        padding: 14px 16px;
        border-radius: 10px;
    }
}

/* Hover effect */
.livFomo-popup:hover {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2),
                0 0 0 1px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.livFomo-popup.livFomo-hiding:hover {
    transform: translateY(150%);
}

/* ═══════════════════════════════════════════════════════════════
   COLOR ACCENT BAR - Left Border
   ═══════════════════════════════════════════════════════════════ */

.livFomo-popup::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, currentColor 0%, currentColor 100%);
    border-radius: 12px 0 0 12px;
}

/* ═══════════════════════════════════════════════════════════════
   TYPE-SPECIFIC COLORS & BACKGROUNDS
   ═══════════════════════════════════════════════════════════════ */

/* TYPE: ORDER (Green) */
.livFomo-popup.livFomo-order {
    background: linear-gradient(135deg, 
        rgba(0, 171, 84, 0.95) 0%, 
        rgba(0, 171, 84, 0.90) 100%);
    border: 1px solid rgba(0, 171, 84, 0.2);
}

.livFomo-popup.livFomo-order::before {
    background: linear-gradient(180deg, #00ab54 0%, #00c569 100%);
}

/* TYPE: SIGNUP (Orange) */
.livFomo-popup.livFomo-signup {
    background: linear-gradient(135deg, 
        rgba(255, 152, 0, 0.95) 0%, 
        rgba(255, 152, 0, 0.90) 100%);
    border: 1px solid rgba(255, 152, 0, 0.2);
}

.livFomo-popup.livFomo-signup::before {
    background: linear-gradient(180deg, #ff9800 0%, #ffb74d 100%);
}

/* TYPE: PROMO (Red/Coral) */
.livFomo-popup.livFomo-promo {
    background: linear-gradient(135deg, 
        rgba(255, 68, 68, 0.95) 0%, 
        rgba(255, 68, 68, 0.90) 100%);
    border: 1px solid rgba(255, 68, 68, 0.2);
}

.livFomo-popup.livFomo-promo::before {
    background: linear-gradient(180deg, #ff4444 0%, #ff6b6b 100%);
}

/* ═══════════════════════════════════════════════════════════════
   CONTENT LAYOUT
   ═══════════════════════════════════════════════════════════════ */

.livFomo-content {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    position: relative;
    z-index: 1;
}

/* ═══════════════════════════════════════════════════════════════
   ICON/EMOJI
   ═══════════════════════════════════════════════════════════════ */

.livFomo-icon {
    font-size: 28px;
    line-height: 1;
    flex-shrink: 0;
    margin-top: 2px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

@media (max-width: 767px) {
    .livFomo-icon {
        font-size: 24px;
    }
}

/* ═══════════════════════════════════════════════════════════════
   TEXT CONTENT
   ═══════════════════════════════════════════════════════════════ */

.livFomo-text {
    flex: 1;
    min-width: 0;
}

.livFomo-message {
    font-size: 15px;
    line-height: 1.5;
    font-weight: 500;
    color: #ffffff;
    margin: 0;
    word-wrap: break-word;
}

.livFomo-message strong {
    font-weight: 600;
    color: #ffffff;
}

/* Secondary line (for signups) */
.livFomo-secondary {
    font-size: 13px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
    margin: 4px 0 0 0;
    font-weight: 400;
}

@media (max-width: 767px) {
    .livFomo-message {
        font-size: 14px;
    }
    
    .livFomo-secondary {
        font-size: 12px;
    }
}

/* ═══════════════════════════════════════════════════════════════
   CLOSE BUTTON
   ═══════════════════════════════════════════════════════════════ */

.livFomo-close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 24px;
    height: 24px;
    border: none;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    line-height: 1;
    color: #95a5a6;
    transition: all 0.2s ease;
    z-index: 2;
    pointer-events: auto;
}

.livFomo-close:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #2c3e50;
    transform: rotate(90deg);
}

.livFomo-close:active {
    transform: rotate(90deg) scale(0.9);
}

/* ═══════════════════════════════════════════════════════════════
   PULSE ANIMATION (Optional - for extra attention)
   ═══════════════════════════════════════════════════════════════ */

@keyframes livFomo-pulse {
    0% {
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    }
    50% {
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15),
                    0 0 0 8px rgba(0, 171, 84, 0.1);
    }
    100% {
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    }
}

.livFomo-popup.livFomo-pulse {
    animation: livFomo-pulse 2s ease-in-out;
}

/* ═══════════════════════════════════════════════════════════════
   ACCESSIBILITY
   ═══════════════════════════════════════════════════════════════ */

/* Focus states for keyboard navigation */
.livFomo-popup:focus {
    outline: 3px solid rgba(0, 171, 84, 0.5);
    outline-offset: 2px;
}

.livFomo-close:focus {
    outline: 2px solid rgba(0, 171, 84, 0.5);
    outline-offset: 1px;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    .livFomo-popup,
    .livFomo-close {
        transition: none;
        animation: none;
    }
    
    .livFomo-popup.livFomo-active {
        transform: none;
    }
    
    .livFomo-popup.livFomo-hiding {
        transform: none;
    }
}

/* ═══════════════════════════════════════════════════════════════
   PRINT STYLES
   ═══════════════════════════════════════════════════════════════ */

@media print {
    .livFomo-container {
        display: none !important;
    }
}

/* ═══════════════════════════════════════════════════════════════
   TABLET OPTIMIZATION
   ═══════════════════════════════════════════════════════════════ */

@media (min-width: 768px) and (max-width: 991px) {
    .livFomo-popup {
        min-width: 300px;
        max-width: 350px;
    }
}

/* ═══════════════════════════════════════════════════════════════
   LANDSCAPE MOBILE
   ═══════════════════════════════════════════════════════════════ */

@media (max-width: 767px) and (orientation: landscape) {
    .livFomo-container {
        bottom: 5px;
        right: 5px;
        left: auto;
        max-width: 300px;
    }
    
    .livFomo-popup {
        min-width: 280px;
        padding: 10px 14px;
    }
}

/* ═══════════════════════════════════════════════════════════════
   END OF STYLESHEET
   ═══════════════════════════════════════════════════════════════ */