:root {
  --hp-cream: #FFF9EA;
  --hp-surface: #FFFFFF;
  --hp-text: #2D2D32;
  --hp-muted: #6B7280;
  --hp-border: rgba(231, 225, 209, 0.9);
  --hp-yellow: #FEF04B;
  --hp-yellow-dark: #FCD22B;
  --hp-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

body.hp-search {
  background: radial-gradient(1000px 340px at 50% 0, rgba(254, 240, 75, 0.26) 0%, rgba(255, 249, 234, 0.55) 58%, rgba(255, 255, 255, 0) 85%),
    linear-gradient(180deg, #FFFFFF 0%, var(--hp-cream) 46%, #FFFFFF 110%);
  color: var(--hp-text);
  min-height: 100vh;
}

body.hp-menu-open {
  overflow: hidden;
}

.hp-search-header {
  position: sticky;
  top: 0;
  z-index: 1100;
  padding: 18px 0;
  background: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid rgba(231, 225, 209, 0.7);
  backdrop-filter: blur(12px);
}

.hp-search-header__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.hp-search-menu {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  border: 1px solid var(--hp-border);
  background: var(--hp-surface);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--hp-text);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.06);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.hp-search-menu svg {
  width: 22px;
  height: 22px;
}

.hp-search-menu:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.1);
}

.hp-search-menu:focus-visible {
  outline: 3px solid rgba(254, 240, 75, 0.45);
  outline-offset: 2px;
}

.hp-search-menu-panel {
  position: fixed;
  inset: 0;
  z-index: 1400;
  display: flex;
  align-items: flex-start;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.hp-search-menu-panel.is-open {
  opacity: 1;
  pointer-events: auto;
}

.hp-search-menu-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(45, 45, 50, 0.45);
  backdrop-filter: blur(2px);
}

.hp-search-menu-drawer {
  position: relative;
  width: min(320px, 92vw);
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: var(--hp-shadow);
  transform: translateX(-8px);
  transition: transform 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hp-search-menu-panel.is-open .hp-search-menu-drawer {
  transform: translateX(0);
}

.hp-search-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.hp-search-menu-eyebrow {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(45, 45, 50, 0.45);
  font-weight: 700;
}

.hp-search-menu-user {
  display: block;
  font-size: 1.05rem;
  font-weight: 750;
  color: var(--hp-text);
  margin-top: 6px;
}

.hp-search-menu-close {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid var(--hp-border);
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--hp-text);
}

.hp-search-menu-close svg {
  width: 20px;
  height: 20px;
}

.hp-search-menu-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hp-search-menu-links a {
  text-decoration: none;
  color: var(--hp-text);
  font-weight: 650;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 249, 234, 0.6);
  transition: transform 0.15s ease, background 0.15s ease;
}

.hp-search-menu-links a[aria-current="page"] {
  background: rgba(254, 240, 75, 0.75);
}

.hp-search-menu-links a:hover {
  transform: translateX(2px);
  background: rgba(254, 240, 75, 0.55);
}

.hp-search-menu-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hp-search-menu-btn,
.hp-search-menu-logout {
  border-radius: 12px;
  border: none;
  padding: 11px 12px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  background: var(--hp-yellow);
  color: var(--hp-text);
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
}

.hp-search-menu-btn--ghost {
  background: #fff;
  border: 1px solid var(--hp-border);
}

.hp-search-menu-btn:hover,
.hp-search-menu-logout:hover {
  transform: translateY(-1px);
  background: var(--hp-yellow-dark);
}

.hp-search-menu-btn--ghost:hover {
  background: rgba(255, 249, 234, 0.9);
}

.hp-search-menu-btn:focus-visible,
.hp-search-menu-logout:focus-visible {
  outline: 3px solid rgba(254, 240, 75, 0.45);
  outline-offset: 2px;
}

.hp-search-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--hp-text);
  white-space: nowrap;
}

.hp-brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  background: var(--hp-yellow);
  display: grid;
  place-items: center;
  font-weight: 900;
  letter-spacing: 0.02em;
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.06), 0 10px 24px rgba(0, 0, 0, 0.12);
}

.hp-brand-name {
  font-weight: 750;
  font-size: 1.125rem;
  letter-spacing: -0.01em;
}

