/* Фоновий шар */
.ocb-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999999;
    backdrop-filter: blur(5px);
    display: none; /* Контролюється через jQuery .css('display', 'flex') */
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

/* Стан оверлею при активності */
.ocb-overlay.visible {
    opacity: 1;
}

/* Модальне вікно */
.ocb-modal {
    background: #ffffff;
    padding: 55px 35px 35px;
    width: 90%;
    max-width: 400px;
    /*border-radius: 24px;*/
    position: relative;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    
    /* Початковий стан анімації */
    opacity: 0;
    transform: scale(0.9) translateY(30px);
    filter: blur(10px);
    transition: 
        transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), 
        opacity 0.4s ease, 
        filter 0.4s ease;
    display: none;
}

/* Активний стан вікна */
.ocb-modal.active {
    display: block !important;
    opacity: 1;
    filter: blur(0);
    transform: scale(1) translateY(0);
}

/* Контент всередині */
.ocb-product-preview {
    margin-bottom: 40px;
    /*border-bottom: 1px solid #f0f0f0;*/
    padding-bottom: 15px;
}

#ocb-product-img img {
    max-width: 130px;
    border-radius: 12px;
    margin-bottom: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

#ocb-product-title {
    font-size: 19px;
    font-weight: 700;
    color: #222;
    margin: 0;
    line-height: 1.3;
    padding-top: 0!important;
}

/* Форма */
#one-click-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

#one-click-form input {
    /*padding: 14px;*/
    border: 1px solid #f0f0f0;    
    font-size: 14px;
    transition: border-color 0.3s;
}

#one-click-form input:focus {
    border-color: #ccc;
    outline: none;
}

#one-click-form button {
    background: #000;
    color: #fff;
    border: none;
    padding: 15px;
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
    margin-top: 15px;
}

#one-click-form button:disabled {
    background: #ccc;
}

/* Закриття */
.ocb-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: #ccc;
    transition: color 0.2s;
}

.ocb-close:hover { color: #333; }

/* Успіх */
.ocb-success-icon {
    font-size: 50px;
    color: #4CAF50;
    margin-bottom: 15px;
}
/*.woocommerce .button.alt.one-click-buy-btn{
    color: #000!important;
}*/
/*.no-touch  .woocommerce .button.alt.one-click-buy-btn:hover{
    color: #9183EA!important;
}*/
