/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   Booking Wizard — Styles
   Extends style.css design tokens.
   All --var references resolve from :root in style.css.
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* ── Overlay (same pattern as modal-overlay) ── */
.booking-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.45);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: booking-fade-in 0.25s ease-out;
}

.booking-overlay.hidden { display: none; }

@keyframes booking-fade-in {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* ── Wizard Container ── */
.booking-container {
    background: #ffffff;
    border-radius: 32px;
    width: 100%;
    max-width: 560px;
    max-height: 92vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 40px 80px -20px rgba(15, 23, 42, 0.35);
    overflow: hidden;
    animation: booking-slide-up 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

@keyframes booking-slide-up {
    from { transform: translateY(40px) scale(0.97); opacity: 0; }
    to   { transform: translateY(0)   scale(1);    opacity: 1; }
}

/* ── Close Button ── */
.booking-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(15, 23, 42, 0.06);
    color: var(--text-secondary);
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    z-index: 10;
    line-height: 1;
}
.booking-close:hover {
    background: rgba(15, 23, 42, 0.12);
    color: var(--primary);
    transform: scale(1.05);
}

/* ── Progress Header ── */
.wizard-header {
    padding: 28px 32px 20px;
    border-bottom: 1px solid var(--border-color);
    flex-shrink: 0;
}

.wizard-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.3px;
}

/* Progress bar */
.wizard-progress {
    display: flex;
    align-items: center;
    gap: 0;
}

.wizard-progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    position: relative;
}

/* Connector line between dots */
.wizard-progress-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 14px;
    left: calc(50% + 14px);
    right: calc(-50% + 14px);
    height: 2px;
    background: var(--border-color);
    transition: background 0.4s;
}

.wizard-progress-step.completed::after {
    background: var(--accent);
}

.wizard-step-dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid var(--border-color);
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-secondary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    position: relative;
}

.wizard-progress-step.active .wizard-step-dot {
    border-color: var(--accent);
    background: var(--accent);
    color: white;
    box-shadow: 0 0 0 4px rgba(3, 105, 161, 0.15);
    transform: scale(1.1);
}

.wizard-progress-step.completed .wizard-step-dot {
    border-color: var(--accent);
    background: var(--accent);
    color: white;
}

/* Checkmark for completed steps */
.wizard-progress-step.completed .wizard-step-dot::after {
    content: '';
    width: 10px;
    height: 6px;
    border-left: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(-45deg) translateY(-2px);
    display: block;
}
.wizard-progress-step.completed .step-number { display: none; }

.wizard-step-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-top: 6px;
    text-align: center;
    transition: color 0.3s;
    white-space: nowrap;
}
.wizard-progress-step.active .wizard-step-label { color: var(--accent); }
.wizard-progress-step.completed .wizard-step-label { color: var(--accent); }

/* ── Scrollable Step Body ── */
.wizard-body {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch; /* momentum scroll on iOS */
    padding: 28px 32px;
    scroll-behavior: smooth;
}

/* ── Individual Steps ── */
.wizard-step { display: none; flex-direction: column; gap: 20px; animation: step-fade 0.3s ease-out; }
.wizard-step.active { display: flex; }

@keyframes step-fade {
    from { opacity: 0; transform: translateX(12px); }
    to   { opacity: 1; transform: translateX(0); }
}

.step-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0;
}

/* ── Form Fields ── */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-field label {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 0.1px;
}

.form-field .required-star { color: #EF4444; margin-left: 2px; }

.form-field input,
.form-field textarea,
.form-field select {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border-color);
    border-radius: 12px;
    font-family: inherit;
    font-size: 15px;
    color: var(--text-primary);
    background: rgba(248, 250, 252, 0.8);
    outline: none;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-appearance: none;
    appearance: none;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
    border-color: var(--accent);
    background: white;
    box-shadow: 0 0 0 4px rgba(3, 105, 161, 0.1);
}

.form-field textarea {
    resize: vertical;
    min-height: 100px;
    line-height: 1.5;
}

/* Select arrow */
.form-field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
    cursor: pointer;
}

/* Validation states */
.form-field.has-error input,
.form-field.has-error textarea,
.form-field.has-error select {
    border-color: rgba(239, 68, 68, 0.6);
    background: rgba(254, 242, 242, 0.5);
}

