/* Оверлей (невидимый кликабельный фон, чтобы не перекрывать весь сайт, если хотим попап сбоку) 
   Если нужен модальный на весь экран - поменяй background и pointer-events */
   .aisw-popup-overlay {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

/* Контейнер попапа */
.aisw-popup-container {
    background: #ffffff;
    width: 340px;
    max-width: 90vw;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
}

/* Состояние видимости */
.aisw-popup-container._visible {
    transform: translateY(0);
    opacity: 1;
}

/* Кнопка закрытия */
.aisw-close {
    position: absolute;
    top: -25px;
    color: #000;
    right: 0;
    background: none;
    border: none;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    padding: 5px;

}
.aisw-close:hover {
    color: #333;
}

/* Текст */
.aisw-title {
    text-align: center;
    padding-bottom: 0;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1.3;
    color: #1a1a1a;
}
.aisw-desc {
    font-size: 15px;
    text-align: center;
    color: #000000;
    line-height: 1.2;
}

/* Стили для товара (Рекомендация) */
.aisw-popup-img img {
    width: 100%;
    /* height: 180px; */
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 8px;
}
.aisw-prod-name {
    font-weight: 600;
    font-size: 15px;
    margin-top: 5px;
    color: #000;
}
.aisw-price {
    font-weight: bold;
    color: #54940d; /* Зеленый под тему CBD/Health */
    font-size: 16px;
}
.aisw-btn {
    display: inline-block;
    text-align: center;
    background: #79b833;
    color: #fff;
    text-decoration: none;
    padding: 10px;
    border-radius: 8px;
    font-size: 14px;
    margin-top: 5px;
    transition: opacity 0.2s;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
}
.aisw-btn:hover {
    opacity: 0.9;
    color: #fff;
}

/* Специфика типов */
._type-joke .aisw-title::before {
    content: "😄 ";
}
._type-greeting .aisw-title::before {
    content: "👋 ";
}

.aisw-prod-card{
    padding: 10px;
    background: #ffffff;
    border-radius: 20px;
}
/* Адаптив */
@media (max-width: 768px) {
    .aisw-popup-overlay {
        bottom: 0;
        right: 0;
        left: 0;
        display: flex;
        justify-content: end;
        align-items: flex-end;
        padding-bottom: 15px;
        right: 15px;
    }
    .aisw-popup-container._type-recommendation{
        width: 200px;
        padding: 10px;
        gap: 5px;
    }
    .aisw-prod-name {
        font-size: 12px;
    }
    .aisw-btn {
        font-size: 11px;
    }
    .aisw-popup-container._type-recommendation .aisw-title {
        font-size: 11px;
    }
    .aisw-price {
        font-size: 14px;
    }
}