/* Özel tarih aralığı takvimi */
.dp-toggle { border: none; background: transparent; padding: 0; font-size: 14px; font-weight: 600; color: var(--muted); cursor: pointer; text-align: left; width: 100%; white-space: nowrap; }
.dp-toggle.has { color: var(--ink); }

.dp-cal {
    position: absolute; top: calc(100% + 12px); left: 50%; transform: translateX(-50%);
    width: 330px; background: #fff; border: 1px solid var(--line); border-radius: 16px;
    box-shadow: var(--shadow-lg); padding: 16px; z-index: 210; display: none;
}
.dp-cal.open { display: block; }

.dp-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.dp-title { font-weight: 700; color: var(--ink); font-family: "Montserrat", sans-serif; }
.dp-nav { width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--line); background: #fff; color: var(--brand); cursor: pointer; transition: all .15s; }
.dp-nav:hover { background: var(--brand); color: #fff; border-color: var(--brand); }

.dp-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; }
.dp-week { margin-bottom: 6px; }
.dp-wd { text-align: center; font-size: 11px; font-weight: 700; color: var(--muted); padding: 4px 0; }

.dp-day { border: none; background: transparent; height: 38px; border-radius: 9px; cursor: pointer; font-size: 13px; font-weight: 600; color: var(--ink); padding: 0; }
.dp-day.empty { visibility: hidden; }
.dp-day:hover:not(.past):not(.start):not(.end) { background: var(--brand-soft); }
.dp-day.past { color: #cbc7bd; cursor: not-allowed; }
.dp-day.today { box-shadow: inset 0 0 0 1.5px var(--gold); }
.dp-day.inrange { background: var(--brand-light); border-radius: 0; }
.dp-day.start, .dp-day.end { background: var(--brand); color: #fff; }
.dp-day.start { border-radius: 9px 0 0 9px; }
.dp-day.end { border-radius: 0 9px 9px 0; }
.dp-day.start.end { border-radius: 9px; }

.dp-foot { display: flex; justify-content: space-between; align-items: center; margin-top: 12px; border-top: 1px solid var(--line); padding-top: 12px; }
.dp-nights { font-size: 13px; color: var(--muted); font-weight: 600; }
.dp-clear { background: none; border: none; color: var(--gold-dark); font-weight: 700; font-size: 13px; cursor: pointer; }
.dp-clear:hover { color: var(--brand); }
