/* themes/pns-watch/assets/css/notification-fomo.css */
.fomo-notification {
    position: fixed;
    z-index: 9999;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    width: 340px;
    max-width: 90vw;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
}

.fomo-notification.visible {
    opacity: 1;
    visibility: visible;
}

/* Positions */
.fomo-notification.bottom-left {
    bottom: 20px;
    left: 20px;
    transform: translateY(20px) scale(0.95);
}
.fomo-notification.bottom-left.visible {
    transform: translateY(0) scale(1);
}

.fomo-notification.bottom-right {
    bottom: 20px;
    right: 20px;
    transform: translateY(20px) scale(0.95);
}
.fomo-notification.bottom-right.visible {
    transform: translateY(0) scale(1);
}

.fomo-notification.top-left {
    top: 20px;
    left: 20px;
    transform: translateY(-20px) scale(0.95);
}
.fomo-notification.top-left.visible {
    transform: translateY(0) scale(1);
}

.fomo-notification.top-right {
    top: 20px;
    right: 20px;
    transform: translateY(-20px) scale(0.95);
}
.fomo-notification.top-right.visible {
    transform: translateY(0) scale(1);
}


.fomo-content {
    display: flex;
    align-items: center;
    padding: 12px;
    position: relative;
    background: #fff;
}

.fomo-image {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 12px;
    flex-shrink: 0;
}

.fomo-text {
    flex: 1;
    font-size: 13px;
    line-height: 1.4;
    color: #4a5568;
    padding-right: 15px;
}

.fomo-title {
    margin: 0 0 2px 0;
}

.fomo-name {
    font-weight: 700;
    color: #2d3748;
}

.fomo-action {
    color: #718096;
}

.fomo-product {
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 220px;
}

.fomo-product a {
    color: #3182ce;
    text-decoration: none;
    font-weight: 600;
}

.fomo-product a:hover {
    text-decoration: underline;
}

.fomo-time {
    color: #a0aec0;
    margin: 2px 0 0 0;
    font-size: 11px;
}

.fomo-close {
    position: absolute;
    top: 4px;
    right: 4px;
    background: none;
    border: none;
    font-size: 18px;
    color: #cbd5e0;
    cursor: pointer;
    line-height: 1;
    padding: 2px 6px;
    border-radius: 50%;
    transition: color 0.2s;
}
.fomo-close:hover {
    color: #718096;
    background: #f7fafc;
}

/* Mobile responsive */
@media (max-width: 480px) {
    .fomo-notification {
        width: calc(100vw - 40px);
        max-width: none;
    }
}
