.kaam-search-widget {
  font-family: 'Inter', system-ui, sans-serif;
  background: #fff;
  border-top: 1px solid #E5E7EB;
  border-bottom: 1px solid #E5E7EB;
  padding: 0;
}

.kaam-search-inner {
  display: flex;
  align-items: stretch;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.kaam-search-field {
  flex: 1;
  min-width: 160px;
  padding: 18px 28px;
  border-right: 1px solid #E5E7EB;
  display: flex;
  flex-direction: column;
  justify-content: center;
  cursor: pointer;
  position: relative;
}

.kaam-search-field:last-of-type {
  border-right: none;
}

.kaam-search-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9CA3AF;
  margin-bottom: 4px;
}

.kaam-search-value {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.kaam-search-day {
  font-size: 36px;
  font-weight: 300;
  color: #111827;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.kaam-search-month {
  font-size: 11px;
  color: #6B7280;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.kaam-search-month svg {
  display: block;
  cursor: pointer;
  color: #9CA3AF;
}

.kaam-search-guests-val {
  font-size: 36px;
  font-weight: 300;
  color: #111827;
  line-height: 1;
  min-width: 24px;
}

/* Modal Overlay */
.kaam-modal-overlay {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background: rgba(0, 0, 0, 0.7) !important; /* Fondo menos denso, menos intrusivo */
  z-index: 999999 !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  animation: kaamFadeIn 0.3s ease;
}

@keyframes kaamFadeIn { from { opacity: 0; } to { opacity: 1; } }

.kaam-modal-content {
  width: 90%;
  max-width: 320px; /* Ajustado al nuevo ancho del calendario */
  background: #000;
  border: 1px solid #C4975A;
  box-shadow: 0 0 50px rgba(196, 151, 90, 0.3);
  border-radius: 8px;
  padding: 5px;
}

.kaam-search-btn {
  background: #111827;
  color: #fff;
  border: none;
  padding: 0 40px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 200ms;
  min-width: 200px;
  white-space: nowrap;
}

.kaam-search-btn:hover {
  background: #1f2937;
}

@media (max-width: 640px) {
  .kaam-search-inner { flex-direction: column; }
  .kaam-search-field { border-right: none; border-bottom: 1px solid #E5E7EB; }
  .kaam-search-btn { padding: 18px; width: 100%; min-width: unset; }
}
