/* SuperVan trip planner — cloned from the React wizard. */

.ce-sv {
  background: linear-gradient(135deg, #F9F5F1, #E8E1D9);
  min-height: 80vh;
  padding: 3rem 1rem 4rem;
  font-family: Inter, system-ui, sans-serif;
}

.ce-sv-wrap { max-width: 72rem; margin: 0 auto; }

.ce-sv-alert {
  max-width: 56rem;
  margin: 0 auto 2rem;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #1e3a8a;
  border-radius: 0.5rem;
  padding: 0.9rem 1rem;
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-weight: 500;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}
.ce-sv-alert svg { width: 1rem; height: 1rem; stroke: #2563eb; flex-shrink: 0; margin-top: 0.15rem; }
.ce-sv-seed {
  max-width: 56rem;
  margin: -1rem auto 2rem;
  background: #f0fdf4;
  border: 1px solid #86efac;
  color: #166534;
  border-radius: 0.5rem;
  padding: 0.9rem 1rem;
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-weight: 500;
}
.ce-sv-seed svg { width: 1.1rem; height: 1.1rem; flex-shrink: 0; margin-top: 0.15rem; }

.ce-sv-steps {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 56rem;
  margin: 0 auto 3.5rem;
  overflow-x: auto;
  overflow-y: visible;
  padding: 0.85rem 0.35rem 2.75rem;
}
.ce-sv-steps::-webkit-scrollbar { display: none; }
.ce-sv-step {
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 60px;
  justify-content: center;
  position: relative;
}
.ce-sv-step:last-child { flex: 0; justify-content: flex-start; }
.ce-sv-step.is-clickable { cursor: pointer; }
.ce-sv-step.is-clickable:hover .ce-sv-dot { transform: scale(1.15); box-shadow: 0 10px 18px rgba(139,69,19,0.28); }
.ce-sv-step.is-clickable:hover .ce-sv-step-label { color: #8B4513; }
.ce-sv-dot-wrap { display: flex; flex-direction: column; align-items: center; z-index: 1; position: relative; pointer-events: none; }
.ce-sv-dot {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 700;
  box-shadow: 0 8px 16px rgba(0,0,0,0.12);
  border: 4px solid #fff;
  background: #e5e7eb;
  color: #6b7280;
  transition: 0.3s ease;
}
@media (min-width: 768px) { .ce-sv-dot { width: 3rem; height: 3rem; font-size: 1.125rem; } }
.ce-sv-dot.is-done, .ce-sv-dot.is-visited { background: #8B4513; color: #fff; transform: scale(1.1); }
.ce-sv-dot.is-visited { opacity: 0.72; }
.ce-sv-dot.is-current { border-color: #6B8E23; background: #8B4513; color: #fff; transform: scale(1.1); opacity: 1; }
.ce-sv-step-label {
  position: absolute;
  top: 3.25rem;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  color: #9ca3af;
}
@media (min-width: 768px) { .ce-sv-step-label { top: 3.5rem; font-size: 0.75rem; } }
.ce-sv-step-label.is-done, .ce-sv-step-label.is-visited { color: #8B4513; }
.ce-sv-bar {
  display: none;
  flex-grow: 1;
  height: 4px;
  margin: 0 0.5rem;
  background: #e5e7eb;
  border-radius: 999px;
  overflow: hidden;
  min-width: 20px;
  pointer-events: none;
}
@media (min-width: 640px) { .ce-sv-bar { display: block; } }
.ce-sv-bar > span { display: block; height: 100%; width: 0; background: #8B4513; transition: width 0.4s ease; }
.ce-sv-bar.is-full > span { width: 100%; }

.ce-sv-panel {
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(12px);
  border-radius: 1.5rem;
  padding: 1rem;
  box-shadow: 0 25px 50px rgba(0,0,0,0.12);
  border: 1px solid rgba(255,255,255,0.5);
  min-height: 500px;
}
@media (min-width: 768px) { .ce-sv-panel { padding: 2.5rem; } }

.ce-sv-head { text-align: center; margin-bottom: 2.5rem; }
.ce-sv-head h2 { font-family: "Playfair Display", Georgia, serif; font-size: 1.875rem; color: #2C2C2C; margin: 0 0 0.75rem; }
.ce-sv-head p { color: #4b5563; margin: 0 auto; max-width: 36rem; }
.ce-sv-note { color: #d97706; font-size: 0.875rem; font-weight: 600; margin-top: 0.5rem !important; }

.ce-sv-grid-2 { display: grid; gap: 2rem; }
@media (min-width: 768px) { .ce-sv-grid-2 { grid-template-columns: 1fr 1fr; } }

.ce-sv-field { display: grid; gap: 0.75rem; }
.ce-sv-field label, .ce-sv-label {
  font-size: 1.125rem;
  font-weight: 600;
  color: #2C2C2C;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.ce-sv-field select, .ce-sv-field input, .ce-sv-field textarea {
  height: 3.5rem;
  font-size: 1.125rem;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  padding: 0 0.9rem;
  width: 100%;
}
.ce-sv-field textarea { height: auto; min-height: 120px; padding: 0.75rem 0.9rem; resize: none; font-size: 1rem; }
.ce-sv-field input:focus, .ce-sv-field select:focus, .ce-sv-field textarea:focus {
  outline: 2px solid rgba(139,69,19,0.35);
  background: #fff;
}

.ce-sv-ok {
  background: #f0fdf4;
  color: #15803d;
  border: 1px solid #bbf7d0;
  padding: 1rem;
  border-radius: 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
}
.ce-sv-warn {
  background: #fffbeb;
  border: 1px solid #fde68a;
  color: #92400e;
  padding: 1rem;
  border-radius: 0.5rem;
}
.ce-sv-warn strong { display: block; color: #78350f; margin-bottom: 0.25rem; }
.ce-sv-error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
  padding: 1rem;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

.ce-sv-seasons { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (min-width: 768px) { .ce-sv-seasons { grid-template-columns: repeat(4, 1fr); } }
.ce-sv-season {
  height: 7rem;
  border: 2px solid #f3f4f6;
  background: #fff;
  border-radius: 0.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 1.125rem;
  font-weight: 500;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}
.ce-sv-season.is-on { border-color: #8B4513; background: rgba(245,230,211,0.3); color: #8B4513; }

.ce-sv-actions { display: flex; justify-content: space-between; gap: 1rem; padding-top: 2rem; flex-wrap: wrap; }
.ce-sv-actions.is-end { justify-content: flex-end; }
.ce-sv-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 0;
  cursor: pointer;
  font-weight: 600;
  border-radius: 0.75rem;
  padding: 0.9rem 2rem;
  font-size: 1.05rem;
  transition: 0.2s ease;
}
.ce-sv-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.ce-sv-btn-primary { background: #8B4513; color: #fff; box-shadow: 0 10px 20px rgba(139,69,19,0.25); }
.ce-sv-btn-primary:hover:not(:disabled) { background: #6B8E23; }
.ce-sv-btn-outline { background: #fff; border: 1px solid #d1d5db; color: #374151; }
.ce-sv-btn-ghost { background: transparent; color: #6b7280; }
.ce-sv-btn-lg { height: 3.5rem; padding: 0 2rem; font-size: 1.125rem; }
.ce-sv-btn-full { width: 100%; }
.ce-sv-btn-submit {
  width: 100%;
  height: 4rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  border: 0;
  border-radius: 0.75rem;
  cursor: pointer;
  background: linear-gradient(90deg, #8B4513, #6B8E23);
  box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}
.ce-sv-btn-submit:hover:not(:disabled) { transform: translateY(-2px); }
.ce-sv-btn-submit:disabled { opacity: 0.7; cursor: wait; }

.ce-sv-dest-grid { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .ce-sv-dest-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .ce-sv-dest-grid { grid-template-columns: 1fr 1fr 1fr; } }
.ce-sv-dest {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  text-align: left;
  font: inherit;
  position: relative;
  cursor: pointer;
  border-radius: 0.75rem;
  overflow: hidden;
  height: 16rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}
.ce-sv-dest img,
.ce-sv-dest h3,
.ce-sv-dest .ce-sv-check,
.ce-sv-dest::after {
  pointer-events: none;
}
.ce-sv-dest img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s; }
.ce-sv-dest:hover img { transform: scale(1.1); }
.ce-sv-dest::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.8), transparent); }
.ce-sv-dest.is-on { box-shadow: 0 0 0 4px #6B8E23, 0 0 0 6px #fff; }
.ce-sv-dest h3 { position: absolute; left: 1.5rem; bottom: 1.5rem; z-index: 1; color: #fff; margin: 0; font-size: 1.25rem; }
.ce-sv-check {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  background: #6B8E23;
  color: #fff;
  padding: 0.5rem;
  border-radius: 999px;
}
.ce-sv-custom { background: #f9fafb; padding: 1.5rem; border-radius: 0.75rem; border: 1px dashed #d1d5db; margin-top: 1.5rem; }
.ce-sv-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; min-height: 2rem; }
.ce-sv-pill { display: inline-flex; padding: 0.25rem 0.75rem; border-radius: 999px; font-size: 0.875rem; font-weight: 500; color: #fff; background: #8B4513; }
.ce-sv-pill.is-custom { background: #4b5563; }
.ce-sv-pill.is-blue { background: #dbeafe; color: #1e40af; }
.ce-sv-pill.is-orange { background: #ffedd5; color: #9a3412; }

.ce-sv-acts { display: grid; gap: 1rem; }
@media (min-width: 768px) { .ce-sv-acts { grid-template-columns: 1fr 1fr; } }
.ce-sv-act {
  cursor: pointer;
  padding: 1.5rem;
  border-radius: 0.75rem;
  border: 2px solid #f3f4f6;
  background: #fff;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: 0.2s ease;
}
.ce-sv-act:hover { border-color: #bfdbfe; box-shadow: 0 8px 20px rgba(0,0,0,0.06); }
.ce-sv-act.is-on { background: #eff6ff; border-color: #3b82f6; box-shadow: 0 4px 12px rgba(59,130,246,0.15); }
.ce-sv-act-icon { padding: 0.75rem; border-radius: 999px; background: #f3f4f6; color: #6b7280; display: grid; place-items: center; }
.ce-sv-act.is-on .ce-sv-act-icon { background: #3b82f6; color: #fff; }
.ce-sv-act h3 { margin: 0; font-size: 1.125rem; }
.ce-sv-act.is-on h3 { color: #1d4ed8; }
.ce-sv-act p { margin: 0; font-size: 0.875rem; color: #6b7280; }
.ce-sv-act-tick {
  width: 1.5rem; height: 1.5rem; border-radius: 999px; border: 2px solid #d1d5db;
  display: grid; place-items: center; flex-shrink: 0;
}
.ce-sv-act.is-on .ce-sv-act-tick { border-color: #3b82f6; background: #3b82f6; color: #fff; }

.ce-sv-divider { display: flex; align-items: center; gap: 0.75rem; margin: 1rem 0; }
.ce-sv-divider span { font-size: 0.75rem; font-weight: 700; color: #9ca3af; letter-spacing: 0.16em; text-transform: uppercase; }
.ce-sv-divider::before, .ce-sv-divider::after { content: ""; height: 1px; background: #e5e7eb; flex: 1; }

.ce-sv-thrills { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .ce-sv-thrills { grid-template-columns: 1fr 1fr; } }
@media (min-width: 768px) { .ce-sv-thrills { grid-template-columns: 1fr 1fr 1fr; } }
@media (min-width: 1024px) { .ce-sv-thrills { grid-template-columns: repeat(4, 1fr); } }
.ce-sv-thrill {
  cursor: pointer;
  height: 100%;
  border: 2px solid #f3f4f6;
  background: #fff;
  border-radius: 0.75rem;
  padding: 1.25rem;
  transition: 0.2s ease;
}
.ce-sv-thrill.is-on { border-color: #f97316; background: #fff7ed; }
.ce-sv-thrill h4 { margin: 0.5rem 0 0.25rem; }
.ce-sv-thrill.is-on h4 { color: #9a3412; }
.ce-sv-thrill p { margin: 0; font-size: 0.75rem; color: #6b7280; }
.ce-sv-thrill-top { display: flex; justify-content: space-between; }
.ce-sv-thrill-icon { padding: 0.5rem; border-radius: 0.5rem; background: #f3f4f6; color: #4b5563; }
.ce-sv-thrill.is-on .ce-sv-thrill-icon { background: #f97316; color: #fff; }
.ce-sv-thrill-on { background: #f97316; color: #fff; border-radius: 999px; padding: 0.15rem; display: grid; place-items: center; }

.ce-sv-route { display: grid; gap: 2rem; }
@media (min-width: 768px) { .ce-sv-route { grid-template-columns: 1fr 1fr; min-height: 500px; } }
.ce-sv-route-card { background: #f9fafb; border: 1px solid #e5e7eb; border-radius: 0.75rem; padding: 1rem; }
.ce-sv-start, .ce-sv-end {
  display: flex; align-items: center; gap: 0.75rem; font-weight: 600; padding: 0.5rem; border-radius: 0.4rem;
}
.ce-sv-start { background: #dcfce7; color: #15803d; margin-bottom: 1rem; }
.ce-sv-end { background: #fee2e2; color: #b91c1c; margin-top: 1rem; }
.ce-sv-drag {
  display: flex; align-items: center; gap: 0.75rem; background: #fff; border: 1px solid #e5e7eb;
  padding: 0.75rem; border-radius: 0.5rem; margin-bottom: 0.5rem; box-shadow: 0 1px 2px rgba(0,0,0,0.04); cursor: grab;
}
.ce-sv-drag.is-over { outline: 2px dashed #8B4513; }
.ce-sv-drag small { color: #6b7280; font-size: 0.75rem; display: flex; gap: 0.5rem; }
.ce-sv-badge { margin-left: auto; border: 1px solid #e5e7eb; border-radius: 999px; padding: 0.1rem 0.55rem; font-size: 0.75rem; }
.ce-sv-empty {
  text-align: center; padding: 2.5rem 1rem; color: #9ca3af; font-style: italic;
  border: 2px dashed #e5e7eb; border-radius: 0.5rem; background: #fff;
}
.ce-sv-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1rem; }
.ce-sv-stat { padding: 0.75rem; border-radius: 0.5rem; }
.ce-sv-stat.is-blue { background: #eff6ff; border: 1px solid #dbeafe; }
.ce-sv-stat.is-purple { background: #faf5ff; border: 1px solid #e9d5ff; }
.ce-sv-stat span { display: block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }
.ce-sv-stat.is-blue span { color: #2563eb; }
.ce-sv-stat.is-purple span { color: #7c3aed; }
.ce-sv-stat strong { font-size: 1.25rem; color: #1f2937; }
.ce-sv-map {
  height: 420px;
  min-height: 420px;
  background: #f3f4f6;
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid #d1d5db;
  position: relative;
  color: #6b7280;
  text-align: center;
}
.ce-sv-map.is-interactive {
  display: block;
  padding: 0;
}
.ce-sv-map.is-placing .ce-sv-map-canvas { cursor: crosshair; }
.ce-sv-map-canvas {
  width: 100%;
  height: 100%;
  min-height: 420px;
  position: absolute;
  inset: 0;
  z-index: 1;
}
.ce-sv-map iframe { width: 100%; height: 100%; min-height: 420px; border: 0; position: absolute; inset: 0; }
.ce-sv-map-tag {
  position: absolute;
  left: 0.75rem;
  bottom: 0.75rem;
  right: 0.75rem;
  background: rgba(255,255,255,0.92);
  padding: 0.45rem 0.75rem;
  font-size: 0.75rem;
  border-radius: 0.4rem;
  z-index: 500;
  text-align: left;
  pointer-events: none;
}
.ce-sv-endpoint { margin-bottom: 1rem; }
.ce-sv-endpoint-label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 0.45rem;
  color: #374151;
}
.ce-sv-endpoint-label svg { width: 0.95rem; height: 0.95rem; stroke: currentColor; fill: none; stroke-width: 2; }
.ce-sv-endpoint-row { display: flex; gap: 0.5rem; align-items: center; }
.ce-sv-endpoint-row input {
  flex: 1;
  border: 1px solid #d1d5db;
  border-radius: 0.45rem;
  padding: 0.55rem 0.75rem;
  font-size: 0.875rem;
}
.ce-sv-endpoint-row .ce-sv-map-tool { flex-shrink: 0; white-space: nowrap; }

.ce-sv-summary { max-width: 56rem; margin: 0 auto; background: #fff; border-radius: 0.75rem; overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,0.12); }
.ce-sv-summary-h { background: linear-gradient(90deg, #2563eb, #9333ea); color: #fff; padding: 1.5rem; font-size: 1.25rem; font-weight: 700; display: flex; gap: 0.5rem; align-items: center; }
.ce-sv-summary-b { padding: 2rem; display: grid; gap: 2rem; }
.ce-sv-k { color: #1d4ed8; font-weight: 600; display: flex; gap: 0.5rem; align-items: center; margin-bottom: 0.35rem; }
.ce-sv-big { font-size: 1.5rem; font-weight: 700; color: #111; margin: 0; }
.ce-sv-muted { color: #6b7280; font-size: 0.875rem; margin: 0; }
.ce-sv-path { background: #f9fafb; border: 1px solid #e5e7eb; border-radius: 0.75rem; padding: 1rem; display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center; font-size: 0.875rem; }
.ce-sv-costbox { background: #eff6ff; border: 1px solid #dbeafe; border-radius: 0.75rem; padding: 1rem; }
.ce-sv-costbox p:first-child { font-size: 1.875rem; font-weight: 700; margin: 0 0 0.35rem; }

.ce-sv-book { display: grid; gap: 2rem; max-width: 56rem; margin: 0 auto; }
@media (min-width: 768px) { .ce-sv-book { grid-template-columns: 3fr 2fr; } }
.ce-sv-book-card { background: #fff; border-radius: 0.75rem; box-shadow: 0 10px 24px rgba(0,0,0,0.08); padding: 2rem; }
.ce-sv-side { background: #fff; padding: 1.5rem; border-radius: 0.75rem; box-shadow: 0 10px 24px rgba(0,0,0,0.08); border-top: 4px solid #3b82f6; }
.ce-sv-side-row { display: flex; justify-content: space-between; font-size: 0.875rem; margin-bottom: 0.6rem; }
.ce-sv-promise { background: #F9F5F1; border: 1px solid #E8E1D9; border-radius: 0.75rem; padding: 1.5rem; display: flex; gap: 0.75rem; }
.ce-sv-lock { font-size: 0.75rem; color: #9ca3af; text-align: center; display: flex; justify-content: center; gap: 0.35rem; align-items: center; }

.ce-sv-done { max-width: 56rem; margin: 0 auto; padding: 3rem 1rem; text-align: center; }
.ce-sv-done-icon {
  width: 8rem; height: 8rem; margin: 0 auto 2rem; border-radius: 999px;
  background: linear-gradient(135deg, #4ade80, #16a34a); color: #fff;
  display: grid; place-items: center; box-shadow: 0 20px 40px rgba(22,163,74,0.3);
}
.ce-sv-done-icon svg { width: 5rem; height: 5rem; }
.ce-sv-done h2 { font-family: "Playfair Display", Georgia, serif; font-size: clamp(2rem, 4vw, 3rem); }
.ce-sv-ref { display: inline-flex; gap: 0.75rem; align-items: center; background: #F9F5F1; border: 1px solid #E8E1D9; padding: 0.75rem 1.5rem; border-radius: 0.75rem; }
.ce-sv-ref strong { font-family: ui-monospace, monospace; font-size: 1.5rem; color: #8B4513; }
.ce-sv-done-grid { display: grid; gap: 2rem; text-align: left; margin: 3rem 0; }
@media (min-width: 768px) { .ce-sv-done-grid { grid-template-columns: 1fr 1fr; } }
.ce-sv-done-card { background: #fff; border-radius: 0.75rem; overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.ce-sv-done-card h3 { background: #8B4513; color: #fff; margin: 0; padding: 1rem 1.5rem; }
.ce-sv-done-card .inner { padding: 2rem; }
.ce-sv-next { background: linear-gradient(135deg, #2C2C2C, #1a1a1a); color: #fff; border-radius: 0.75rem; padding: 2rem; }
.ce-sv-next h3 { font-size: 1.875rem; margin: 0 0 1rem; }
.ce-sv-done-btns { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }

.ce-sv svg { width: 1.25rem; height: 1.25rem; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.ce-sv-season svg, .ce-sv-act-icon svg, .ce-sv-thrill-icon svg { width: 1.5rem; height: 1.5rem; }
.ce-sv-grip { color: #9ca3af; cursor: grab; }

.ce-sv-catalog {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  margin-bottom: 0.5rem;
}
.ce-sv-catalog-card {
  position: relative;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.ce-sv-catalog-card:hover { border-color: #93c5fd; box-shadow: 0 8px 18px rgba(0,0,0,0.08); }
.ce-sv-catalog-card.is-on { border-color: #3b82f6; box-shadow: 0 4px 12px rgba(59,130,246,0.18); }
.ce-sv-catalog-card img { width: 100%; height: 110px; object-fit: cover; display: block; }
.ce-sv-catalog-body { padding: 0.75rem; }
.ce-sv-catalog-body h4 { margin: 0 0 0.25rem; font-size: 0.9rem; }
.ce-sv-catalog-body p { margin: 0; font-size: 0.75rem; color: #6b7280; font-weight: 600; }
.ce-sv-catalog-on {
  position: absolute; top: 0.5rem; right: 0.5rem;
  background: #3b82f6; color: #fff; border-radius: 999px; padding: 0.2rem;
  display: grid; place-items: center;
}
.ce-sv-catalog-on svg { width: 0.85rem; height: 0.85rem; }

.ce-sv-modal {
  position: fixed; inset: 0; z-index: 80;
  background: rgba(17,24,39,0.55);
  display: grid; place-items: center;
  padding: 1rem;
}
.ce-sv-modal-card {
  background: #fff;
  border-radius: 1rem;
  max-width: 32rem;
  width: 100%;
  max-height: 90vh;
  overflow: auto;
  position: relative;
  box-shadow: 0 25px 50px rgba(0,0,0,0.25);
}
.ce-sv-modal-x {
  position: absolute; top: 0.6rem; right: 0.6rem;
  border: 0; background: rgba(255,255,255,0.9); border-radius: 999px;
  width: 2rem; height: 2rem; display: grid; place-items: center; cursor: pointer;
  z-index: 2;
}
.ce-sv-modal-img { width: 100%; height: 180px; object-fit: cover; display: block; }
.ce-sv-modal-body { padding: 1.25rem 1.5rem 1.5rem; }
.ce-sv-modal-body h3 { margin: 0 0 0.5rem; font-size: 1.35rem; }
.ce-sv-modal-meta { list-style: none; padding: 0; margin: 1rem 0; display: grid; gap: 0.45rem; }
.ce-sv-modal-meta li { display: flex; align-items: center; gap: 0.45rem; font-size: 0.9rem; color: #374151; }
.ce-sv-modal-meta svg { width: 1rem; height: 1rem; color: #6b7280; }
.ce-sv-modal-actions { display: flex; flex-wrap: wrap; gap: 0.6rem; }