.form-field.is-valid input,
.form-field.is-valid textarea,
.form-field.is-valid select {
    border-color: rgba(34, 197, 94, 0.5);
}

.field-error {
    font-size: 12px;
    color: #EF4444;
    font-weight: 500;
    display: none;
}
.form-field.has-error .field-error { display: block; }

.field-hint {
    font-size: 12px;
    color: var(--text-secondary);
}

/* Char counter */
.char-counter {
    font-size: 12px;
    color: var(--text-secondary);
    text-align: right;
    margin-top: -4px;
}
.char-counter.over-limit { color: #EF4444; }

/* ── Pill Radio Groups ── */
.pill-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pill-label {
    position: relative;
    cursor: pointer;
}

.pill-label input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

.pill-face {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 18px;
    border-radius: 10px;
    border: 1.5px solid var(--border-color);
    background: rgba(248, 250, 252, 0.8);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    user-select: none;
}

.pill-label input:checked + .pill-face {
    border-color: var(--accent);
    background: rgba(3, 105, 161, 0.08);
    color: var(--accent);
    font-weight: 600;
    box-shadow: 0 0 0 3px rgba(3, 105, 161, 0.1);
}

.pill-face:hover { border-color: rgba(3, 105, 161, 0.3); background: white; }
.pill-label:focus-within .pill-face { outline: 3px solid rgba(3, 105, 161, 0.4); outline-offset: 2px; }

/* Remove 300ms tap delay on mobile */
.pill-label,
.pill-face,
.wizard-next-btn,
.wizard-back-btn,
.booking-close,
.detect-location-btn {
    touch-action: manipulation;
}

/* ── Photo Upload ── */
.photo-upload-zone {
    border: 2px dashed rgba(3, 105, 161, 0.25);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    cursor: pointer;
    transition: all 0.25s;
    background: rgba(3, 105, 161, 0.02);
    position: relative;
}

.photo-upload-zone:hover,
.photo-upload-zone.drag-over {
    border-color: var(--accent);
    background: rgba(3, 105, 161, 0.06);
}

.photo-upload-zone input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
    border: none;
    background: none;
    padding: 0;
    box-shadow: none;
}

.photo-upload-icon {
    margin-bottom: 10px;
    color: var(--accent);
    opacity: 0.7;
}

.photo-upload-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 4px;
}

.photo-upload-hint {
    font-size: 12px;
    color: var(--text-secondary);
}

/* ── Photo Thumbnails ── */
.photo-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 10px;
    margin-top: 12px;
}

.photo-thumb {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 1;
    background: #F1F5F9;
    border: 1px solid var(--border-color);
}

.photo-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.photo-thumb-pdf {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-size: 10px;
    font-weight: 600;
    color: var(--text-secondary);
    padding: 8px;
    text-align: center;
    word-break: break-all;
}

.photo-remove {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.7);
    border: none;
    color: white;
    font-size: 13px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: background 0.15s;
}
.photo-remove:hover { background: #EF4444; }

.photo-counter {
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 8px;
    font-weight: 500;
}
.photo-counter.at-limit   { color: var(--accent); }
.photo-counter.has-errors { color: #DC2626; }

/* ── Photo Thumbnail States ── */

/* Reading state — shows progress bar */
.thumb-reading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px;
    background: rgba(3, 105, 161, 0.04);
    border: 1.5px dashed rgba(3, 105, 161, 0.2);
}

.thumb-filename {
    font-size: 9px;
    font-weight: 600;
    color: var(--text-secondary);
    text-align: center;
    word-break: break-all;
    line-height: 1.3;
    max-height: 2.6em;
    overflow: hidden;
}

.thumb-progress {
    width: 100%;
    height: 5px;
    background: rgba(3, 105, 161, 0.12);
    border-radius: 99px;
    overflow: hidden;
}

.thumb-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent), #0284C7);
    border-radius: 99px;
    transition: width 0.2s ease-out;
    width: 0%;
}

.thumb-pct {
    font-size: 10px;
    font-weight: 700;
    color: var(--accent);
}

/* Ready state — brief success checkmark overlay */
.thumb-check {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(34, 197, 94, 0.82);
    border-radius: 10px;
    color: white;
    opacity: 1;
    transition: opacity 0.4s ease;
    pointer-events: none;
}
.thumb-check.fading { opacity: 0; }

