/* AAG Social Proof — recent-bookings toast. Neutral, tasteful, self-contained. */
.aag-sp-wrap {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 9998;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.aag-sp-toast {
    pointer-events: auto;
    display: flex;
    align-items: center;
    gap: 12px;
    width: 320px;
    max-width: calc(100vw - 40px);
    padding: 10px 36px 10px 10px;
    background: #ffffff;
    border: 1px solid #e7e2e3;
    border-radius: 14px;
    box-shadow: 0 4px 12px rgba(26, 28, 28, .10), 0 12px 32px rgba(26, 28, 28, .08);
    color: #1a1c1c;
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    position: relative;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .35s ease, transform .35s ease;
}
.aag-sp-toast.aag-sp-in  { opacity: 1; transform: translateY(0); }
.aag-sp-toast.aag-sp-out { opacity: 0; transform: translateY(14px); }
.aag-sp-toast.aag-sp-noanim { transition: none; }
.aag-sp-toast:hover { box-shadow: 0 6px 16px rgba(26, 28, 28, .14), 0 16px 40px rgba(26, 28, 28, .10); }

.aag-sp-thumb {
    flex: 0 0 auto;
    width: 46px;
    height: 46px;
    border-radius: 9px;
    background-size: cover;
    background-position: center;
    background-color: #f0eeee;
}

.aag-sp-body { display: flex; flex-direction: column; gap: 3px; min-width: 0; }

.aag-sp-line {
    font-size: 13px;
    line-height: 1.35;
    color: #1a1c1c;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.aag-sp-line strong { font-weight: 700; }
.aag-sp-region { font-weight: 400; color: #5e5e5e; }

.aag-sp-meta {
    font-size: 11px;
    color: #9a9590;
    display: flex;
    align-items: center;
    gap: 5px;
}
.aag-sp-check {
    color: #1E9E5A;
    font-size: 11px;
    line-height: 1;
}

.aag-sp-close {
    position: absolute;
    top: 6px;
    right: 8px;
    border: none;
    background: none;
    color: #b9b4b4;
    font-size: 17px;
    line-height: 1;
    cursor: pointer;
    padding: 2px 4px;
    border-radius: 6px;
}
.aag-sp-close:hover { color: #5e5e5e; background: #f3f3f4; }

@media (max-width: 767px) {
    .aag-sp-wrap { left: 12px; right: 12px; bottom: 12px; }
    .aag-sp-toast { width: auto; }
}
