/* ══════════════════════════════════════
   Media Form — equal-height top grid
══════════════════════════════════════ */

/* Force all grid cells to stretch to the tallest card in the row */
.mf-top-grid { align-items: stretch !important; }
.mf-top-grid > * { height: 100% !important; display: flex !important; flex-direction: column !important; }
.mf-top-grid > * > * { flex: 1 1 0 !important; height: auto !important; }

/* ══════════════════════════════════════
   Totem Dashboard (Map)
══════════════════════════════════════ */

.td-wrap    { display: flex; flex-direction: column; gap: 1rem; }
.td-columns { display: grid; grid-template-columns: 3fr 2fr; gap: 1rem; align-items: start; }

.td-card {
    background: #fff;
    border: 1px solid #f3f4f6;
    border-radius: .75rem;
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / .05);
    padding: 1.25rem;
}
.td-card--map { padding-bottom: .85rem; }

.td-section-title {
    font-size: .7rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .07em;
    color: #6b7280; margin: 0 0 .85rem;
}

/* Map */
.td-map {
    height: 480px; border-radius: .5rem;
    overflow: hidden;
}

/* Legend */
.td-legend { display: flex; gap: 1rem; margin-top: .6rem; }
.td-legend-item {
    display: flex; align-items: center; gap: .3rem;
    font-size: .72rem; color: #6b7280;
}
.td-legend-item::before {
    content: ''; display: block;
    width: .55rem; height: .55rem; border-radius: 9999px;
}
.td-legend-item--online::before  { background: #22c55e; }
.td-legend-item--offline::before { background: #ef4444; }

/* Markers */
.td-pin {
    width: 14px; height: 14px;
    border-radius: 9999px;
    border: 2.5px solid #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,.35);
    cursor: pointer;
    transition: transform .12s;
}
.td-pin:hover       { transform: scale(1.35); }
.td-pin--online     { background: #22c55e; }
.td-pin--offline    { background: #ef4444; }

/* Popup */
.td-popup        { font-family: inherit; padding: .1rem 0; }
.td-popup-name   { display: block; font-size: .8125rem; font-weight: 600; color: #111827; margin-bottom: .2rem; }
.td-popup-loc    { display: block; font-size: .75rem; color: #6b7280; margin-bottom: .3rem; }
.td-popup-badge  {
    display: inline-block; font-size: .68rem; font-weight: 600;
    padding: .1rem .45rem; border-radius: 9999px; margin-bottom: .25rem;
}
.td-popup-badge--on  { background: #dcfce7; color: #15803d; }
.td-popup-badge--off { background: #fee2e2; color: #b91c1c; }
.td-popup-time   { display: block; font-size: .7rem; color: #9ca3af; }

/* Device table */
.td-table-header {
    display: grid; grid-template-columns: 2fr 2fr 1fr;
    padding: .3rem .4rem;
    font-size: .65rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: .06em; color: #9ca3af;
    border-bottom: 1px solid #f3f4f6;
    margin-bottom: .15rem;
}

.td-table-row {
    display: grid; grid-template-columns: 2fr 2fr 1fr;
    align-items: center;
    padding: .5rem .4rem;
    border-bottom: 1px solid #f9fafb;
    font-size: .8125rem;
}
.td-table-row:last-of-type { border-bottom: none; }

.td-totem-name {
    display: flex; align-items: center; gap: .45rem;
    font-weight: 500; color: #111827;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.td-dot {
    width: .45rem; height: .45rem;
    border-radius: 9999px; flex-shrink: 0;
}
.td-dot--online  { background: #22c55e; }
.td-dot--offline { background: #ef4444; }

.td-totem-loc       { font-size: .78rem; color: #6b7280; }
.td-totem-time      { font-size: .78rem; color: #374151; }
.td-totem-time--late { color: #ef4444; font-weight: 500; }

.td-empty { font-size: .8125rem; color: #9ca3af; text-align: center; padding: 1.5rem 0; }

/* Stats */
.td-stats {
    display: flex; gap: 2rem;
    margin-top: 1rem; padding-top: .85rem;
    border-top: 1px solid #f3f4f6;
}
.td-stat { display: flex; align-items: center; gap: .6rem; }
.td-stat-icon { display: flex; flex-shrink: 0; }
.td-stat-icon svg { width: 1.4rem; height: 1.4rem; }
.td-stat-icon--total  { color: #9ca3af; }
.td-stat-icon--online { color: #22c55e; }
.td-stat-val   { display: block; font-size: 1.5rem; font-weight: 700; line-height: 1; color: #111827; }
.td-stat-val--green { color: #16a34a; }
.td-stat-label { display: block; font-size: .72rem; color: #9ca3af; margin-top: .1rem; }

/* ══════════════════════════════════════
   Totem Monitor
══════════════════════════════════════ */

.tm-wrap         { display: flex; flex-direction: column; gap: 1rem; }
.tm-row          { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; align-items: start; }
.tm-col-info     { min-width: 0; }
.tm-col-chart    { min-width: 0; }

.tm-card {
    background: #fff;
    border: 1px solid #f3f4f6;
    border-radius: .75rem;
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / .05);
    padding: 1.25rem;
}

.tm-card-header {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 1rem;
}

.tm-section-title {
    font-size: .7rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .07em;
    color: #6b7280; margin: 0 0 1rem;
}

/* Badge Online/Offline */
.tm-badge {
    display: inline-flex; align-items: center; gap: .3rem;
    font-size: .7rem; font-weight: 600;
    padding: .2rem .6rem; border-radius: 9999px;
}
.tm-badge::before {
    content: ''; display: block;
    width: .45rem; height: .45rem; border-radius: 9999px;
}
.tm-badge--online  { background: #dcfce7; color: #15803d; }
.tm-badge--online::before  { background: #22c55e; }
.tm-badge--offline { background: #fee2e2; color: #b91c1c; }
.tm-badge--offline::before { background: #ef4444; }

/* Info rows */
.tm-fields       { display: flex; flex-direction: column; gap: .65rem; }
.tm-field-row    { display: grid; grid-template-columns: 9rem 1fr; align-items: center; gap: .75rem; }
.tm-field-key    { font-size: .8rem; font-weight: 500; color: #6b7280; white-space: nowrap; }
.tm-field-val    { font-size: .875rem; color: #111827; }
.tm-field-val--mono    { font-family: monospace; font-size: .78rem; color: #374151; word-break: break-all; }
.tm-field-val--primary { color: var(--primary-600); font-weight: 500; }
.tm-field-val--green   { color: #16a34a; font-weight: 500; }
.tm-field-val--muted   { color: #9ca3af; }

/* Toggle */
.tm-toggle       { display: flex; align-items: center; gap: .5rem; cursor: pointer; }
.tm-toggle-track {
    position: relative; width: 2.25rem; height: 1.25rem;
    background: #e5e7eb; border-radius: 9999px;
    transition: background .15s;
    flex-shrink: 0;
}
.tm-toggle-track::after {
    content: ''; position: absolute;
    top: .15rem; left: .15rem;
    width: .95rem; height: .95rem;
    background: #fff; border-radius: 9999px;
    transition: transform .15s;
}
.peer:checked ~ .tm-toggle-track            { background: var(--primary-500); }
.peer:checked ~ .tm-toggle-track::after     { transform: translateX(1rem); }
.tm-toggle-label { font-size: .8rem; color: #374151; }

/* Chart */
.tm-legend       { display: flex; gap: 1rem; margin-bottom: .75rem; }
.tm-legend-item  { display: flex; align-items: center; gap: .3rem; font-size: .72rem; color: #6b7280; }
.tm-legend-item::before { content: ''; display: block; width: .6rem; height: .6rem; border-radius: 2px; }
.tm-legend-item--online::before  { background: #22c55e; }
.tm-legend-item--offline::before { background: #ef4444; }

.tm-chart-wrap   { margin-bottom: .5rem; }
.tm-chart        { display: flex; align-items: flex-end; gap: 2px; height: 100px; }
.tm-bar-col      { flex: 1; display: flex; align-items: flex-end; height: 100%; }
.tm-bar          { width: 100%; border-radius: 2px 2px 0 0; transition: opacity .15s; }
.tm-bar:hover    { opacity: .8; }
.tm-bar--online  { height: 100%; background: #22c55e; }
.tm-bar--offline { height: 20%;  background: #ef4444; }
.tm-bar--future  { height: 10%;  background: #e5e7eb; }

.tm-chart-labels { display: flex; gap: 2px; margin-top: .25rem; }
.tm-chart-label  { flex: 1; font-size: .58rem; color: #9ca3af; text-align: center; overflow: hidden; }

/* Stats */
.tm-stats     { display: flex; gap: 2rem; margin-top: 1.25rem; padding-top: 1rem; border-top: 1px solid #f3f4f6; }
.tm-stat      { display: flex; flex-direction: column; gap: .15rem; }
.tm-stat-val  { font-size: 1.5rem; font-weight: 700; line-height: 1; }
.tm-stat-val--green { color: #16a34a; }
.tm-stat-val--red   { color: #ef4444; }
.tm-stat-label { font-size: .72rem; color: #9ca3af; }

/* ══════════════════════════════════════
   Playlist Editor
══════════════════════════════════════ */

/* Layout */
.pe-wrap        { display: flex; flex-direction: column; gap: 1rem; }
.pe-columns     { display: grid; grid-template-columns: 2fr 3fr; gap: 1rem; align-items: start; }
.pe-col-items   { min-width: 0; }
.pe-col-editor  { min-width: 0; }

/* Card base */
.pe-card {
    background: #fff;
    border-radius: 0.75rem;
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / .05);
    ring-color: transparent;
    border: 1px solid #f3f4f6;
    padding: 1.25rem;
}

.pe-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: .75rem;
}

/* Titles */
.pe-section-title {
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: #6b7280;
    margin: 0 0 .85rem;
}

/* Info grid (top section) */
.pe-info-grid          { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.pe-info-grid--2col    { grid-template-columns: 1fr 1fr; }

/* Labels */
.pe-label    { display: block; font-size: .8125rem; font-weight: 500; color: #374151; margin-bottom: .3rem; }
.pe-required { color: #ef4444; }

/* Badge */
.pe-badge {
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--primary-50); color: var(--primary-700);
    border-radius: 9999px; font-size: .7rem; font-weight: 700;
    padding: .1rem .55rem;
}

/* Items list */
.pe-item-list { display: flex; flex-direction: column; gap: .25rem; margin-bottom: .75rem; }

.pe-item-btn {
    display: flex; align-items: center; gap: .6rem;
    width: 100%; text-align: left;
    padding: .55rem .65rem;
    border-radius: .5rem;
    border: 1px solid transparent;
    background: transparent;
    cursor: pointer;
    transition: background .12s, border-color .12s;
}
.pe-item-btn:hover                { background: #f9fafb; }
.pe-item-btn--active              { background: var(--primary-50) !important; border-color: var(--primary-200) !important; }

.pe-item-num {
    font-size: .7rem; font-weight: 700; color: #9ca3af;
    width: 1.1rem; text-align: center; flex-shrink: 0;
}
.pe-item-num--active { color: var(--primary-600); }

.pe-item-info  { flex: 1; min-width: 0; }
.pe-item-name  { display: block; font-size: .8125rem; font-weight: 500; color: #111827; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pe-item-meta  { display: block; font-size: .7rem; color: #9ca3af; margin-top: .1rem; }

/* Add item button */
.pe-add-btn {
    display: block; width: 100%;
    padding: .55rem; border-radius: .5rem;
    border: 1px dashed #d1d5db;
    background: transparent; cursor: pointer;
    font-size: .8125rem; color: #9ca3af;
    text-align: center;
    transition: border-color .12s, color .12s;
}
.pe-add-btn:hover { border-color: var(--primary-400); color: var(--primary-600); }

/* Field row */
.pe-field-row { display: grid; grid-template-columns: 1fr auto; gap: .75rem; align-items: end; }
.pe-field     { min-width: 0; }
.pe-field--sm { width: 7rem; }

/* Delete button */
.pe-delete-btn { font-size: .75rem; color: #ef4444; background: none; border: none; cursor: pointer; transition: color .12s; }
.pe-delete-btn:hover { color: #b91c1c; }

/* Link button */
.pe-link-btn { background: none; border: none; cursor: pointer; font-size: .8125rem; font-weight: 500; color: var(--primary-600); transition: color .12s; display: block; }
.pe-link-btn:hover { color: var(--primary-800); }

/* Empty states */
.pe-empty       { font-size: .8125rem; color: #9ca3af; text-align: center; padding: .75rem 0; }
.pe-empty-state { min-height: 12rem; display: flex; align-items: center; justify-content: center; }

/* Inputs */
.pe-input {
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    padding: 0.4rem 0.65rem;
    font-size: 0.875rem;
    background: white;
    color: #111827;
    outline: none;
    transition: border-color 0.15s, box-shadow 0.15s;
}
.pe-input:focus {
    border-color: var(--primary-500);
    box-shadow: 0 0 0 2px color-mix(in oklab, var(--primary-500) 20%, transparent);
}
.pe-input--sm {
    padding: 0.3rem 0.5rem;
    font-size: 0.8125rem;
    width: 100%;
}

/* Schedules */
.pe-days { display: flex; gap: .2rem; }

.pe-schedule-row {
    display: grid;
    grid-template-columns: 1fr 6rem 6rem 3.5rem 1.5rem;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 0;
    border-bottom: 1px solid #f3f4f6;
}
.pe-schedule-row:last-of-type { border-bottom: none; }

.pe-schedule-header {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #9ca3af;
    padding-bottom: 0.35rem;
}

.pe-day {
    display: inline-flex; align-items: center; justify-content: center;
    width: 1.8rem; height: 1.8rem;
    border-radius: 9999px;
    font-size: .65rem; font-weight: 700;
    border: none; cursor: pointer;
    transition: background-color 0.12s, color 0.12s;
    margin-right: .2rem;
}
.pe-day--on  { background-color: var(--primary-500); color: #fff; }
.pe-day--off { background-color: #f3f4f6; color: #9ca3af; }
.pe-day--off:hover { background-color: #e5e7eb; }

.pe-remove-schedule {
    display: flex; align-items: center; justify-content: center;
    background: none; border: none; cursor: pointer;
    color: #d1d5db;
    transition: color .12s;
}
.pe-remove-schedule:hover { color: #ef4444; }

/* ── Item activo del sidebar ── */
.fi-sidebar-item.fi-active > .fi-sidebar-item-btn {
    background-color: var(--primary-50) !important;
    box-shadow: inset 3px 0 0 var(--primary-600);
}

/* ── Logo del sidebar ── */
.fi-topbar-start .fi-logo {
    max-width: 158px;
    box-sizing: content-box;
}

/* ── Sidebar ── */
.fi-sidebar-group-label {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
}

.fi-sidebar {
    background-color: #ffffff !important;
    border-right: 1px solid #e5e7eb;
}

/* ── Topbar: buscador junto al logo ── */

/* Los hijos de fi-topbar-end pasan a ser flex-children directos del topbar,
   eliminando el margin-inline-start:auto que los empujaba a la derecha */
.fi-topbar-end {
    display: contents;
}

/* Espacio uniforme entre todos los items del topbar */
.fi-topbar {
    gap: 1rem;
}

/* Limitar ancho del buscador */
.fi-global-search-ctn {
    flex: 0 1 280px;
}

/* El primer elemento tras el buscador se empuja a la derecha
   (arrastra consigo al menú de usuario) */
.fi-global-search-ctn + * {
    margin-inline-start: auto;
}

/* ══════════════════════════════════════
   Playlist Preview
══════════════════════════════════════ */

.pp-wrap    { display: grid; grid-template-columns: 260px 1fr; gap: 1.5rem; align-items: start; }
.pp-sidebar { display: flex; flex-direction: column; gap: 1rem; }
.pp-main    { display: flex; flex-direction: column; align-items: center; gap: 1.25rem; }

.pp-card {
    background: #fff;
    border: 1px solid #f3f4f6;
    border-radius: .75rem;
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / .05);
    padding: 1.25rem;
}

.pp-section-title {
    font-size: .7rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .07em;
    color: #6b7280; margin: 0 0 .85rem;
}

.pp-label {
    display: block; font-size: .8rem;
    color: #6b7280; margin-bottom: .4rem;
}

.pp-badge {
    background: var(--primary-50); color: var(--primary-700);
    border-radius: 9999px; padding: .1rem .55rem;
    font-size: .68rem; font-weight: 700;
}

.pp-datetime {
    width: 100%; border: 1px solid #d1d5db; border-radius: .5rem;
    padding: .4rem .65rem; font-size: .875rem;
    background: #fff; color: #111827; outline: none;
    transition: border-color .15s, box-shadow .15s;
}
.pp-datetime:focus {
    border-color: var(--primary-500);
    box-shadow: 0 0 0 2px color-mix(in oklab, var(--primary-500) 20%, transparent);
}

/* Items list */
.pp-item-list  { display: flex; flex-direction: column; gap: .2rem; }

.pp-item {
    display: flex; align-items: center; gap: .6rem;
    width: 100%; text-align: left;
    padding: .45rem .5rem; border-radius: .5rem;
    border: 1px solid transparent; background: transparent;
    cursor: pointer; transition: background .12s, border-color .12s;
}
.pp-item:hover           { background: #f9fafb; }
.pp-item--active         { background: var(--primary-50) !important; border-color: var(--primary-200) !important; }

.pp-item-thumb {
    width: 2.5rem; height: 2rem; border-radius: .3rem;
    object-fit: cover; flex-shrink: 0;
}
.pp-item-thumb--video,
.pp-item-thumb--empty {
    width: 2.5rem; height: 2rem; border-radius: .3rem;
    background: #f3f4f6; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
}
.pp-item-thumb--video svg,
.pp-item-thumb--empty svg { width: .9rem; height: .9rem; color: #9ca3af; }

.pp-item-info  { flex: 1; min-width: 0; }
.pp-item-name  { display: block; font-size: .78rem; font-weight: 500; color: #111827; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pp-item-meta  { display: block; font-size: .68rem; color: #9ca3af; margin-top: .1rem; }

.pp-item-num {
    font-size: .68rem; font-weight: 700; color: #d1d5db;
    flex-shrink: 0; width: 1rem; text-align: right;
}
.pp-item-num--active { color: var(--primary-500); }

.pp-empty-label { font-size: .8rem; color: #9ca3af; text-align: center; padding: .5rem 0; }

/* Slideshow wrapper */
.pp-slideshow { display: flex; flex-direction: column; align-items: center; gap: 1.25rem; }

/* Device */
.pp-device         { position: relative; width: clamp(210px, 26vw, 280px); user-select: none; }
.pp-device-shadow  {
    position: absolute; inset: 0; border-radius: 28px;
    transform: translateY(12px); filter: blur(24px);
    background: #111; z-index: -1; opacity: .6;
}
.pp-device-body {
    border-radius: 28px; padding: 14px 14px 18px;
    display: flex; flex-direction: column; gap: 10px;
    background: linear-gradient(170deg, #2e2e2e 0%, #1a1a1a 60%, #111 100%);
    box-shadow:
        0 0 0 1px rgba(255,255,255,.06) inset,
        0 2px 0 rgba(255,255,255,.08) inset,
        0 8px 32px rgba(0,0,0,.7);
}

.pp-device-top {
    display: flex; align-items: center; justify-content: center;
    gap: 12px; padding: 0 8px;
}
.pp-device-sensor { width: 4px; height: 4px; border-radius: 50%; background: #4b5563; }
.pp-device-camera {
    width: 12px; height: 12px; border-radius: 50%;
    background: #111827; box-shadow: 0 0 0 1px #374151;
    display: flex; align-items: center; justify-content: center;
}
.pp-device-camera-inner {
    width: 6px; height: 6px; border-radius: 50%;
    background: #1f2937; box-shadow: 0 0 0 1px #4b5563;
}
.pp-device-mic          { display: flex; gap: 2px; }
.pp-device-mic div      { width: 2px; border-radius: 1px; background: #374151; }
.pp-device-mic div:nth-child(1) { height: 4px; }
.pp-device-mic div:nth-child(2) { height: 6px; }
.pp-device-mic div:nth-child(3) { height: 4px; }

/* Screen */
.pp-screen {
    position: relative; overflow: hidden;
    width: 100%; aspect-ratio: 9/16; border-radius: 6px;
    box-shadow: 0 0 0 2px #0a0a0a, 0 0 0 3px #2a2a2a, inset 0 0 20px rgba(0,0,0,.5);
}
.pp-screen-bg { position: absolute; inset: 0; background: #000; }

.pp-slides { position: absolute; inset: 0; display: grid; grid-template: 1fr/1fr; }
.pp-slide  { grid-area: 1/1; overflow: hidden; }
.pp-slide-media { width: 100%; height: 100%; object-fit: cover; display: block; }
.pp-slide-empty {
    width: 100%; height: 100%;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    color: rgba(255,255,255,.2); gap: .5rem;
}
.pp-slide-empty svg  { width: 2.5rem; height: 2.5rem; }
.pp-slide-empty span { font-size: .625rem; }

.pp-screen-glare {
    position: absolute; inset: 0; pointer-events: none; z-index: 20;
    background: linear-gradient(135deg, rgba(255,255,255,.04) 0%, transparent 50%);
}
.pp-screen-overlay {
    position: absolute; bottom: 0; left: 0; right: 0;
    pointer-events: none; z-index: 30;
    background: linear-gradient(to top, rgba(0,0,0,.75) 0%, transparent 100%);
    padding: 24px 10px 10px;
}
.pp-overlay-name {
    color: #fff; font-size: .625rem; font-weight: 500;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin: 0;
}
.pp-overlay-meta {
    display: flex; align-items: center; justify-content: space-between; margin-top: 2px;
}
.pp-overlay-meta span { color: rgba(255,255,255,.4); font-size: .5625rem; }
.pp-progress-track {
    margin-top: 6px; height: 2px; border-radius: 9999px;
    background: rgba(255,255,255,.15); overflow: hidden;
}
.pp-progress-bar { height: 100%; border-radius: 9999px; background: #fff; }

/* Device foot */
.pp-device-foot {
    display: flex; align-items: center; justify-content: space-between; padding: 0 12px;
}
.pp-device-grill     { display: flex; gap: 2px; }
.pp-device-grill div { width: 2px; height: 6px; border-radius: 1px; background: #374151; }
.pp-device-led {
    width: 8px; height: 8px; border-radius: 50%;
    background: #22c55e; box-shadow: 0 0 6px #22c55e88;
}

/* Controls */
.pp-controls { display: flex; align-items: center; gap: .5rem; }
.pp-btn {
    padding: .4rem .9rem; border-radius: .5rem;
    font-size: .8125rem; font-weight: 500;
    border: none; cursor: pointer;
    transition: background .12s, color .12s;
}
.pp-btn--gray           { background: #f3f4f6; color: #374151; }
.pp-btn--gray:hover     { background: #e5e7eb; }
.pp-btn--primary        { background: var(--primary-600); color: #fff; min-width: 5.5rem; text-align: center; }
.pp-btn--primary:hover  { background: var(--primary-700); }

/* Dots */
.pp-dots { display: flex; gap: .35rem; flex-wrap: wrap; justify-content: center; max-width: 16rem; }
.pp-dot  { height: .375rem; border-radius: 9999px; border: none; cursor: pointer; transition: all .3s; }
.pp-dot--inactive       { width: .375rem; background: #d1d5db; }
.pp-dot--inactive:hover { background: #9ca3af; }
.pp-dot--active         { width: 1.25rem; background: var(--primary-500); }

/* Empty state */
.pp-empty { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .75rem; padding: 4rem 0; color: #d1d5db; }
.pp-empty svg { width: 3.5rem; height: 3.5rem; }
.pp-empty p   { font-size: .875rem; color: #9ca3af; }
