/* Popup Overlay */
.cplde-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 99998;
    backdrop-filter: blur(5px);
}

/* Popup Container */
.cplde-popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    width: 90%;
    max-width: 500px;
    border-radius: 12px;
    z-index: 99999;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.cplde-popup-content {
    padding: 30px;
    position: relative;
}

.cplde-popup h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 24px;
    color: #333;
    font-family: inherit;
    text-align: center;
}

.cplde-popup p {
    text-align: center;
    color: #666;
    margin-bottom: 20px;
    font-size: 14px;
}

/* Close Button */
.cplde-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #888;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s;
}

.cplde-close:hover {
    color: #333;
}

/* Form Styles */
.cplde-form-group {
    margin-bottom: 15px;
}

.cplde-form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #555;
    font-size: 14px;
}

.cplde-form-group input,
.cplde-form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
    box-sizing: border-box;
    transition: border-color 0.3s;
}

.cplde-form-group input:focus,
.cplde-form-group textarea:focus {
    outline: none;
    border-color: #0073aa;
    box-shadow: 0 0 0 1px #0073aa;
}

.cplde-form-group button {
    width: 100%;
    padding: 12px;
    background: #0073aa;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 10px;
}

.cplde-form-group button:hover {
    background: #005177;
}

.cplde-form-group button:disabled {
    background: #ccc;
    cursor: not-allowed;
}

/* Response Messages */
#cplde-form-response {
    margin-top: 15px;
    text-align: center;
    font-size: 14px;
}

#cplde-form-response.success {
    color: #28a745;
}

#cplde-form-response.error {
    color: #dc3545;
}

/* Clickable card class */
.current-product-list-download {
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.current-product-list-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 600px) {
    .cplde-popup-content {
        padding: 20px;
    }
}