.wolt-modal-overlay-c79c22aa {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.wolt-modal-overlay-c79c22aa.active {
    opacity: 1;
}
.wolt-modal-content-c79c22aa {
    background: #fff;
    width: 90%;
    max-width: 500px;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    position: relative;
    max-height: 90vh;
}
.wolt-modal-overlay-c79c22aa.active .wolt-modal-content-c79c22aa {
    transform: translateY(0);
}
.wolt-modal-close-c79c22aa {
    position: absolute;
    top: 15px; right: 15px;
    background: #fff;
    border: none;
    font-size: 24px;
    width: 32px; height: 32px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    z-index: 10;
}
.wolt-modal-image-c79c22aa {
    height: 250px;
    background-size: cover;
    background-position: center;
}
.wolt-modal-info-c79c22aa {
    padding: 20px;
    overflow-y: auto;
}
.wolt-modal-title-c79c22aa { margin: 0 0 10px; font-size: 24px; }
.wolt-modal-price-c79c22aa { font-size: 18px; color: #009de0; margin-bottom: 15px; }
.wolt-modal-desc-c79c22aa { color: #666; line-height: 1.5; }
.wolt-modal-footer-c79c22aa {
    padding: 20px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.wolt-modal-qty-ui-c79c22aa {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #f5f5f5;
    padding: 5px;
    border-radius: 25px;
}
.wolt-modal-qty-ui-c79c22aa button {
    width: 40px; height: 40px;
    border-radius: 50%;
    border: none;
    background: #fff;
    cursor: pointer;
    font-size: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.wolt-modal-add-btn-c79c22aa {
    background: #009de0;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    flex: 1;
    margin-left: 15px;
}