.hp-searchbar {
  flex: 1;
  display: flex;
  align-items: stretch;
  border-radius: 18px;
  overflow: hidden;
  background: var(--hp-surface);
  border: 1px solid rgba(242, 233, 214, 1);
  box-shadow: var(--hp-shadow);
  min-height: 78px;
  max-width: 1040px;
  margin-left: auto;
}

.hp-searchbar__field {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  min-width: 0;
}

.hp-searchbar__icon {
  width: 22px;
  height: 22px;
  color: rgba(45, 45, 50, 0.72);
  flex-shrink: 0;
}

.hp-searchbar__icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
}

.hp-searchbar input {
  width: 100%;
  border: none;
  background: transparent;
  font-size: 1.05rem;
  color: var(--hp-text);
  outline: none;
  padding: 0;
}

.hp-searchbar input::placeholder {
  color: rgba(45, 45, 50, 0.55);
}

.hp-searchbar__divider {
  width: 1px;
  background: rgba(229, 231, 235, 1);
}

.hp-searchbar__field--select {
  position: relative;
}

.hp-searchbar select {
  width: 100%;
  border: none;
  background: transparent;
  font-size: 1.05rem;
  color: rgba(45, 45, 50, 0.75);
  outline: none;
  appearance: none;
  padding-right: 26px;
}

.hp-searchbar__chevron {
  width: 18px;
  height: 18px;
  color: rgba(45, 45, 50, 0.65);
  position: absolute;
  right: 18px;
  pointer-events: none;
}

.hp-searchbar__chevron svg {
  width: 18px;
  height: 18px;
}

.hp-searchbar__submit {
  width: 88px;
  border: none;
  background: var(--hp-yellow);
  color: var(--hp-text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-left: 1px solid rgba(242, 233, 214, 1);
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.06);
  transition: transform 0.15s ease, background 0.15s ease;
}

.hp-searchbar__submit-icon {
  width: 20px;
  height: 20px;
  display: inline-flex;
}

.hp-searchbar__submit svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.hp-searchbar__submit:hover {
  background: var(--hp-yellow-dark);
  transform: translateY(-1px);
}

.hp-searchbar__submit:focus-visible {
  outline: 3px solid rgba(254, 240, 75, 0.45);
  outline-offset: 3px;
}

.hp-search-main {
  padding: 36px 0 72px;
}

.hp-search-surface {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

.hp-filterbar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(231, 225, 209, 0.7);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08);
}

.hp-filter {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(231, 225, 209, 0.7);
  border-radius: 14px;
  color: rgba(45, 45, 50, 0.82);
  font-weight: 650;
  transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
  min-width: 190px;
}

.hp-filter__icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  color: rgba(45, 45, 50, 0.7);
}

.hp-filter__icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.hp-filter__field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.hp-filter__label {
  display: block;
  font-size: 0.9rem;
  color: rgba(45, 45, 50, 0.7);
  font-weight: 700;
}

.hp-filter__field input,
.hp-filter__field select {
  width: 100%;
  min-width: 160px;
  border-radius: 10px;
  border: 1px solid rgba(45, 45, 50, 0.15);
  padding: 7px 10px;
  font-size: 0.95rem;
  background: #fff;
  color: #2D2D32;
}

.hp-filter__field select {
  min-height: 38px;
}

.hp-filter--grow {
  flex: 1 1 240px;
}

.hp-filter--stack {
  flex: 1 1 260px;
}

.hp-filter__field--inline {
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.hp-filter__checkbox {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: rgba(45, 45, 50, 0.75);
}

.hp-filter__checkbox input {
  width: 16px;
  height: 16px;
}

.hp-filter__submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 14px;
  border: none;
  background: #FEF04B;
  color: #2D2D32;
  font-weight: 750;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
}

.hp-filter__submit-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2;
}

.hp-filter:hover {
  background: rgba(255, 249, 234, 0.85);
  transform: translateY(-1px);
}

.hp-filter:focus-within {
  outline: 3px solid rgba(254, 240, 75, 0.45);
  outline-offset: 2px;
}

.hp-filter__submit:hover {
  background: var(--hp-yellow-dark);
  transform: translateY(-1px);
}

.hp-filter__submit:focus-visible {
  outline: 3px solid rgba(254, 240, 75, 0.45);
  outline-offset: 2px;
}

.hp-results {
  margin-top: 28px;
}

.hp-results-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  gap: 16px;
}

.hp-results-count {
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 6px;
}