/* Error state */
.thumb-error {
    background: rgba(254, 242, 242, 0.9);
    border: 1.5px solid rgba(239, 68, 68, 0.35);
}

.thumb-error-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 6px;
    color: #DC2626;
}

.thumb-error-label {
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
}

.thumb-error-reason {
    font-size: 9px;
    font-weight: 500;
    color: #B91C1C;
    text-align: center;
    line-height: 1.25;
}

/* ── Oversized File Inline Banner ── */
.photo-upload-banner {
    display: none;
    align-items: flex-start;
    gap: 10px;
    background: rgba(254, 235, 226, 0.95);
    border: 1px solid rgba(239, 100, 68, 0.35);
    border-radius: 12px;
    padding: 12px 14px;
    font-size: 13px;
    color: #92400E;
    font-weight: 500;
    line-height: 1.45;
    margin-bottom: 4px;
    animation: banner-slide-in 0.25s ease-out;
}
.photo-upload-banner.visible { display: flex; }

@keyframes banner-slide-in {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

.photo-upload-banner svg { flex-shrink: 0; margin-top: 1px; color: #D97706; }
.photo-upload-banner span { flex: 1; }

.photo-banner-dismiss {
    flex-shrink: 0;
    background: none;
    border: none;
    color: #92400E;
    font-size: 16px;
    cursor: pointer;
    line-height: 1;
    padding: 0 2px;
    opacity: 0.7;
    transition: opacity 0.15s;
    margin-top: -1px;
}
.photo-banner-dismiss:hover { opacity: 1; }

/* ── Conditional Field (hidden by JS) ── */
.conditional-field { display: none; }
.conditional-field.visible { display: flex; }

/* ── Step 3: Review Sections ── */
.review-card {
    background: var(--surface);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 18px 20px;
    margin-bottom: 12px;
}
.review-card:last-of-type { margin-bottom: 0; }

.review-card-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    color: var(--text-secondary);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 7px;
}
/* Push edit link to far right */
.review-card-title .edit-link { margin-left: auto; }

.review-row {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 4px 10px;
    margin-bottom: 9px;
    font-size: 14px;
    align-items: baseline;
}
.review-row:last-child { margin-bottom: 0; }

.review-label {
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 13px;
    white-space: nowrap;
}

.review-value {
    color: var(--primary);
    font-weight: 500;
}

.review-desc {
    font-size: 14px;
    color: var(--primary);
    line-height: 1.6;
    background: rgba(15, 23, 42, 0.03);
    padding: 10px 12px;
    border-radius: 10px;
    margin: 4px 0 10px;
    border: 1px solid var(--border-color);
}

.review-photos {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 4px;
}
.review-photo-chip {
    background: rgba(3, 105, 161, 0.08);
    border: 1px solid rgba(3, 105, 161, 0.15);
    color: var(--accent);
    border-radius: 8px;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 500;
    max-width: 180px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.edit-link {
    background: none;
    border: none;
    color: var(--accent);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    padding: 2px 0;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: opacity 0.2s;
    text-transform: none;
    letter-spacing: 0;
}
.edit-link:hover { opacity: 0.7; }

/* Privacy note */
.privacy-notice {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: rgba(3, 105, 161, 0.05);
    border: 1px solid rgba(3, 105, 161, 0.15);
    border-radius: 12px;
    padding: 14px 16px;
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-top: 12px;
}
.privacy-notice svg { flex-shrink: 0; color: var(--accent); margin-top: 1px; }

/* ── Wizard Footer Nav ── */
.wizard-footer {
    padding: 20px 32px;
    border-top: 1px solid var(--border-color);
    display: flex;
    gap: 12px;
    flex-shrink: 0;
    background: rgba(248, 250, 252, 0.9);
}

.wizard-back-btn {
    padding: 13px 20px;
    border-radius: 12px;
    border: 1.5px solid var(--border-color);
    background: white;
    color: var(--primary);
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
    flex-shrink: 0;
}
.wizard-back-btn:hover { background: #F1F5F9; border-color: rgba(15,23,42,0.15); }
.wizard-back-btn.hidden-btn { visibility: hidden; pointer-events: none; }

.wizard-next-btn {
    flex: 1;
    padding: 13px 20px;
    border-radius: 12px;
    border: none;
    background: linear-gradient(135deg, var(--accent), #0284C7);
    color: white;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 16px -4px rgba(3, 105, 161, 0.3);
}
.wizard-next-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 12px 20px -4px rgba(3, 105, 161, 0.4);
}
.wizard-next-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* ── Spinner inside button ── */
.btn-spinner {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255,255,255,0.35);
    border-top-color: white;
    border-radius: 50%;
    animation: btn-spin 0.8s linear infinite;
}
@keyframes btn-spin { to { transform: rotate(360deg); } }

/* ── Success State ── */
.booking-success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 48px 32px;
    gap: 16px;
    flex: 1;
}
.booking-success.visible { display: flex; }

.success-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, #22C55E, #16A34A);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 16px 32px -8px rgba(34, 197, 94, 0.4);
    animation: success-pop 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes success-pop {
    0%   { transform: scale(0.5); opacity: 0; }
    70%  { transform: scale(1.1); }
    100% { transform: scale(1);   opacity: 1; }
}

.success-title {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.4px;
}

.success-body {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 380px;
}

.success-email-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(3, 105, 161, 0.08);
    border: 1px solid rgba(3, 105, 161, 0.15);
    color: var(--accent);
    border-radius: 10px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
}

