﻿/* ============================================================
   Byamber Sale Notification Popup
   Bottom-left corner, mobile-safe, accessible
   ============================================================ */

#ba-sale-popup {
    position: fixed;
    bottom: 24px;
    left: 20px;
    z-index: 99990;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border: 1px solid #eadfd4;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,.16);
    padding: 12px 40px 12px 14px;
    max-width: 320px;
    width: calc(100vw - 40px);
    transition: opacity .35s ease, transform .35s ease;
    opacity: 0;
    transform: translateY(16px);
    pointer-events: none;
}

#ba-sale-popup:not([hidden]) {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Image */
.ba-sale-popup-image-wrap {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 10px;
    overflow: hidden;
    background: #f7eee8;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

#ba-sale-popup-img {
    width: 56px;
    height: 56px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

.ba-sale-popup-img-fallback {
    font-size: 26px;
    line-height: 1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Body */
.ba-sale-popup-body {
    flex: 1;
    min-width: 0;
}

.ba-sale-popup-name {
    margin: 0 0 2px;
    font-weight: 700;
    font-size: 14px;
    color: #000000;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ba-sale-popup-product {
    margin: 0 0 3px;
    font-size: 13px;
    color: #a563e5;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ba-sale-popup-meta {
    margin: 0;
    font-size: 11px;
    color: #796b64;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Close button */
.ba-sale-popup-close {
    position: absolute;
    top: 8px;
    right: 10px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 14px;
    color: #796b64;
    line-height: 1;
    padding: 2px 4px;
    border-radius: 4px;
    transition: color .2s, background .2s;
}

.ba-sale-popup-close:hover,
.ba-sale-popup-close:focus {
    color: #000000;
    background: #f7eee8;
    outline: none;
}

/* Mobile tweak */
@media (max-width: 480px) {
    #ba-sale-popup {
        bottom: 12px;
        left: 10px;
        max-width: calc(100vw - 20px);
        border-radius: 12px;
        padding: 10px 36px 10px 10px;
        gap: 10px;
    }
    .ba-sale-popup-image-wrap,
    #ba-sale-popup-img {
        width: 46px;
        height: 46px;
    }
}

/* Admin grid */
.byamber-popup-admin-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}
