/**
 * Shopee Ads – sticky bar (mobile). Chiều cao cố định để không gây layout-shift,
 * trượt lên mượt và tự ẩn khi có prefers-reduced-motion.
 */

.shopee-ads-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99990;
    display: flex;
    align-items: center;
    gap: 10px;
    box-sizing: border-box;
    min-height: 64px;
    padding: 8px 44px 8px 10px; /* chừa chỗ nút đóng bên phải */
    background: #ffffff;
    border-top: 1px solid #f0f0f0;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.12);
    /* Trạng thái ẩn ban đầu: nằm dưới màn hình. */
    transform: translateY(110%);
    transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
    /* Hỗ trợ tai thỏ / thanh home iPhone. */
    padding-bottom: calc(8px + env(safe-area-inset-bottom, 0px));
}

.shopee-ads-bar.is-visible {
    transform: translateY(0);
}

.shopee-ads-link {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1 1 auto;
    min-width: 0;
    text-decoration: none;
    color: #222;
}

.shopee-ads-img {
    flex: 0 0 auto;
    width: 48px;
    height: 48px;
    border-radius: 8px;
    object-fit: cover;
    background: #f5f5f5;
}

.shopee-ads-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
    line-height: 1.25;
}

.shopee-ads-title {
    font-size: 14px;
    font-weight: 600;
    color: #222;
    /* Giới hạn 2 dòng, có dấu … */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.shopee-ads-price {
    font-size: 13px;
    font-weight: 700;
    color: #ee4d2d; /* cam Shopee */
    margin-top: 2px;
}

.shopee-ads-btn {
    flex: 0 0 auto;
    align-self: center;
    white-space: nowrap;
    background: #ee4d2d;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 9px 14px;
    border-radius: 999px;
}

.shopee-ads-close {
    position: absolute;
    top: 6px;
    right: 8px;
    width: 28px;
    height: 28px;
    line-height: 1;
    font-size: 20px;
    color: #999;
    background: transparent;
    border: 0;
    cursor: pointer;
    padding: 0;
}

.shopee-ads-close:hover {
    color: #333;
}

/* ------------------------------------------------------------------ *
 * Vị trí 2: Card chèn trong kết quả tra cứu
 * ------------------------------------------------------------------ */

.shopee-ads-inline {
    position: relative;
    max-width: 800px;
    margin: 16px auto;
    box-sizing: border-box;
    padding: 14px 12px 12px;
    background: #fff;
    border: 1px solid #ffe0d6;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(238, 77, 45, 0.08);
}

.shopee-ads-inline-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    color: #ee4d2d;
    background: #fff2ee;
    padding: 2px 8px;
    border-radius: 999px;
    margin-bottom: 10px;
}

/* Trong card inline, ảnh to hơn để nhìn rõ sản phẩm. */
.shopee-ads-inline .shopee-ads-img {
    width: 64px;
    height: 64px;
}

.shopee-ads-inline .shopee-ads-title {
    font-size: 15px;
}

/* Chỉ là lớp bảo vệ – JS đã không hiển thị trên desktop. */
@media (min-width: 1025px) {
    .shopee-ads-bar,
    .shopee-ads-inline {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .shopee-ads-bar {
        transition: none;
    }
}

@media (prefers-color-scheme: dark) {
    .shopee-ads-bar,
    .shopee-ads-inline {
        background: #1f1f1f;
        border-color: #333;
    }
    .shopee-ads-bar {
        border-top-color: #333;
    }
    .shopee-ads-link,
    .shopee-ads-title {
        color: #f2f2f2;
    }
}
