.munsif-widget {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  width: 340px;
  position: relative;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
.munsif-dates-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid #ddd;
  position: relative;
}
.munsif-date-cell { padding: 14px 16px; cursor: pointer; }
.munsif-date-cell:first-child { border-right: 1px solid #ddd; }
.munsif-date-cell:hover { background: #fafafa; }
.munsif-date-cell.munsif-active { outline: 2px solid #222; border-radius: 8px; }
.munsif-lbl { font-size: 10px; font-weight: 700; letter-spacing: .08em; color: #555; text-transform: uppercase; margin-bottom: 4px; }
.munsif-val { font-size: 15px; color: #111; }

.munsif-cal-popup {
  display: none; position: absolute; top: calc(100% + 8px); left: 0;
  width: 320px; background: #fff; border: 1px solid #ddd;
  border-radius: 12px; padding: 16px; z-index: 9999;
  box-shadow: 0 8px 30px rgba(0,0,0,.12);
}
.munsif-cal-popup.munsif-open { display: block; }
.munsif-cal-nav-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.munsif-month-label { font-size: 14px; font-weight: 600; color: #111; }
.munsif-cal-nav-btn {
  background: none; border: 1px solid #ddd; border-radius: 50%;
  width: 28px; height: 28px; cursor: pointer; font-size: 15px; color: #111;
  display: flex; align-items: center; justify-content: center;
}
.munsif-cal-nav-btn:hover { background: #f5f5f5; }
.munsif-cal-grid { display: grid; grid-template-columns: repeat(7,1fr); gap: 2px; text-align: center; }
.munsif-cal-grid .munsif-day-name { font-size: 11px; color: #888; font-weight: 600; padding: 4px 0; }
.munsif-cal-grid .munsif-day { font-size: 13px; padding: 7px 4px; border-radius: 50%; cursor: pointer; color: #111; }
.munsif-cal-grid .munsif-day:hover:not(.munsif-past):not(.munsif-empty) { background: #f0f0f0; }
.munsif-cal-grid .munsif-day.munsif-past { color: #ccc; cursor: default; }
.munsif-cal-grid .munsif-day.munsif-empty { cursor: default; }
.munsif-cal-grid .munsif-day.munsif-selected { background: #111; color: #fff; }
.munsif-cal-grid .munsif-day.munsif-in-range { background: #f0f0f0; border-radius: 0; }
.munsif-cal-grid .munsif-day.munsif-range-start { background: #111; color: #fff; border-radius: 50% 0 0 50%; }
.munsif-cal-grid .munsif-day.munsif-range-end   { background: #111; color: #fff; border-radius: 0 50% 50% 0; }
.munsif-cal-hint { font-size: 12px; color: #888; text-align: center; margin-top: 10px; }

.munsif-guests-bar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 16px; cursor: pointer; border-bottom: 1px solid #ddd;
}
.munsif-guests-bar:hover { background: #fafafa; }
.munsif-guests-bar.munsif-open { outline: 2px solid #222; border-radius: 8px; }
.munsif-chevron { font-size: 20px; color: #111; transition: transform .2s; line-height: 1; }
.munsif-chevron.munsif-flipped { transform: rotate(180deg); }

.munsif-guest-dropdown { display: none; padding: 0 16px; border-bottom: 1px solid #ddd; }
.munsif-guest-dropdown.munsif-open { display: block; }
.munsif-guest-row { display: flex; justify-content: space-between; align-items: center; padding: 16px 0; border-bottom: 1px solid #f0f0f0; }
.munsif-guest-row:last-of-type { border-bottom: none; }
.munsif-type { font-size: 15px; font-weight: 600; color: #111; }
.munsif-age  { font-size: 13px; color: #555; margin-top: 2px; }
.munsif-service-link { text-decoration: underline; cursor: pointer; color: #111; }
.munsif-counter { display: flex; align-items: center; gap: 14px; }
.munsif-counter-btn {
  width: 30px; height: 30px; border-radius: 50%; border: 1px solid #ccc;
  background: #fff; cursor: pointer; font-size: 18px; color: #555;
  display: flex; align-items: center; justify-content: center; line-height: 1;
}
.munsif-counter-btn:hover:not(:disabled) { border-color: #111; color: #111; }
.munsif-counter-btn:disabled { opacity: .3; cursor: default; }
.munsif-counter-num { font-size: 15px; min-width: 14px; text-align: center; color: #111; }
.munsif-guest-notice { font-size: 13px; color: #555; line-height: 1.5; padding: 14px 0 4px; }
.munsif-close-row { display: flex; justify-content: flex-end; padding: 10px 0 14px; }
.munsif-close-btn { background: none; border: none; font-size: 14px; font-weight: 600; text-decoration: underline; color: #111; cursor: pointer; }

.munsif-contact-form { padding: 18px 16px; }
.munsif-form-title { font-size: 13px; font-weight: 700; color: #111; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 14px; }
.munsif-form-field { margin-bottom: 12px; }
.munsif-form-field label { display: block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: #666; margin-bottom: 5px; }
.munsif-form-field input {
  width: 100%; border: 1px solid #ddd; border-radius: 8px;
  padding: 10px 12px; font-size: 14px; color: #111;
  background: #fff; outline: none; font-family: inherit; box-sizing: border-box;
}
.munsif-form-field input:focus { border-color: #111; }
.munsif-form-field input::placeholder { color: #bbb; }
.munsif-reserve-btn {
  display: block; width: 100%; padding: 14px; background: #111;
  color: #fff; border: none; border-radius: 8px; font-size: 15px;
  font-weight: 600; cursor: pointer; font-family: inherit; margin-top: 4px;
}
.munsif-reserve-btn:hover { background: #333; }
.munsif-reserve-btn:disabled { background: #888; cursor: default; }
.munsif-status { display: none; margin-top: 10px; padding: 10px 12px; border-radius: 8px; font-size: 13px; line-height: 1.5; }
.munsif-status.munsif-success { display: block; background: #f0faf0; border: 1px solid #a3d9a3; color: #2a7a2a; }
.munsif-status.munsif-error   { display: block; background: #fff3f3; border: 1px solid #f5a5a5; color: #b00020; }
