/* ═══════════════════════════════════════════
   Memoroam — Itinerary 3-Screen Flow
   Overview → Setup → Detail
   ═══════════════════════════════════════════ */

/* ── View transitions ──────────────────────── */

.itin-view {
  animation: itinFadeIn 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes itinFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes itinSlideReveal {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Shared: Back button ───────────────────── */

.itin-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #999;
  cursor: pointer;
  padding: 6px 0 10px;
  -webkit-tap-highlight-color: transparent;
}

.itin-back-btn:active { opacity: 0.6; }

/* ═══════════════════════════════════════════
   SCREEN 1 — TRIP OVERVIEW (Hub)
   ═══════════════════════════════════════════ */

.iov-header {
  text-align: center;
  padding: 8px 0 16px;
}

.iov-trip-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  font-weight: 600;
  color: #1A1A1A;
  margin: 0 0 4px;
  line-height: 1.2;
}

.iov-date-range {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  color: #AAA;
  letter-spacing: 0.04em;
}

/* Progress bar */
.iov-progress-wrap {
  padding: 0 0 20px;
}

.iov-progress-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: #B5B3AC;
  margin-bottom: 10px;
}

.iov-progress-bar {
  height: 3px;
  border-radius: 2px;
  background: #E8E7E3;
  overflow: hidden;
}

.iov-progress-fill {
  height: 100%;
  border-radius: 2px;
  background: linear-gradient(90deg, #4A8B7F, #7CC4B8);
  transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Day card list */
.iov-day-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* ── Day card base ── */
.iov-day-card {
  border-radius: 16px;
  padding: 16px;
  border: none;
  cursor: pointer;
  text-align: left;
  -webkit-tap-highlight-color: transparent;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  box-sizing: border-box;
  font-family: 'DM Sans', sans-serif;
  background: #FFF;
}

.iov-day-card:active { transform: scale(0.99); }

/* ── Next day (first ungenerated) ── */
.iov-day-card--next {
  box-shadow: 0 0 0 2px #4A8B7F, 0 4px 16px rgba(74,139,127,0.12);
}

.iov-next-inner {
  display: flex;
  align-items: center;
  gap: 14px;
}

.iov-next-icon {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  background: rgba(74,139,127,0.08);
  border: 1.5px dashed rgba(74,139,127,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
  color: #4A8B7F;
}

.iov-next-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 16px;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 2px;
}

.iov-next-sub {
  font-size: 12px;
  color: #B5B3AC;
}

/* ── Done day (generated) ── */
.iov-day-card--done {
  box-shadow: inset 0 0 0 1px #E8E7E3;
  padding: 14px 16px;
}

.iov-day-card--done:active {
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.iov-done-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.iov-done-top-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.iov-done-icon {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.iov-done-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 16px;
  font-weight: 700;
  color: #1A1A1A;
}

.iov-done-date {
  font-size: 11px;
  color: #B5B3AC;
  margin-left: 8px;
}

.iov-done-chevron {
  color: #CCC;
}

.iov-done-city {
  font-size: 14px;
  font-weight: 500;
  color: #444;
  margin-bottom: 8px;
}

.iov-done-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.iov-tag {
  font-size: 11px;
  font-weight: 500;
  color: #999;
  background: #F4F3EE;
  border-radius: 8px;
  padding: 3px 8px;
}

.iov-tag--accent {
  color: #4A8B7F;
  background: rgba(74,139,127,0.08);
}

/* ── Locked day ── */
.iov-day-card--locked {
  opacity: 0.4;
  cursor: default;
  background: #FAFAF7;
  box-shadow: inset 0 0 0 1px #ECEADE;
}

.iov-day-card--locked:active { transform: none; }

.iov-locked-inner {
  display: flex;
  align-items: center;
  gap: 14px;
}

.iov-locked-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #F0EFEB;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.iov-locked-title {
  font-size: 14px;
  font-weight: 600;
  color: #CCC;
}

.iov-locked-date {
  font-size: 11px;
  color: #DDD;
  margin-left: 8px;
}


/* ═══════════════════════════════════════════
   SCREEN 2 — DAY SETUP
   ═══════════════════════════════════════════ */

.ise-header {
  text-align: center;
  padding: 0 0 4px;
}

.ise-trip-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  font-weight: 600;
  color: #1A1A1A;
  margin: 0;
  line-height: 1.2;
}

.ise-day-subtitle {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  color: #AAA;
  letter-spacing: 0.04em;
  margin-top: 4px;
}

/* Day heading */
.ise-day-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 24px;
  font-weight: 500;
  color: #1A1A1A;
  margin: 20px 0 4px;
  line-height: 1.3;
}

