/* Фоновий шар */
.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;
    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 35px;
    width: 90%;
    max-width: 400px;
    border-radius: 24px;
    position: absolute;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: scale(0.92) translateY(20px);
    filter: blur(5px);
    transition: 
        transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), 
        opacity 0.4s ease, 
        visibility 0.4s ease,
        filter 0.4s ease;
}

.ocb-modal.active {
    opacity: 1;
    visibility: visible;
    filter: blur(0);
    transform: scale(1) translateY(0);
    z-index: 2;
}

/* Компоненти прев'ю товару */
.ocb-product-preview {
    margin-bottom: 20px;
    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: 34px;
    font-weight: 400;
    color: #222;
    margin: 0 0 15px 0;
    line-height: 1.3;
}

/* СТИЛІ БЛОКУ ЦІН */
.ocb-price-block {
    background: #f9f9f9;
    padding: 12px 18px;
    border-radius: 14px;
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: left;
}

.ocb-price-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #666;
}

.ocb-price-row strong {
    color: #222;
    font-weight: 600;
}

.ocb-price-row.ocb-total {
    border-top: 1px dashed #ddd;
    padding-top: 6px;
    margin-top: 2px;
    font-size: 16px;
    color: #000;
}

.ocb-price-row.ocb-total strong {
    color: #e53935; /* Червоний акцент на фінальну ціну разом */
    font-weight: 700;
}

/* Блок кількості */
.ocb-quantity-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.ocb-qty-btn {
    width: 45px;
    height: 36px;
    border: 2px solid #e0e0e0;
    background: #fff;
    border-radius: 50%;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #333;
    transition: all 0.2s ease;
    user-select: none;
}

.ocb-qty-btn:hover {
    border-color: #000;
    background: #000;
    color: #fff;
}

.ocb-quantity-input {
    width: 50px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    border: none !important;
    background: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
    -moz-appearance: textfield!important;
    border: 1px solid  #e0e0e0!important;
    box-shadow: none!important;
}

.ocb-quantity-input::-webkit-outer-spin-button,
.ocb-quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Форма та інпути */
#one-click-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

#one-click-form input[type="text"],
#one-click-form input[type="tel"] {
    padding: 5px 14px;
    border: 2px solid  #e0e0e0;
    font-size: 16px;
    transition: border-color 0.3s;
    width: 100%;
    box-shadow: none!important;
    background: #fff!important;
}

#one-click-form input:focus {
    border-color: #000;
    outline: none;
}

#one-click-form button[type="submit"] {
    background: #d62226;
    color: #fff!important;
    border: none;
    padding: 15px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    font-size: 18px;
    transition: background 0.2s;
    border-radius: 30px;
    margin-top: 15px;
}

#one-click-form button[type="submit"]:disabled {
    background: #ccc;
}

/* Хрестик закриття */
.ocb-close {
    position: absolute;
    top: 15px; right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: #ccc;
    transition: color 0.2s;
    z-index: 5;
}
.ocb-close:hover { color: #333; }

/* Успіх */
.ocb-success-icon {
    font-size: 50px;
    color: #4CAF50;
    margin-bottom: 15px;
}

/* Головна кнопка */
.one-click-buy-btn.disabled {
    opacity: 0.5;
    filter: grayscale(1);
    cursor: not-allowed;
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}
