/* ── BLANK YARD SIGN CALCULATOR ── */
.bys-wrap {
    font-family: Arial, sans-serif;
    max-width: 340px;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
}
.bys-header {
    background: #1a3a5c;
    padding: 14px 20px;
    text-align: center;
}
.bys-header h2 {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0;
}
.bys-subheader {
    background: #fff;
    padding: 12px 20px;
    text-align: center;
    border-bottom: 1px solid #eee;
    font-size: 13px;
    color: #555;
    line-height: 1.5;
}
.bys-body {
    background: #fff;
    padding: 16px 20px;
}
.bys-field { margin-bottom: 14px; }
.bys-field-label {
    font-size: 13px; font-weight: 700; color: #333;
    margin-bottom: 6px; display: block;
}
.bys-field-label .bys-req { color: #cc0000; margin-left: 2px; }
.bys-btn-group { display: flex; flex-wrap: wrap; gap: 6px; }
.bys-opt-btn {
    flex: 1; min-width: 80px;
    padding: 9px 10px; font-size: 13px; font-weight: 600;
    color: #333; background: #f5f5f5;
    border: 1px solid #ccc; border-radius: 4px;
    cursor: pointer; text-align: center; transition: all .15s;
}
.bys-opt-btn:hover { background: #e8e8e8; border-color: #aaa; }
.bys-opt-btn.bys-active { background: #fff; border: 2px solid #555; color: #111; }
.bys-qty-row { display: flex; align-items: center; gap: 8px; }
.bys-qty-btn {
    width: 32px; height: 32px; font-size: 18px; font-weight: 700;
    background: #eee; border: 1px solid #ccc; border-radius: 4px;
    cursor: pointer; display: flex; align-items: center;
    justify-content: center; color: #333; flex-shrink: 0;
    line-height: 1;
}
.bys-qty-btn:hover { background: #ddd; }
.bys-qty-input {
    flex: 1; padding: 8px 10px; font-size: 14px; font-weight: 600;
    border: 1px solid #ccc; border-radius: 4px;
    text-align: center; color: #333;
}
.bys-qty-input:focus { outline: none; border-color: #888; }
.bys-divider { border: none; border-top: 1px solid #e0e0e0; margin: 14px 0; }
.bys-total-price {
    font-size: 22px; font-weight: 900; color: #cc0000;
    display: block; margin-bottom: 4px;
}
.bys-markup {
    font-size: 12px; color: #555; display: block; margin-bottom: 8px;
}
.bys-zip-row { display: flex; gap: 8px; align-items: center; margin-bottom: 10px; }
.bys-zip-input {
    flex: 1; padding: 8px 10px; font-size: 13px;
    border: 1px solid #ccc; border-radius: 4px; color: #333;
}
.bys-zip-input:focus { outline: none; border-color: #888; }
.bys-ship-ok {
    font-size: 12px; color: #2a7a2a; font-weight: 700;
    padding: 6px 8px; background: #eaf9ee;
    border: 1px solid #2a7a2a; border-radius: 4px;
    margin-bottom: 8px; display: none;
}
.bys-ship-quote {
    font-size: 12px; color: #7a4c00; font-weight: 700;
    padding: 6px 8px; background: #fff8e6;
    border: 1px solid #c07800; border-radius: 4px;
    margin-bottom: 6px; display: none;
}
.bys-accept-wrap {
    display: none; padding: 8px 10px;
    background: #fffbe6; border: 1px solid #f0c040;
    border-radius: 4px; margin-bottom: 8px;
}
.bys-accept-wrap label {
    display: flex; align-items: flex-start; gap: 8px;
    font-size: 12px; color: #555; line-height: 1.4; cursor: pointer;
}
.bys-accept-wrap input { margin-top: 2px; flex-shrink: 0; cursor: pointer; }
.bys-order-box {
    display: none; background: #f9f9f9;
    border: 1px solid #e0e0e0; border-radius: 4px;
    padding: 10px 12px; margin-bottom: 10px;
}
.bys-order-box table { width: 100%; border-collapse: collapse; }
.bys-order-box td { padding: 4px 0; font-size: 12px; color: #444; }
.bys-order-box td.ov { text-align: right; font-weight: 700; color: #222; }
.bys-order-box tr.bys-tr-total td {
    padding-top: 8px; border-top: 1px solid #ddd;
    font-size: 14px; font-weight: 900; color: #cc0000;
}
.bys-continue-btn {
    width: 100%; padding: 14px;
    background: #5cb85c; color: #fff;
    font-size: 15px; font-weight: 700;
    letter-spacing: .5px; border: none; border-radius: 4px;
    cursor: pointer; text-transform: uppercase;
    transition: background .2s; opacity: 0.45;
}
.bys-continue-btn:not([disabled]) { opacity: 1; }
.bys-continue-btn:hover:not([disabled]) { background: #4cae4c; }
.bys-errmsg { font-size: 12px; color: #cc0000; font-weight: 600; margin-top: 4px; min-height: 14px; }