.ise-day-date {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: #B5B3AC;
  margin-bottom: 16px;
}

/* Section label */
.ise-section-label {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 20px 0 14px;
}

.ise-section-emoji {
  font-size: 14px;
}

.ise-section-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #1A1A1A;
}

/* City cards */
.ise-city-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ise-city-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 16px;
  border: none;
  background: #FFF;
  box-shadow: inset 0 0 0 1px #E8E7E3;
  cursor: pointer;
  text-align: left;
  width: 100%;
  box-sizing: border-box;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-tap-highlight-color: transparent;
  font-family: 'DM Sans', sans-serif;
}

.ise-city-card:active { transform: scale(0.98); }

.ise-city-card.selected {
  border-color: transparent;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.ise-city-icon {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.ise-city-name {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 2px;
}

.ise-city-tagline {
  font-size: 12px;
}

.ise-city-used {
  font-size: 10px;
  font-weight: 600;
  border-radius: 8px;
  padding: 3px 8px;
  margin-left: auto;
  flex-shrink: 0;
}

/* Continue / Generate buttons */
.ise-action-btn {
  width: 100%;
  padding: 16px 0;
  border-radius: 14px;
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
  -webkit-tap-highlight-color: transparent;
}

.ise-action-btn:active { transform: scale(0.98); }

.ise-action-btn--disabled {
  background: #E8E7E3;
  color: #BBB;
  cursor: default;
}
.ise-action-btn--disabled:active { transform: none; }

.ise-action-btn--ready {
  background: #1A1A1A;
  color: #F4F3EE;
}

/* Selected city chip (in prefs step) */
.ise-selected-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 12px;
  padding: 8px 14px 8px 10px;
  border: none;
  cursor: pointer;
  margin: 16px 0 4px;
  transition: transform 0.15s ease;
  font-family: 'DM Sans', sans-serif;
  -webkit-tap-highlight-color: transparent;
}

.ise-selected-chip:active { transform: scale(0.97); }

.ise-selected-chip-emoji {
  font-size: 16px;
}

.ise-selected-chip-name {
  font-size: 13px;
  font-weight: 600;
  color: #FFF;
}

/* Schedule card */
.ise-schedule-card {
  background: #FFF;
  border-radius: 14px;
  padding: 16px 18px;
  box-shadow: inset 0 0 0 1px #E8E7E3;
  display: flex;
  align-items: center;
}

.ise-schedule-half {
  flex: 1;
  text-align: center;
}

.ise-schedule-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 600;
  color: #B5B3AC;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.ise-schedule-input {
  width: 100%;
  border: none;
  background: transparent;
  text-align: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #1A1A1A;
  font-variant-numeric: tabular-nums;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
  box-sizing: border-box;
}

.ise-schedule-arrow {
  padding: 0 12px;
  color: #D0CEC6;
}


/* Dietary chips */
.ise-dietary-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ise-dietary-chip {
  padding: 10px 14px;
  border-radius: 12px;
  cursor: pointer;
  border: none;
  background: #FFF;
  box-shadow: inset 0 0 0 1px #E8E7E3;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: 'DM Sans', sans-serif;
  -webkit-tap-highlight-color: transparent;
}

.ise-dietary-chip:active { transform: scale(0.97); }

.ise-dietary-chip.active {
  background: #1A1A1A;
  box-shadow: none;
}

.ise-dietary-emoji {
  font-size: 14px;
}

.ise-dietary-label {
  font-size: 13px;
  font-weight: 500;
}

