/* ─── Abandoned Cart Toast ─────────────────────────────────────────────────── */
.ac-toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 340px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.14), 0 2px 8px rgba(0, 0, 0, 0.08);
    padding: 16px;
    z-index: 9999;
    transform: translateX(calc(100% + 32px));
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.35s ease;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.ac-toast--visible {
    transform: translateX(0);
    opacity: 1;
}

.ac-toast--hiding {
    transform: translateX(calc(100% + 32px));
    opacity: 0;
}

/* Kapat butonu */
.ac-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 26px;
    height: 26px;
    border: none;
    background: #f3f4f6;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    transition: background 0.2s, color 0.2s;
    flex-shrink: 0;
}
.ac-close:hover {
    background: #e5e7eb;
    color: #1f2937;
}

/* İçerik satırı */
.ac-body {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    padding-right: 20px;
}

/* Görsel */
.ac-image-wrap {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    border-radius: 10px;
    overflow: hidden;
    background: #f3f4f6;
}
.ac-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ac-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    color: #3b82f6;
    font-size: 28px;
}

/* Bilgi alanı */
.ac-info {
    flex: 1;
    min-width: 0;
}
.ac-label {
    font-size: 11px;
    font-weight: 600;
    color: #f97316;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 3px;
}
.ac-title {
    font-size: 14px;
    font-weight: 700;
    color: #111827;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 2px;
}
.ac-room {
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ac-dates {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    font-size: 11px;
    color: #4b5563;
}
.ac-dates span {
    display: flex;
    align-items: center;
    gap: 3px;
}
.ac-dates i {
    color: #9ca3af;
    font-size: 10px;
}
.ac-price {
    margin-top: 5px;
    font-size: 15px;
    font-weight: 700;
    color: #1f2937;
}
.ac-price span {
    font-size: 11px;
    font-weight: 400;
    color: #9ca3af;
}

/* CTA Butonu */
.ac-cta {
    width: 100%;
    padding: 11px 16px;
    background: #3b82f6;
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.2s, transform 0.15s;
}
.ac-cta:hover {
    background: #2563eb;
    transform: translateY(-1px);
}
.ac-cta:active {
    transform: translateY(0);
}

/* Geri sayım */
.ac-timer {
    text-align: center;
    font-size: 11px;
    color: #9ca3af;
    margin-top: 8px;
}

/* Mobil */
@media (max-width: 480px) {
    .ac-toast {
        bottom: 16px;
        right: 12px;
        left: 12px;
        width: auto;
        transform: translateY(calc(100% + 32px));
    }
    .ac-toast--visible {
        transform: translateY(0);
    }
    .ac-toast--hiding {
        transform: translateY(calc(100% + 32px));
    }
}
