/* =============================================================
   WC Sales Popup — frontend styles
   Font: Be Vietnam Pro  |  Không dùng icon thư viện ngoài
   ============================================================= */

.wcsp-container {
    position: fixed;
    z-index: 999999;
    pointer-events: none;   /* Bản thân container không chặn click */
    max-width: 340px;
    width: calc(100% - 32px);
}

/* Vị trí */
.wcsp-container.wcsp-pos--bottom-left  { left: 16px;  bottom: 20px; }
.wcsp-container.wcsp-pos--bottom-right { right: 16px; bottom: 20px; }
.wcsp-container.wcsp-pos--top-left     { left: 16px;  top: 20px;    }
.wcsp-container.wcsp-pos--top-right    { right: 16px; top: 20px;    }

/* ── Toast card ──────────────────────────────────────────── */

.wcsp-toast {
    display: flex;
    align-items: center;
    gap: 14px;

    background: #ffffff;
    border-radius: 18px;
    box-shadow:
        0 2px 6px  rgba(20, 20, 40, 0.06),
        0 10px 28px rgba(20, 20, 40, 0.10);
    padding: 14px 14px 14px 16px;

    font-family: 'Be Vietnam Pro', -apple-system, BlinkMacSystemFont, sans-serif;
    pointer-events: auto;   /* Nút đóng cần nhận click */

    /* Animation: ẩn ban đầu */
    opacity: 0;
    transform: translateY(12px) scale(0.97);
    transition: opacity 0.32s ease, transform 0.32s ease;
    will-change: opacity, transform;
}

/* Trạng thái hiển thị */
.wcsp-toast.wcsp-toast--visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* ── Ảnh sản phẩm ─────────────────────────────────────── */

.wcsp-toast__img {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    object-fit: cover;
    background: #f2f2f5;
    display: block;
}

/* ── Icon túi (fallback khi không có ảnh) ─────────────── */

.wcsp-toast__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fdeaec;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Icon túi mua hàng vẽ bằng SVG nội tuyến qua mask-image */
.wcsp-toast__icon::after {
    content: '';
    display: block;
    width: 24px;
    height: 24px;
    background-color: #c8192f;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 2L3 6v14a2 2 0 002 2h14a2 2 0 002-2V6l-3-4zm0 0h12M16 10a4 4 0 01-8 0'/%3E%3C/svg%3E");
    mask-image:          url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 2L3 6v14a2 2 0 002 2h14a2 2 0 002-2V6l-3-4zm0 0h12M16 10a4 4 0 01-8 0'/%3E%3C/svg%3E");
    -webkit-mask-repeat: no-repeat;
    mask-repeat:         no-repeat;
    -webkit-mask-size:   cover;
    mask-size:           cover;
}

/* ── Nội dung văn bản ─────────────────────────────────── */

.wcsp-toast__body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.wcsp-toast__line1,
.wcsp-toast__line2,
.wcsp-toast__line3 {
    margin: 0;
    padding: 0;
    font-family: inherit;
    text-transform: none !important;
    letter-spacing: normal !important;
}

.wcsp-toast__line1 {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    color: #1c1c28;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.wcsp-toast__line1 strong {
    font-weight: 700;
    color: #1c1c28;
}

.wcsp-toast__line2 {
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
    color: #444457;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.wcsp-toast__line3 {
    font-size: 11.5px;
    font-weight: 400;
    line-height: 1.4;
    color: #9a9cae;
    letter-spacing: 0.02em !important;
}

/* ── Nút đóng ─────────────────────────────────────────── */

.wcsp-toast__close {
    flex-shrink: 0;
    align-self: flex-start;
    width: 22px;
    height: 22px;
    border: none;
    background: transparent;
    color: #b3b5c4;
    font-size: 14px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.15s, color 0.15s;
    font-family: system-ui, sans-serif;
}

.wcsp-toast__close:hover {
    background: #f2f2f5;
    color: #555;
}

/* ── Responsive ────────────────────────────────────────── */

@media ( max-width: 400px ) {
    .wcsp-container {
        max-width: calc(100% - 24px);
    }
    .wcsp-container.wcsp-pos--bottom-left,
    .wcsp-container.wcsp-pos--bottom-right {
        left: 12px;
        right: 12px;
        bottom: 12px;
        max-width: none;
    }
}

@media ( prefers-reduced-motion: reduce ) {
    .wcsp-toast {
        transition: none;
    }
}
