/* Aura UI - Premium Notification System for Ekomstore */

/* --- Toast Container --- */
#aura-toast-container {
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    pointer-events: none;
}

.aura-toast {
    pointer-events: auto;
    min-width: 300px;
    max-width: 450px;
    padding: 1rem 1.25rem;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(201, 163, 74, 0.2);
    border-radius: 1rem;
    color: #F4EFE6;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    gap: 1rem;
    transform: translateX(120%);
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    position: relative;
    overflow: hidden;
}

.aura-toast.active {
    transform: translateX(0);
}

.aura-toast::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 100%;
    background: #C9A34A;
    transform: scaleX(1);
    transform-origin: left;
    transition: transform linear;
}

.aura-toast.success::before { background: #10b981; }
.aura-toast.error::before { background: #ef4444; }
.aura-toast.info::before { background: #3b82f6; }

.aura-toast-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.aura-toast.success .aura-toast-icon { color: #10b981; }
.aura-toast.error .aura-toast-icon { color: #fca5a5; }
.aura-toast.info .aura-toast-icon { color: #60a5fa; }

.aura-toast-content {
    flex: 1;
}

.aura-toast-title {
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 0.15rem;
    color: #C9A34A;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.aura-toast-msg {
    font-size: 0.8rem;
    color: rgba(244, 239, 230, 0.7);
    line-height: 1.4;
}

/* --- Modal Base --- */
.aura-modal-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.aura-modal-bg.active {
    opacity: 1;
    visibility: visible;
}

.aura-modal-box {
    background: #1a1a1a;
    border: 1px solid rgba(201, 163, 74, 0.15);
    border-radius: 1.5rem;
    width: 90%;
    max-width: 480px;
    padding: 2.5rem;
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.aura-modal-bg.active .aura-modal-box {
    transform: scale(1) translateY(0);
}

.aura-modal-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.aura-modal-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    background: rgba(201, 163, 74, 0.1);
    border: 1px solid rgba(201, 163, 74, 0.2);
    color: #C9A34A;
}

.aura-modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #F4EFE6;
    margin-bottom: 0.5rem;
}

.aura-modal-desc {
    font-size: 0.9rem;
    color: rgba(244, 239, 230, 0.5);
    line-height: 1.6;
}

.aura-modal-footer {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.aura-btn {
    flex: 1;
    padding: 0.85rem;
    border-radius: 0.75rem;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.aura-btn-primary {
    background: linear-gradient(135deg, #C9A34A 0%, #a68436 100%);
    color: #111111;
}

.aura-btn-primary:hover {
    box-shadow: 0 0 20px rgba(201, 163, 74, 0.4);
    transform: translateY(-2px);
}

.aura-btn-secondary {
    background: transparent;
    border: 1px solid rgba(244, 239, 230, 0.1);
    color: rgba(244, 239, 230, 0.6);
}

.aura-btn-secondary:hover {
    background: rgba(244, 239, 230, 0.05);
    color: #F4EFE6;
}

.aura-btn-danger {
    background: #ef4444;
    color: white;
}

.aura-btn-danger:hover {
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.3);
}

/* Scrollbar styling for Aura modals */
.aura-modal-box::-webkit-scrollbar { width: 4px; }
.aura-modal-box::-webkit-scrollbar-track { background: rgba(244, 239, 230, 0.02); }
.aura-modal-box::-webkit-scrollbar-thumb { background: rgba(201, 163, 74, 0.2); border-radius: 10px; }