.ise-dietary-chip .ise-dietary-label { color: #666; }
.ise-dietary-chip.active .ise-dietary-label { font-weight: 600; color: #F4F3EE; }

/* Pin search area (uses existing pin-search styles) */
.ise-pins-area {
  margin-bottom: 6px;
}

/* ── Day Setup Wizard Form ──────────────── */

.ise-form {
  padding: 16px 20px 32px;
}
.ise-city-label {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 20px;
}
.ise-row {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}
.ise-row .ise-field { flex: 1; }
.ise-field {
  margin-bottom: 16px;
}
.ise-label {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--muted);
  margin-bottom: 8px;
}
.ise-input {
  width: 100%;
  padding: 12px 14px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 15px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
  color: var(--text);
  box-sizing: border-box;
}
.ise-pill-row {
  display: flex;
  gap: 8px;
}
.ise-pill {
  flex: 1;
  padding: 10px 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
  color: var(--muted);
  cursor: pointer;
  text-align: center;
  transition: all 0.2s ease;
}
.ise-pill.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  font-weight: 600;
}
.ise-stepper {
  display: flex;
  align-items: center;
  gap: 16px;
}
.ise-stepper-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  font-size: 18px;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease;
}
.ise-stepper-btn:active { background: var(--border); }
.ise-stepper-val {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  min-width: 24px;
  text-align: center;
}
.ise-save-btn {
  width: 100%;
  padding: 14px;
  margin-top: 24px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  transition: opacity 0.15s ease;
}
.ise-save-btn:active { opacity: 0.85; }
.ise-skip-btn {
  width: 100%;
  padding: 12px;
  margin-top: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  background: none;
  border: none;
  cursor: pointer;
}
.ise-skip-btn:active { opacity: 0.7; }


/* ═══════════════════════════════════════════
   SCREEN 3 — DAY DETAIL
   ═══════════════════════════════════════════ */

.ide-header {
  text-align: center;
  padding: 0 0 6px;
}

.ide-day-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  font-weight: 600;
  color: #1A1A1A;
  margin: 0;
  line-height: 1.2;
}

.ide-day-subtitle {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  color: #AAA;
  letter-spacing: 0.04em;
  margin-top: 4px;
}

/* Summary chips */
.ide-summary-chips {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  padding: 12px 0 6px;
}

.ide-chip {
  background: #ECEADE;
  border-radius: 20px;
  padding: 4px 11px;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: #888;
  display: flex;
  align-items: center;
  gap: 4px;
}

.ide-chip-icon {
  font-size: 10px;
}

/* Reorder hint */
.ide-reorder-hint {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 0 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  color: #999;
  opacity: 0.45;
}

/* Stop list */
.ide-stop-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 4px 0;
}

/* Loading state */
.ide-loading {
  padding: 20px 0;
  text-align: center;
}

.ide-loading-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
}

.ide-loading-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4A8B7F;
  animation: itinBlink 1s ease-in-out infinite;
}

@keyframes itinBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.25; }
}

.ide-loading-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #888;
}

/* Skeleton card */
.ide-skeleton-card {
  background: #FFF;
  border-radius: 18px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04), 0 0 0 1px rgba(0,0,0,0.03);
}

.ide-skel-shimmer {
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(244,243,238,0.7), transparent);
  animation: itinShimmerSlide 2.5s ease-in-out infinite;
}

@keyframes itinShimmerSlide {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(350%); }
}

.ide-skel-icon {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  background: #ECEADE;
  flex-shrink: 0;
  animation: itinShimmerBg 2s ease-in-out infinite;
}

