/* Subscription Alert Snackbar Styles */

.szen-snackbar {
    position: fixed;
    bottom: 20px;
    right: 20px;
    max-width: 420px;
    background-color: #1a1a1a;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    z-index: 9999;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.szen-snackbar.animate-enter {
    opacity: 1;
    transform: translateY(0);
}

.snackbar-content {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    position: relative;
}

.snackbar-icon {
    font-size: 28px;
    flex-shrink: 0;
    line-height: 1;
}

.snackbar-text {
    flex: 1;
    color: #e0e0e0;
    font-size: 14px;
    line-height: 1.5;
}

.snackbar-cta {
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.snackbar-close {
    position: absolute;
    top: 8px;
    right: 8px;
    background: none;
    border: none;
    color: #888;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    padding: 4px 8px;
    transition: color 0.2s ease;
}

.snackbar-close:hover {
    color: #fff;
}

/* Theme: Gold (Best Week) */
.szen-snackbar.theme-gold {
    border: 2px solid #feaf50;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2416 100%);
}

.szen-snackbar.theme-gold .snackbar-cta {
    background-color: #feaf50;
    color: #000;
}

.szen-snackbar.theme-gold .snackbar-cta:hover {
    background-color: #e09d45;
    transform: translateY(-1px);
}

/* Theme: Amber (Twilight Normal) */
.szen-snackbar.theme-amber {
    border: 2px solid #FFB347;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2216 100%);
}

.szen-snackbar.theme-amber .snackbar-cta {
    background-color: #FFB347;
    color: #000;
}

.szen-snackbar.theme-amber .snackbar-cta:hover {
    background-color: #ff9f2e;
    transform: translateY(-1px);
}

/* Theme: Dark (Paused Normal) */
.szen-snackbar.theme-dark {
    border: 2px solid #ff6b6b;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a1a1a 100%);
}

.szen-snackbar.theme-dark .snackbar-cta {
    background-color: #ff6b6b;
    color: #fff;
}

.szen-snackbar.theme-dark .snackbar-cta:hover {
    background-color: #ff5252;
    transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 768px) {
    .szen-snackbar {
        bottom: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }

    .snackbar-content {
        flex-wrap: wrap;
        padding: 14px 16px;
    }

    .snackbar-text {
        flex-basis: 100%;
        margin-bottom: 8px;
        font-size: 13px;
    }

    .snackbar-cta {
        flex: 1;
        text-align: center;
        font-size: 12px;
        padding: 8px 12px;
    }

    .snackbar-icon {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .snackbar-content {
        padding: 12px 14px;
    }

    .snackbar-text {
        font-size: 12px;
    }

    .snackbar-cta {
        font-size: 11px;
        padding: 6px 10px;
    }
}