/* ── Location Input Row (input + detect button) ── */
.location-input-row {
    display: flex;
    gap: 8px;
    align-items: stretch;
}

.location-input-row input {
    flex: 1;
    min-width: 0;
}

.detect-location-btn {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1.5px solid var(--border-color);
    background: rgba(248, 250, 252, 0.8);
    color: var(--accent);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.detect-location-btn:hover {
    background: rgba(3, 105, 161, 0.08);
    border-color: rgba(3, 105, 161, 0.3);
    transform: scale(1.05);
}

.detect-location-btn:active {
    transform: scale(0.97);
}

/* ── Location Status Pill ── */
.location-status-pill {
    display: none;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 500;
    padding: 5px 10px;
    border-radius: 8px;
    margin-top: 6px;
    width: fit-content;
    transition: all 0.25s;
}

.location-status-detecting {
    background: rgba(3, 105, 161, 0.08);
    color: var(--accent);
    border: 1px solid rgba(3, 105, 161, 0.2);
}

.location-status-detected {
    background: rgba(34, 197, 94, 0.08);
    color: #15803D;
    border: 1px solid rgba(34, 197, 94, 0.25);
}

.location-status-error {
    background: rgba(239, 68, 68, 0.07);
    color: #DC2626;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

/* Spinning icon for detecting state */
.loc-spin {
    animation: loc-spin-anim 1s linear infinite;
    display: block;
}

@keyframes loc-spin-anim {
    to { transform: rotate(360deg); }
}

/* ── Mobile Styles ── */
@media (max-width: 600px) {
    .booking-overlay {
        padding: 0;
        align-items: flex-end;
    }

    .booking-container {
        border-radius: 32px 32px 0 0;
        max-height: 95vh;
        max-width: 100%;
        animation: booking-sheet-up 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    @keyframes booking-sheet-up {
        from { transform: translateY(100%); opacity: 0; }
        to   { transform: translateY(0);    opacity: 1; }
    }

    /* Pull close button into the header row alongside the title */
    .booking-close {
        position: static;
        width: 40px;
        height: 40px;
        flex-shrink: 0;
        background: rgba(15, 23, 42, 0.08);
        color: var(--primary);
        font-size: 22px;
        border-radius: 50%;
    }

    /* Make wizard-header a flex row: title+steps on left, close button on right */
    .wizard-header {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 18px 18px 14px;
    }

    /* Title + progress stacked inside header */
    .wizard-header-content {
        display: flex;
        flex-direction: column;
        flex: 1;
        min-width: 0;
        gap: 10px;
    }

    .wizard-body   { padding: 18px 18px; }
    .wizard-footer { padding: 14px 18px; }

    .wizard-step { gap: 16px; }
    .wizard-step-label { display: none; }
    .form-row { grid-template-columns: 1fr; }

    .pill-face {
        padding: 8px 13px;
        font-size: 13px;
    }

    .photo-upload-zone {
        padding: 16px;
    }
}

/* Very small screens (SE, 320px) */
@media (max-width: 380px) {
    .wizard-title { font-size: 17px; }

    .pill-face {
        padding: 7px 11px;
        font-size: 12px;
        gap: 4px;
    }

    .pill-face svg {
        width: 14px;
        height: 14px;
    }
}
