/* ===== Вікно корзини ===== */
#order-form {
    width: 360px;
    background: #fff;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    padding: 14px 16px 14px;
    border: 1px solid #d0d0d0;
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    font-size: 14px;
    z-index: 100000;
    display: none;
    max-height: 92vh;
    overflow-y: auto;
    box-sizing: border-box;
}

/* Кнопка закрити */
#close-order {
    position: absolute;
    top: 8px;
    right: 12px;
    font-size: 20px;
    line-height: 1;
    color: #999;
    text-decoration: none;
}
#close-order:hover { color: #333; }

/* Заголовки */
.bl1 {
    color: #1e62ef;
    text-align: center;
    margin: 2px 0 8px;
    font-size: 15px;
    font-weight: bold;
}
#order-title {
    margin-top: 10px;
}

/* Таблиця товарів */
.t1 {
    width: 100%;
    font-size: 13px;
    border-collapse: collapse;
    margin-bottom: 2px;
}
.t1 td {
    padding: 3px 5px;
    border: 1px dashed #c8c8c8;
}
.t1 tr:hover { background: #f9f9f9; }
.t1 .tr1 td { background: #f4f4f4; }

/* Кнопка видалити */
.del img {
    width: 15px;
    height: 15px;
    opacity: 0.6;
    vertical-align: middle;
}
.del:hover img { opacity: 1; }

/* ===== Поля вводу ===== */
.order-fields {
    margin-top: 6px;
}
.field-wrap {
    position: relative;
    margin-bottom: 7px;
}
.field-wrap input {
    width: 100%;
    box-sizing: border-box;
    padding: 7px 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 13px;
    outline: none;
    transition: border-color 0.2s;
    font-family: inherit;
    height: 32px;
}
.field-wrap input:focus {
    border-color: #1e62ef;
    box-shadow: 0 0 0 2px rgba(30,98,239,0.1);
}
.field-wrap input.input-error {
    border-color: #e53935;
}
.field-err {
    display: none;
    font-size: 11px;
    color: #e53935;
    margin-top: 2px;
    padding-left: 2px;
}
.field-err.visible {
    display: block;
}

/* ===== Кнопки ===== */
.order-buttons {
    display: flex;
    gap: 6px;
    margin-top: 10px;
    box-sizing: border-box;
    width: 100%;
}
#send {
    flex: 1;
    text-align: center;
    padding: 7px 6px;
    background: #1e62ef;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 13px;
    box-sizing: border-box;
    white-space: nowrap;
    overflow: hidden;
}
#send:hover { background: #1450c8; }

#close-order1 {
    flex: 1;
    text-align: center;
    padding: 7px 6px;
    background: #f0f0f0;
    color: #555;
    border-radius: 5px;
    text-decoration: none;
    font-size: 12px;
    box-sizing: border-box;
    white-space: nowrap;
    overflow: hidden;
}
#close-order1:hover { background: #e0e0e0; }

/* Повідомлення про успіх */
.success-msg {
    background: #e8f5e9;
    color: #2e7d32;
    border-radius: 6px;
    padding: 8px;
    margin-top: 8px;
}

/* ===== Мобільні ===== */
@media (max-width: 420px) {
    #order-form {
        width: 96vw;
        padding: 12px 10px;
    }
    .order-buttons {
        flex-direction: column;
    }
}