.hp-results-subcopy {
  margin: 0;
  color: var(--hp-muted);
}

.hp-results-week {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.hp-results-week__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(45, 45, 50, 0.6);
}

.hp-results-week__range {
  font-size: 1rem;
  font-weight: 750;
  color: var(--hp-text);
}

.hp-results-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hp-provider-card {
  display: grid;
  grid-template-columns: minmax(220px, 1.1fr) minmax(320px, 2.2fr) minmax(150px, auto);
  gap: 18px;
  padding: 20px;
  border-radius: 20px;
  border: 1px solid var(--hp-border);
  background: var(--hp-surface);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.08);
}

.hp-provider-main {
  display: flex;
  gap: 16px;
  align-items: center;
}

.hp-provider-avatar {
  width: 68px;
  height: 68px;
  border-radius: 22px;
  background: var(--hp-yellow);
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--hp-text);
  box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.08);
}

.hp-provider-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hp-provider-name {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--hp-text);
}

.hp-provider-specialty {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(254, 240, 75, 0.35);
  font-weight: 700;
  color: var(--hp-text);
  width: fit-content;
}

.hp-provider-location {
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: rgba(45, 45, 50, 0.72);
  font-size: 0.92rem;
}

.hp-provider-mode-pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(45, 45, 50, 0.15);
  font-weight: 700;
  font-size: 0.85rem;
  color: rgba(45, 45, 50, 0.75);
}

.hp-provider-schedule {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hp-provider-tabs {
  display: flex;
  gap: 22px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(45, 45, 50, 0.15);
  width: 100%;
  align-items: center;
}

.hp-provider-tab {
  border: none;
  background: transparent;
  color: rgba(45, 45, 50, 0.55);
  font-weight: 750;
  padding: 6px 2px;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  transition: color 0.15s ease, transform 0.15s ease, border-color 0.15s ease;
}

.hp-provider-tab.is-active {
  color: var(--hp-text);
  border-color: var(--hp-yellow-dark);
}

.hp-provider-tab:hover {
  transform: translateY(-1px);
}

.hp-provider-modality-label {
  font-size: 0.95rem;
  font-weight: 750;
  color: var(--hp-text);
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(45, 45, 50, 0.15);
}

.hp-calendar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
}

.hp-calendar-day {
  border-radius: 14px;
  border: 1px solid rgba(45, 45, 50, 0.12);
  padding: 12px;
  background: rgba(255, 255, 255, 0.9);
  min-height: 96px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.hp-calendar-day.is-today {
  border-color: rgba(254, 210, 43, 0.8);
  box-shadow: 0 10px 20px rgba(252, 210, 43, 0.2);
}

.hp-calendar-day.is-empty {
  cursor: default;
  opacity: 0.7;
}

.hp-calendar-day:not(.is-empty):hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  border-color: rgba(252, 210, 43, 0.9);
}

.hp-calendar-day:focus-visible {
  outline: 3px solid rgba(254, 240, 75, 0.5);
  outline-offset: 2px;
}

.hp-calendar-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  font-weight: 700;
  color: rgba(45, 45, 50, 0.72);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.hp-calendar-date {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--hp-text);
}

.hp-calendar-month {
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(45, 45, 50, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hp-calendar-slots {
  margin-top: 8px;
}

.hp-calendar-count {
  font-size: 0.92rem;
  font-weight: 650;
  color: rgba(45, 45, 50, 0.78);
}

.hp-calendar-count strong {
  display: inline-block;
  margin-right: 6px;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--hp-text);
}

.hp-calendar-slot {
  margin-top: 10px;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--hp-text);
}

.hp-calendar-slot.is-empty {
  color: rgba(45, 45, 50, 0.5);
  font-weight: 600;
}

.hp-provider-actions {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}

.hp-provider-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 12px;
  background: var(--hp-yellow);
  color: var(--hp-text);
  text-decoration: none;
  font-weight: 750;
  transition: background 0.15s ease, transform 0.15s ease;
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.08);
}

.hp-provider-cta:hover {
  background: var(--hp-yellow-dark);
  transform: translateY(-1px);
}

.hp-results__placeholder {
  padding: 44px 26px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(231, 225, 209, 0.7);
}

.hp-results__title {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 6px;
}

.hp-results__subtitle {
  color: var(--hp-muted);
  margin: 0;
}

