.booking-widget {
      font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
      width: 420px;
      background: #fff;
      border: 1px solid #e6e6e6;
      border-radius: 12px;
      padding: 16px;
      box-shadow: 0 8px 24px rgba(0,0,0,.08);
    }

    .booking-widget .row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin-top: 10px;
    }

    .booking-widget label {
      display: block;
      font-size: 12px;
      color: #444;
      margin-bottom: 6px;
      font-weight: 600;
      letter-spacing: .2px;
    }

    .booking-widget .field {
      position: relative;
    }

    .booking-widget .input,
    .booking-widget select {
      width: 100%;
      height: 40px;
      border-radius: 10px;
      border: 2px solid #d6d6d6;
      padding: 0 12px;
      font-size: 14px;
      background: #fff;
      outline: none;
      box-sizing: border-box;
    }

    .booking-widget .input:focus,
    .booking-widget select:focus {
      border-color: #ffd400;
      box-shadow: 0 0 0 3px rgba(255,212,0,.25);
    }

    .booking-widget .date-input {
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      user-select: none;
    }

    .booking-widget .date-input .icon {
      width: 18px;
      height: 18px;
      opacity: .75;
      flex: 0 0 auto;
    }

    .booking-widget .slots {
      margin-top: 14px;
      display: grid;
      gap: 8px;
    }

    .booking-widget .slot {
      height: 34px;
      border-radius: 10px;
      border: 2px solid #d6d6d6;
      display: grid;
      grid-template-columns: 72px 1fr;
      align-items: center;
      padding: 0 10px;
      box-sizing: border-box;
      cursor: pointer;
    }

    .booking-widget .slot .t {
      font-variant-numeric: tabular-nums;
      color: #333;
      font-weight: 600;
      font-size: 13px;
    }

    .booking-widget .slot .s {
      text-align: center;
      color: #555;
      font-size: 13px;
    }

    .booking-widget .slot.available {
      background: #fff;
    }

    .booking-widget .slot.unavailable {
      background: #dcdcdc;
      border-color: #6f6f6f;
      cursor: not-allowed;
      opacity: .85;
    }

    .booking-widget .slot.unavailable .t,
    .booking-widget .slot.unavailable .s {
      color: #777;
    }

    .booking-widget .slot.selected {
      border-color: #ffd400;
      box-shadow: 0 0 0 3px rgba(255,212,0,.25);
    }

    .booking-widget .actions {
      margin-top: 14px;
      display: flex;
      justify-content: flex-end;
    }

    .booking-widget .proceed {
        height: 40px;
        border-radius: 10px;
        border: 0;
        padding: 0 16px;
        font-weight: 700;
        background: #ffd400;
        color: #2b2b2b;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        line-height: 1;
        display: none; /* shown only when selection is valid */
       
    }

    .booking-widget .proceed:active { transform: translateY(1px); }
    .booking-widget .hint {
      margin-top: 10px;
      font-size: 12px;
      color: #666;
      display: none;
    }

    /* Modal */
    .booking-widget .modal-backdrop {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,.45);
      display: none;
      align-items: center;
      justify-content: center;
      z-index: 9999;
      padding: 16px;
    }

    .booking-widget .modal {
      width: min(420px, 100%);
      background: #fff;
      border-radius: 14px;
      border: 1px solid #e6e6e6;
      box-shadow: 0 16px 48px rgba(0,0,0,.25);
      padding: 14px;
    }

    .booking-widget .modal-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 10px;
    }

    .booking-widget .modal-title {
      font-size: 14px;
      font-weight: 800;
      color: #222;
    }
    .header {
        font-size: 32px;
        margin-bottom: 20px;
        text-align: center;
    }


    .booking-widget .modal-close {
      border: 0;
      background: transparent;
      font-size: 18px;
      cursor: pointer;
      width: 32px;
      height: 32px;
      border-radius: 10px;
    }

    .booking-widget .modal-close:hover {
      background: #f2f2f2;
    }

    .booking-widget .modal-body {
      display: grid;
      gap: 10px;
    }

    .booking-widget input[type="date"]{
        width: 100%;
        height: 40px;
        border-radius: 10px;
        border: 2px solid #d6d6d6;
        padding: 0 12px;
        font-size: 14px;
        background: #fff;
        outline: none;
        box-sizing: border-box;
        cursor: pointer;
    }
    .booking-widget input[type="date"]:focus {
        border-color: #ffd400;
        box-shadow: 0 0 0 3px rgba(255, 212, 0, 0.25);
    }
    .booking-widget input[type="date"]::-webkit-calendar-picker-indicator {
        cursor: pointer;
    }

    .booking-widget .modal-actions {
      display: flex;
      justify-content: flex-end;
      gap: 10px;
      margin-top: 12px;
    }

    .booking-widget .btn {
      height: 38px;
      border-radius: 10px;
      border: 2px solid #d6d6d6;
      background: #fff;
      padding: 0 12px;
      font-weight: 700;
      cursor: pointer;
    }

    .booking-widget .btn.primary {
      border-color: #ffd400;
      background: #ffd400;
      color: #2b2b2b;
    }
    .contactField {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 10px;
    }

    .contactField span {
    font-size: 14px;
    font-weight: 600;
    color: #48454F;
    }

    .contactField .inputs {
    height: 29px;
    padding: 0 12px;
    border-radius: 5px;
    border: 2px solid #d6d6d6;
    font-size: 14px;
    outline: none;
    box-sizing: border-box;
    }

    .contactField .inputs:focus {
    border-color: #ffd400;
    box-shadow: 0 0 0 3px rgba(255, 212, 0, 0.3);
    }
    .windows {
        display: flex;
        gap: 20px;
    }
    .windows > .w1,
    .windows > .w2{
        flex: 1;
    }
    .w2 {

        display: flex;
        flex-direction: column;
        justify-content: space-between;

    }
    .wsb-modal.hidden { display: none; }

    .wsb-modal{
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,.5);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 99999;
    }

    .wsb-modal-card{
      width: min(520px, calc(100% - 24px));
      background: #fff;
      border-radius: 12px;
      padding: 16px;
    }

    .wsb-modal-head{
      display:flex;
      align-items:center;
      justify-content:space-between;
      margin-bottom: 12px;
    }

    .wsb-x{
      border: 0;
      background: transparent;
      font-size: 22px;
      cursor: pointer;
    }

    .wsb-summary{
      font-size: 14px;
      line-height: 1.4;
      margin-bottom: 12px;
    }

    .wsb-error{
      color: #b00020;
      margin-top: 10px;
      min-height: 18px;
    }

    .wsb-note{
      margin-top: 10px;
      font-size: 13px;
      opacity: .8;
    }
