.hellocomp-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.70);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

.hellocomp-popup-box {
    display: flex;
    flex-direction: row;
    background: linear-gradient(to right, #ffffff, #dfebfa);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    max-width: 1200px;
    width: 95%;
    font-family: "new_font", sans-serif !important;
    animation: slideIn 0.4s ease;
    position: relative;
    will-change: transform, opacity;
}

.hellocomp-popup-image {
    width: 50%;
    background-image: url("https://www.hellocomp.cz/user/documents/upload/Popup/hellocompsale.png");
    background-size: cover;
    background-position: center;
    min-height: 100%;
}

.hellocomp-popup-content {
    width: 50%;
    padding: 48px 30px 64px 30px;
		font-size: 14px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    font-family: "new_font", sans-serif !important;
    position: relative;
}

.hellocomp-popup-content h2 {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 10px;
    margin-top: 10px;
    color: #000;
    font-family: "new_font", sans-serif !important;
    text-transform: uppercase;
    text-align: center;
}

.hellocomp-popup-content .hellocomp-highlight {
    font-weight: 400;
    margin-bottom: 4px;
    font-size: 16px;
    font-family: "new_font", sans-serif !important;
}

.hellocomp-popup-content p {
    font-size: 14px;
    color: #666;
    margin: 6px 0;
    line-height: 1.5;
    font-family: "new_font", sans-serif !important;
    letter-spacing: 0.3px;
}

.hellocomp-popup-form {
    margin-top: 16px;
    position: relative;
}

.hellocomp-popup-form input {
    width: 100%;
    padding: 10px 120px 10px 12px;
    font-size: 12px;
    border: 1px solid #ccc;
    font-family: "new_font", sans-serif !important;
    box-sizing: border-box;
}

.hellocomp-popup-form button {
    position: absolute;
    top: 2px;
    right: 2px;
    bottom: 2px;
    background: linear-gradient(90deg, #003366, #0072c6) !important;
    color: #fff;
    border-color: #0068b6;
    border: none;
    padding: 0 16px;
    font-size: 12px;
    cursor: pointer;
    transition: background 0.3s ease;
    font-family: "new_font", sans-serif !important;
    height: calc(100% - 4px);
    text-transform: uppercase;
}

.hellocomp-popup-form button:hover {
    background: linear-gradient(90deg, #111, #333) !important;
}

.hellocomp-gdpr {
    margin-top: 10px;
    font-size: 11px;
    color: #666;
    font-family: "new_font", sans-serif !important;
}

.hellocomp-gdpr a {
    color: #2563eb;
    text-decoration: underline;
}

.hellocomp-popup-close {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 20px;
    color: #b7c3cf;
    cursor: pointer;
    transition: color 0.3s ease;
    font-family: "new_font", sans-serif !important;
}

.hellocomp-popup-close:hover {
    color: #333;
}

.hellocomp-easteregg {
    font-size: 10px;
    color: #bfc9d7;
    position: absolute;
    bottom: 10px;
    right: 16px;
    text-align: right;
    opacity: 0.8;
    font-family: "new_font", sans-serif !important;
}

.hellocomp-easteregg a {
    color: #2563eb;
    text-decoration: underline;
}

.hellocomp-popup-note {
    position: absolute;
    bottom: 10px;
    font-size: 10px;
    color: #b7c3cf;
    opacity: 0.8;
    font-family: "new_font", sans-serif !important;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: scale(0.96) translateY(10px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@media (max-width: 768px) {
    .hellocomp-popup-box {
        flex-direction: column;
    }

    .hellocomp-popup-image,
    .hellocomp-popup-content {
        width: 100%;
    }

    .hellocomp-popup-content {
        padding: 24px;
    }

    .hellocomp-easteregg,
    .hellocomp-popup-note {
        position: static;
        text-align: center;
        margin-top: 12px;
    }
}