@media (max-width: 980px) {
  .hp-search-brand {
    display: none;
  }

  .hp-searchbar {
    max-width: none;
  }

  .hp-provider-card {
    grid-template-columns: 1fr;
  }

  .hp-provider-actions {
    justify-content: flex-start;
  }

  .hp-results-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .hp-results-week {
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  .hp-search-header__inner {
    gap: 12px;
  }

  .hp-searchbar {
    min-height: 0;
    flex-wrap: wrap;
  }

  .hp-searchbar__divider {
    display: none;
  }

  .hp-searchbar__field {
    flex: 1 1 100%;
    padding: 12px 16px;
  }

  .hp-searchbar__submit {
    width: 100%;
    min-height: 56px;
  }

  .hp-filter {
    flex: 1 1 100%;
  }

  .hp-filter__submit {
    width: 100%;
    justify-content: center;
  }

  .hp-provider-card {
    padding: 18px;
  }

  .hp-calendar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Modal Styles */
.hp-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.hp-modal[hidden] {
  display: none;
}

.hp-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
}

.hp-modal__content {
  position: relative;
  width: 100%;
  max-width: 500px;
  background: var(--hp-surface);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  animation: modalEnter 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hp-modal__content--slots {
  max-width: 560px;
  max-height: 80vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.hp-modal__content--success {
  max-width: 540px;
}

@keyframes modalEnter {
  from { transform: scale(0.9) translateY(20px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}

.hp-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  color: var(--hp-muted);
  cursor: pointer;
}

.hp-modal__title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.hp-modal__subtitle {
  color: var(--hp-muted);
  margin-bottom: 24px;
}

.hp-confirmation-hero {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(254, 240, 75, 0.65) 0%, rgba(255, 249, 234, 0.9) 60%);
  margin-bottom: 18px;
}

.hp-confirmation-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--hp-yellow);
  color: var(--hp-text);
  display: grid;
  place-items: center;
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.08);
}

.hp-confirmation-icon svg {
  width: 22px;
  height: 22px;
}

.hp-confirmation-message {
  font-weight: 700;
  margin: 0;
}

.hp-day-slots__empty {
  padding: 18px;
  border-radius: 14px;
  background: rgba(45, 45, 50, 0.04);
  color: var(--hp-muted);
  font-weight: 650;
  text-align: center;
}

.hp-day-slots {
  display: grid;
  gap: 10px;
  overflow-y: auto;
  padding-right: 4px;
  max-height: 50vh;
}

.hp-day-slot {
  border: 1px solid rgba(45, 45, 50, 0.1);
  background: rgba(254, 240, 75, 0.55);
  color: var(--hp-text);
  border-radius: 12px;
  padding: 12px 16px;
  font-weight: 750;
  text-align: left;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.hp-day-slot:hover {
  background: var(--hp-yellow);
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(254, 240, 75, 0.3);
}

.hp-booking-summary {
  background: var(--hp-cream);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hp-booking-detail {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.hp-booking-detail__label {
  font-weight: 700;
  color: var(--hp-muted);
}

.hp-booking-detail__value {
  font-weight: 800;
  text-align: right;
}

.hp-modal__footer {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.hp-modal__footer--single {
  grid-template-columns: 1fr;
}

.hp-btn {
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 750;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  text-align: center;
}

.hp-btn--primary {
  background: var(--hp-yellow);
  color: var(--hp-text);
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.08);
}

.hp-btn--primary:hover {
  background: var(--hp-yellow-dark);
  transform: translateY(-1px);
}

.hp-btn--secondary {
  background: rgba(45, 45, 50, 0.05);
  color: var(--hp-text);
}

.hp-btn--secondary:hover {
  background: rgba(45, 45, 50, 0.1);
}

/* Slot Interaction */
.hp-calendar-slot {
  cursor: pointer;
  border-radius: 8px;
  padding: 6px 4px;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}

.hp-calendar-slot:not(.is-empty) {
  background: rgba(254, 240, 75, 0.6);
  border-color: var(--hp-yellow-dark);
}

.hp-calendar-slot:not(.is-empty):hover {
  background: var(--hp-yellow);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(254, 240, 75, 0.3);
}

.hp-calendar-slot.is-empty {
  cursor: default;
  background: rgba(45, 45, 50, 0.03);
  color: var(--hp-muted);
  font-weight: 500;
}
