/* ── Custom Date Picker — Santa Rita Cobquecura ─────────── */
#sr-datepicker {
  display: none;
  position: absolute;
  z-index: 9999;
  width: 300px;
  background: #faf8f4;
  border: 1px solid rgba(122,140,114,0.25);
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(42,42,37,0.14);
  padding: 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #2a2a25;
}

.sr-dp-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.sr-dp-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 400;
  color: #2a2a25;
  letter-spacing: 0.01em;
}

.sr-dp-nav {
  background: none;
  border: 1px solid rgba(122,140,114,0.25);
  border-radius: 50%;
  width: 30px;
  height: 30px;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  color: #7a8c72;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
}
.sr-dp-nav:hover {
  background: #7a8c72;
  color: #f5f0e8;
  border-color: #7a8c72;
}

.sr-dp-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-bottom: 6px;
}
.sr-dp-weekdays span {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #a8b89f;
  padding: 4px 0;
}

.sr-dp-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

.sr-dp-day {
  text-align: center;
  padding: 7px 4px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 13px;
  color: #2a2a25;
  transition: background 0.15s, color 0.15s;
  line-height: 1.2;
}
.sr-dp-day:hover:not(.past):not(.blank) {
  background: rgba(122,140,114,0.15);
}
.sr-dp-day.blank { cursor: default; }
.sr-dp-day.past  { color: #c8c8c0; cursor: default; }
.sr-dp-day.today { font-weight: 700; color: #7a8c72; }
.sr-dp-day.selected {
  background: #7a8c72;
  color: #f5f0e8;
  font-weight: 700;
  border-radius: 8px;
}
.sr-dp-day.in-range {
  background: rgba(122,140,114,0.12);
  border-radius: 0;
}
.sr-dp-day.checkin  { border-radius: 8px 0 0 8px; }
.sr-dp-day.checkout { border-radius: 0 8px 8px 0; }
.sr-dp-day.checkin.checkout { border-radius: 8px; }

.sr-dp-footer {
  display: flex;
  justify-content: space-between;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(122,140,114,0.15);
}
.sr-dp-clear,
.sr-dp-today {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  color: #7a8c72;
  padding: 4px 8px;
  border-radius: 6px;
  transition: background 0.15s;
}
.sr-dp-clear:hover,
.sr-dp-today:hover {
  background: rgba(122,140,114,0.12);
}