@keyframes itinShimmerBg {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.ide-skel-lines {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.ide-skel-line {
  height: 13px;
  border-radius: 7px;
  background: #ECEADE;
  animation: itinShimmerBg 2s ease-in-out infinite;
}

.ide-skel-line--w75 { width: 75%; }
.ide-skel-line--w35 { width: 35%; }

/* Skeleton connector */
.ide-skeleton-conn {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 2px 8px 2px 0;
}

.ide-skeleton-conn-line {
  width: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.ide-skeleton-conn-pill {
  flex: 1;
  height: 34px;
  border-radius: 12px;
  overflow: hidden;
  background: #F0EFEB;
  position: relative;
}

.ide-skeleton-conn-pill .ide-skel-shimmer {
  animation: itinShimmerSlide 2.5s ease-in-out infinite;
}

/* Progressive reveal */
@keyframes itinCardDropIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.ide-card-reveal {
  animation: itinCardDropIn 0.5s cubic-bezier(0.4, 0, 0.2, 1) both;
}

/* Error state */
.ide-error {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  background: rgba(201,107,114,0.06);
  border: 1px solid rgba(201,107,114,0.12);
  border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: #888;
  margin-top: 12px;
}

.ide-error-retry {
  border: none;
  background: none;
  color: #4A8B7F;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
}


/* ═══════════════════════════════════════════
   DRAG-TO-REORDER
   ═══════════════════════════════════════════ */

.ic-drag-handle {
  width: 24px;
  height: 44px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  cursor: grab;
  flex-shrink: 0;
  touch-action: none;
  color: var(--muted);
  opacity: 0.4;
  margin-top: 12px;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  -webkit-tap-highlight-color: transparent;
}

.ic-drag-handle:active {
  cursor: grabbing;
  opacity: 1;
}

.ic-drag-dot-row {
  display: flex;
  gap: 3px;
}

.ic-drag-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #BBB;
}

/* Drop indicator */
.ic-drop-zone {
  height: 0;
  margin: 0;
  border-radius: 18px;
  background: transparent;
  border: 1.5px dashed transparent;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.ic-drop-zone.visible {
  height: 62px;
  margin: 2px 0;
  background: rgba(74,139,127,0.05);
  border-color: rgba(74,139,127,0.25);
}

.ic-drop-zone-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: rgba(74,139,127,0.5);
  font-weight: 500;
  opacity: 0;
  transition: opacity 0.2s;
}

.ic-drop-zone.visible .ic-drop-zone-label {
  opacity: 1;
}

/* Ghost card — the card you're physically dragging */
.ic-ghost-card {
  position: fixed;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.92;
  transform: scale(1.03) rotate(1.2deg);
  filter: drop-shadow(0 20px 50px rgba(0,0,0,0.22));
  transition: transform 0.15s ease;
}

.ic-ghost-card .ic-drag-handle { display: none; }
.ic-ghost-card .ic-conn { display: none; }

/* Dragging state — the faded placeholder left behind */
.ic-card-dragging {
  opacity: 0.15 !important;
  transform: scale(0.95) !important;
  transition: opacity 0.2s ease, transform 0.2s ease !important;
}

/* Reorder toast */
.ide-toast {
  position: fixed;
  top: 60px;
  left: 50%;
  transform: translateX(-50%) translateY(-20px);
  background: #2A2A2A;
  color: #F4F3EE;
  padding: 10px 20px;
  border-radius: 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10000;
  pointer-events: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ide-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}


/* ═══════════════════════════════════════════
   CARD WRAPPER (adds drag handle)
   ═══════════════════════════════════════════ */

.ide-card-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.ide-card-wrapper .ic {
  flex: 1;
  min-width: 0;
}

/* When card is collapsed, show drag handle inline */
.ide-card-wrapper .ic[data-open="1"] .ic-drag-handle-area {
  display: none;
}

/* ── Dark Mode ── */
[data-theme="dark"] .iov-day-card,
[data-theme="dark"] .ise-schedule-card,
[data-theme="dark"] .ise-add-btn,
[data-theme="dark"] .ide-skeleton-card{background:var(--card);}
[data-theme="dark"] .ise-add-btn{box-shadow:inset 0 0 0 1px var(--border);}
[data-theme="dark"] .iov-next-title,
[data-theme="dark"] .iov-done-title{color:var(--text);}
[data-theme="dark"] .iov-next-sub,
[data-theme="dark"] .iov-done-date{color:var(--muted);}
[data-theme="dark"] .iov-done-city{color:#C8C0B4;}
[data-theme="dark"] .iov-done-chevron{color:#5A544B;}
[data-theme="dark"] .iov-day-card--done{box-shadow:inset 0 0 0 1px var(--border);}
[data-theme="dark"] .iov-tag{color:#A09689;background:rgba(255,255,255,0.05);}
[data-theme="dark"] .iov-tag--accent{color:#7CC4B8;background:rgba(124,196,184,0.10);}
[data-theme="dark"] .iov-day-card--locked{background:rgba(255,255,255,0.02);box-shadow:inset 0 0 0 1px var(--border);}
[data-theme="dark"] .iov-locked-icon{background:rgba(255,255,255,0.04);}
[data-theme="dark"] .iov-locked-title{color:#5A544B;}
[data-theme="dark"] .iov-locked-date{color:#4A453E;}
