/* OG Toast — Pandora Paris butik */
.og-toast-container {
    position: fixed;
    top: 86px;
    right: 16px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
    font-family: 'Nunito', -apple-system, sans-serif;
}

.og-toast {
    background: #fff;
    min-width: 280px;
    max-width: 340px;
    border-radius: 14px;
    padding: 13px 14px 15px;
    border: 1px solid #f0e4ea;
    box-shadow: 0 10px 36px rgba(212, 137, 159, 0.14);
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    position: relative;
    overflow: hidden;
    pointer-events: auto;
    transform: translateX(108%) scale(0.96);
    opacity: 0;
    transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1),
                opacity 0.38s ease;
}

.og-toast::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    border-radius: 14px 0 0 14px;
    background: #d4899f;
}

.og-toast.show {
    transform: translateX(0) scale(1);
    opacity: 1;
}

.og-toast.success::before { background: linear-gradient(180deg, #f4b8cc, #d4899f); }
.og-toast.error::before   { background: linear-gradient(180deg, #f0a0a8, #d46a7a); }
.og-toast.warning::before { background: linear-gradient(180deg, #f5c9a0, #e8a86a); }
.og-toast.info::before    { background: linear-gradient(180deg, #c9b0d8, #a87bb0); }

.og-toast-content {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    flex: 1;
    min-width: 0;
    padding-left: 4px;
}

.og-toast-icon-box {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.og-toast.success .og-toast-icon-box {
    background: #fce8ef;
    color: #d4899f;
}

.og-toast.error .og-toast-icon-box {
    background: #fde8ec;
    color: #d46a7a;
}

.og-toast.warning .og-toast-icon-box {
    background: #fff3e8;
    color: #d49a5a;
}

.og-toast.info .og-toast-icon-box {
    background: #f3e8f8;
    color: #a87bb0;
}

.og-toast-text-group {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
    padding-top: 2px;
}

.og-toast-title {
    font-size: 0.82rem;
    font-weight: 700;
    color: #4a3040;
    line-height: 1.25;
    letter-spacing: 0.01em;
}

.og-toast-msg {
    font-size: 0.8rem;
    color: #8f7a86;
    font-weight: 500;
    line-height: 1.45;
    word-break: break-word;
}

.og-toast-close {
    cursor: pointer;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #c4b0ba;
    font-size: 16px;
    transition: background 0.15s, color 0.15s;
    flex-shrink: 0;
    margin-top: 2px;
}

.og-toast-close:hover {
    background: #faf5f7;
    color: #d4899f;
}

.og-toast-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #faf5f7;
}

.og-toast-progress-bar {
    height: 100%;
    width: 100%;
    transform-origin: left center;
}

.og-toast.success .og-toast-progress-bar {
    background: linear-gradient(90deg, #f4b8cc, #d4899f);
}

.og-toast.error .og-toast-progress-bar {
    background: linear-gradient(90deg, #f0a0a8, #d46a7a);
}

.og-toast.warning .og-toast-progress-bar {
    background: linear-gradient(90deg, #f5c9a0, #e8a86a);
}

.og-toast.info .og-toast-progress-bar {
    background: linear-gradient(90deg, #c9b0d8, #a87bb0);
}

@media (max-width: 576px) {
    .og-toast-container {
        top: auto;
        bottom: calc(16px + env(safe-area-inset-bottom, 0px));
        right: 12px;
        left: 12px;
        align-items: stretch;
    }

    .og-toast {
        min-width: 0;
        max-width: none;
        width: 100%;
        transform: translateY(110%) scale(0.96);
    }

    .og-toast.show {
        transform: translateY(0) scale(1);
    }

    body.pd-has-sticky-bar .og-toast-container {
        bottom: calc(72px + env(safe-area-inset-bottom, 0px));
    }
}
