/* AELAB — success popup after add to basket (shared: shortcode + Product Showcase inquiry) */

#aelab-basket-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

#aelab-basket-popup.show {
    opacity: 1;
    visibility: visible;
}

.aelab-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    cursor: pointer;
}

.aelab-popup-content {
    position: relative;
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    text-align: center;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

#aelab-basket-popup.show .aelab-popup-content {
    transform: scale(1);
}

.aelab-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    color: #999;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.aelab-popup-close:hover {
    background: #f5f5f5;
    color: #333;
}

.aelab-popup-icon {
    width: 60px;
    height: 60px;
    background: #22c55e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
}

.aelab-popup-title {
    font-size: 18px;
    font-weight: 600;
    color: #1e40af;
    margin: 0 0 20px 0;
}

.aelab-popup-product {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 15px;
    margin: 0 0 25px 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.aelab-popup-product-info {
    flex: 1;
    text-align: left;
}

.aelab-popup-product-title {
    font-size: 14px;
    color: #374151;
    margin: 0;
    line-height: 1.4;
}

.aelab-popup-product-image {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.aelab-popup-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.aelab-popup-button {
    background: #e91e63;
    color: white;
    border: none;
    border-radius: 20px;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.2s ease;
}

.aelab-popup-button:hover {
    background: #c2185b;
    transform: translateY(-1px);
}

@media (max-width: 480px) {
    .aelab-popup-content {
        margin: 20px;
        padding: 25px;
    }

    .aelab-popup-product {
        flex-direction: column;
        text-align: center;
    }

    .aelab-popup-product-info {
        text-align: center;
    }
}
