/* =========================================
   1. ПЛАВАЮЩАЯ КНОПКА ВИДЖЕТА
   ========================================= */
#cpg-widget-btn {
    position: fixed !important;
    bottom: 120px !important;
    right: 20px !important;
    width: 65px;
    height: 65px;
    background-color: #aa5aa9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9999;
    box-shadow: 0 4px 15px rgba(255, 87, 34, 0.4);
    transition: transform 0.3s ease;
}
#cpg-widget-btn:hover {
    transform: scale(1.1);
}
.cpg-icon-gift svg {
    width: 32px;
    height: 32px;
    display: block;
}

/* =========================================
   2. ТЕМНЫЙ ФОН (ОВЕРЛЕЙ)
   ========================================= */
#cpg-modal-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0, 0, 0, 0.6);
    z-index: 100000;
    display: none; /* Скрыто по умолчанию */
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
/* Класс .active добавляется скриптом при клике */
#cpg-modal-overlay.active {
    display: flex !important;
    opacity: 1;
}

/* =========================================
   3. САМО МОДАЛЬНОЕ ОКНО
   ========================================= */
.cpg-modal-container {
    background: #fff;
    width: 90%;
    max-width: 420px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    animation: cpg-pop 0.3s ease-out;
}
@keyframes cpg-pop {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* Кнопка закрытия (крестик) */
.cpg-modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    color: #999;
    z-index: 10;
    padding: 0;
}
.cpg-modal-close:hover {
    color: #333;
}

/* Переключение шагов */
.cpg-step {
    display: none;
}
.cpg-step.active {
    display: block;
}

/* =========================================
   4. ВНУТРЕННИЙ КОНТЕНТ (БАННЕР, ТЕКСТЫ)
   ========================================= */
.cpg-image-box {
    width: 100%;
    min-height: 200px;
}
.cpg-content-box {
    padding: 25px;
    text-align: center;
}
.cpg-title {
    font-size: 22px;
    margin-top: 0;
    margin-bottom: 10px;
    font-weight: bold;
    color: #333;
}
.cpg-subtitle {
    font-size: 15px;
    color: #666;
    margin-bottom: 20px;
}

/* =========================================
   5. ФОРМА (ИНПУТЫ И ЧЕКБОКСЫ)
   ========================================= */
.cpg-field-group {
    margin-bottom: 15px;
    text-align: left;
}
.cpg-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    box-sizing: border-box;
}
.cpg-input:focus {
    border-color: #ff5722;
    outline: none;
}
.cpg-error-text {
    color: red;
    font-size: 12px;
    display: block;
    margin-top: 5px;
}

.cpg-checkbox-group {
    font-size: 13px;
    color: #666;
    line-height: 1.4;
}
.cpg-checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-weight: normal;
}
.cpg-checkbox-label input {
    margin-right: 8px;
    margin-top: 3px;
}
.cpg-checkbox-label a {
    color: #ff5722;
    text-decoration: underline;
}

/* =========================================
   6. КНОПКИ ДЕЙСТВИЯ
   ========================================= */
.cpg-btn {
    display: block;
    width: 50%;                
    margin-left: auto;         
    margin-right: auto;      
    padding: 14px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    border: none;
    text-align: center;      
    transition: background 0.2s;
}
}
.cpg-btn-primary {
    background: #ff5722;
    color: #fff;
    margin-bottom: 10px;
}
.cpg-btn-primary:hover {
    background: #e64a19;
}
.cpg-btn-link {
    background: none;
    color: #999;
    font-weight: normal;
}
.cpg-btn-link:hover {
    color: #666;
    text-decoration: underline;
}

/* Шаг 3: Галочка успешной отправки */
.cpg-success-icon {
    font-size: 60px;
    color: #4caf50;
    margin-bottom: 15px;
}


/* =========================================
   7. МОБИЛЬНАЯ ВЕРСИЯ (АДАПТИВ)
   ========================================= */
@media (max-width: 767px) {
    #cpg-widget-btn {
        bottom: 160px !important;
        right: 19px !important;
        width: 52px !important;
        height: 52px !important;
        background-color: #aa5aa9 !important;
    }
    
    .cpg-icon-gift svg {
        width: 26px !important;
        height: 26px !important;
    }
}