/* === Overlay === */
#zntech-popup-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.25);
    backdrop-filter: blur(2px);
    z-index: 9998;
}

.zntech-configurator{
    padding-top:15px;
    
}

.zntech-config-group{

    padding-bottom:20px;
    
}

.zntech-config-title{
    padding-bottom:10px;
    font-size:14px;
    font-weight: bold;
    
}



/* === Popup === */
#zntech-popup {
    display: none;
    position: fixed;
    max-width: 500px;
    width: 90%;
    background: #fff;
    padding: 25px 30px;
    border-radius: 14px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    z-index: 9999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: inherit;
    animation: zntech-popup-show 0.25s ease;
}

@keyframes zntech-popup-show {
    from { transform: translate(-50%, -45%); opacity: 0; }
    to   { transform: translate(-50%, -50%); opacity: 1; }
}

/* === Close button (top right) === */
#zntech-popup-close {
    background: none;
    border: none;
    font-size: 26px;
    position: absolute;
    right: 12px;
    top: 8px;
    color: #1c2c4c;
    cursor: pointer;
}

/* === Title === */
#zntech-popup-title {
    color: #1c2c4c;
    margin: 0 0 10px;
    font-size: 22px;
}

/* === Subtitle === */
#zntech-popup-subtitle {
    color: #747c9c;
    margin-bottom: 15px;
    font-size: 15px;
}

/* === Text === */
#zntech-popup-text {
    color: #333;
    line-height: 1.55;
}

/* === Bottom close button === */
#zntech-popup-close-bottom {
    background: #c01c54;
    border: none;
    padding: 10px 18px;
    color: #fff;
    border-radius: 10px;
    margin-top: 20px;
    cursor: pointer;
    font-weight: 600;
}

/* === Configurator buttons === */
.zntech-config-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.zntech-config-btn {
    background: #f6f7fa;
    border: 1px solid #d7dbe5;
    padding: 8px 14px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    color: #1c2c4c;
    transition: .2s;
}

.zntech-config-btn:hover {
    background: #be195a;
   color:#fff;

}

.zntech-info-icon {
    font-size: 12px;
    opacity: .6;
}

.zntech-configurator-intro {
    background: #ffffff;
    border-radius: 14px;
    padding-top:25px;
    padding: 20px 24px;
    margin-bottom: 25px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
    font-size: 15px;
    line-height: 1.55;
}
.zntech-configurator-intro strong {
    color: var(--zn-blue);
}