/* OVH order-form live location picker */
.ovh-loc-wrap { margin: 18px 0; }
.ovh-loc-wrap h4 { font-size: 16px; margin: 0 0 4px; }
.ovh-loc-sub { color: #6b7280; font-size: 13px; margin-bottom: 10px; }
.ovh-loc-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.ovh-loc {
    position: relative; flex: 1 1 200px; min-width: 190px; max-width: 260px;
    border: 1.5px solid #d4ddf0; border-radius: 8px; padding: 12px 14px; cursor: pointer;
    transition: border-color .15s, box-shadow .15s, background .15s; background: #fff;
}
.ovh-loc:hover { border-color: #3967E6; }
.ovh-loc.selected { border-color: #3967E6; background: #f4f7ff; box-shadow: 0 0 0 2px rgba(57,103,230,.18); }
.ovh-loc.disabled { cursor: not-allowed; opacity: .55; background: #f7f8fa; }
.ovh-loc input { position: absolute; opacity: 0; pointer-events: none; }
.ovh-loc .city { font-weight: 600; font-size: 14px; color: #1f2933; }
.ovh-loc .country { font-size: 12px; color: #6b7280; margin-top: 1px; }
.ovh-loc .flag { margin-right: 6px; }
.ovh-badge {
    display: inline-block; margin-top: 8px; font-size: 11px; font-weight: 600;
    padding: 2px 8px; border-radius: 20px; line-height: 1.5;
}
.ovh-badge.in_stock  { background: #e6f7ec; color: #1a7f43; }
.ovh-badge.soon      { background: #fff5e0; color: #946200; }
.ovh-badge.backorder { background: #fdebe0; color: #9a4a16; }
.ovh-badge.out       { background: #fbe7e9; color: #b3261e; }
.ovh-badge .dot { display:inline-block; width:7px; height:7px; border-radius:50%; margin-right:5px; vertical-align: middle; }
.ovh-badge.in_stock  .dot { background:#1a7f43; }
.ovh-badge.soon      .dot { background:#d99500; }
.ovh-badge.backorder .dot { background:#c2620f; }
.ovh-badge.out       .dot { background:#b3261e; }
.ovh-loc-msg { font-size: 13px; color: #6b7280; padding: 8px 0; }
.ovh-loc-msg .spin { display:inline-block; width:14px; height:14px; border:2px solid #c9d6f0;
    border-top-color:#3967E6; border-radius:50%; animation: ovhspin .7s linear infinite; vertical-align:middle; margin-right:7px; }
@keyframes ovhspin { to { transform: rotate(360deg); } }
.ovh-loc-refresh { font-size:12px; color:#3967E6; cursor:pointer; margin-left:8px; }
