/**
 * Beautiful Notifications Styles
 * Dark & Gold theme
 */

.beauty-notifications {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.beauty-notification {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(20, 16, 13, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(201,169,110,0.2);
    border-radius: 12px;
    padding: 14px 16px;
    min-width: 300px;
    max-width: 400px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.5), 0 0 0 1px rgba(201,169,110,0.06);
    opacity: 0;
    transform: translateX(420px);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: all;
    position: relative;
    overflow: hidden;
}

/* Lewa kreska kolorystyczna */
.beauty-notification::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    border-radius: 0 2px 2px 0;
}

.beauty-notification-show {
    opacity: 1;
    transform: translateX(0);
}

.beauty-notification-hide {
    opacity: 0;
    transform: translateX(420px) scale(0.95);
}

/* Ikona */
.beauty-notification-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 16px;
}

/* SUCCESS */
.beauty-notification-success {
    border-color: rgba(126, 190, 130, 0.3);
}
.beauty-notification-success::before {
    background: linear-gradient(180deg, #7ebe82, #5a9e5e);
}
.beauty-notification-success .beauty-notification-icon {
    background: rgba(126,190,130,0.15);
    color: #7ebe82;
}

/* ERROR */
.beauty-notification-error {
    border-color: rgba(224,120,120,0.3);
}
.beauty-notification-error::before {
    background: linear-gradient(180deg, #e07878, #c45a5a);
}
.beauty-notification-error .beauty-notification-icon {
    background: rgba(224,120,120,0.15);
    color: #e07878;
}

/* WARNING */
.beauty-notification-warning {
    border-color: rgba(240,185,80,0.3);
}
.beauty-notification-warning::before {
    background: linear-gradient(180deg, #f0b950, #d4962e);
}
.beauty-notification-warning .beauty-notification-icon {
    background: rgba(240,185,80,0.15);
    color: #f0b950;
}

/* INFO */
.beauty-notification-info {
    border-color: rgba(201,169,110,0.3);
}
.beauty-notification-info::before {
    background: linear-gradient(180deg, #c9a96e, #a8863d);
}
.beauty-notification-info .beauty-notification-icon {
    background: rgba(201,169,110,0.15);
    color: #c9a96e;
}

/* Treść */
.beauty-notification-content {
    flex: 1;
    min-width: 0;
}

.beauty-notification-message {
    font-family: var(--font-body, 'DM Sans', sans-serif);
    font-size: 0.875rem;
    line-height: 1.5;
    color: #f0ece4;
    font-weight: 400;
}

/* Przycisk zamknięcia */
.beauty-notification-close {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border: none;
    background: transparent;
    color: rgba(240,236,228,0.35);
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: all 0.2s ease;
    font-family: var(--font-body, sans-serif);
    font-weight: 300;
    padding: 0;
}

.beauty-notification-close:hover {
    background: rgba(255,255,255,0.08);
    color: #f0ece4;
}

/* Hover efekt */
.beauty-notification:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.6), 0 0 0 1px rgba(201,169,110,0.12);
    transform: translateY(-1px);
}

.beauty-notification-hide:hover {
    transform: translateX(420px) scale(0.95);
}

/* Mobile */
@media (max-width: 480px) {
    .beauty-notifications {
        left: 10px;
        right: 10px;
        top: 10px;
    }
    .beauty-notification {
        min-width: auto;
        max-width: 100%;
    }
}

/* Confirm dialog */
.beauty-notification-confirm {
    min-width: 340px;
}

.beauty-notification-buttons {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.875rem;
}

.beauty-confirm-btn {
    flex: 1;
    padding: 0.45rem 1rem;
    border: none;
    border-radius: 6px;
    font-family: var(--font-body, sans-serif);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.beauty-confirm-yes {
    background: linear-gradient(135deg, #a8863d, #c9a96e);
    color: #1a1209;
}

.beauty-confirm-yes:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(201,169,110,0.3);
}

.beauty-confirm-no {
    background: rgba(255,255,255,0.06);
    color: rgba(240,236,228,0.7);
    border: 1px solid rgba(201,169,110,0.15);
}

.beauty-confirm-no:hover {
    background: rgba(255,255,255,0.1);
    color: #f0ece4;
}