.kit-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999999;
}

.kit-popup {
    background: #1c1c1c;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    color: #fff;
    max-width: 320px;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
    border: 12px white solid;
}

.kit-logo {
    max-width: 80px;
    margin-bottom: 15px;
}

.kit-message {
    font-size: 16px;
    margin: 15px 0;
    line-height: 1.4;
}

.kit-products {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.kit-product-item {
    width: 70px;
    height: 70px;
    background: #00C040;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 55px;
    font-weight: bold;
}

.kit-product-item img {
    width: 85%;
    height: auto;
}