/* NYXIVO — Diseño Moderno · Supplementary utilities (Tailwind v4-compatible)
 *
 * Estas clases NO estaban en el código React fuente, así que el compilador
 * Tailwind v4 las omitió. Las añadimos aquí siguiendo EXACTAMENTE los
 * patrones que Tailwind v4 emite para el resto de utilidades del bundle:
 *  - Scale usa la propiedad CSS `scale` (no `transform`) para no chocar
 *    con efectos de transform aplicados desde JS (p. ej. magnetic).
 *  - Filter compone vía custom properties (--tw-blur, etc.).
 *  - Group-hover usa el selector `:is(:where(.group):hover *)`.
 *  - Hover/active usan modifiers nativos.
 *  - Colores translúcidos usan color-mix (mismo flag dual con fallback).
 */

/* ---------- Display & whitespace ---------- */
.inline-block          { display: inline-block; }
.md\:inline-flex       { /* hidden by default, shown ≥ md */ }
@media (min-width: 768px) {
    .md\:inline-flex   { display: inline-flex; }
}
.whitespace-nowrap     { white-space: nowrap; }
.select-none           { -webkit-user-select: none; user-select: none; }

/* ---------- Position & sizing ---------- */
.inset-\[-4px\]        { inset: -4px; }
.bottom-\[5\.5rem\]    { bottom: 5.5rem; }
.h-\[calc\(100\%-0\.5rem\)\] { height: calc(100% - 0.5rem); }
.pb-28                 { padding-bottom: calc(var(--spacing) * 28); }

/* ---------- Colors ---------- */
.bg-\[\#070708\]       { background-color: #070708; }
.text-\[\#f0f0f0\]     { color: #f0f0f0; }
.bg-brand-500\/30      { background-color: #3b82f64d; }
@supports (color: color-mix(in oklab, red, blue)) {
    .bg-brand-500\/30  { background-color: color-mix(in oklab, var(--color-brand-500) 30%, transparent); }
}

/* ---------- Effects (Tailwind v4 filter composition) ---------- */
.opacity-60            { opacity: 0.6; }
.blur-2xl {
    --tw-blur: blur(40px);
    filter: var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,);
}

/* ---------- Shadows ---------- */
.shadow-\[0_0_0_3px_\#000\,0_0_18px_rgb\(var\(--brand-glow\)\/0\.6\)\] {
    --tw-shadow: 0 0 0 3px #000, 0 0 18px rgb(var(--brand-glow) / 0.6);
    box-shadow: var(--tw-inset-shadow,0 0 #0000), var(--tw-inset-ring-shadow,0 0 #0000), var(--tw-ring-offset-shadow,0 0 #0000), var(--tw-ring-shadow,0 0 #0000), var(--tw-shadow,0 0 #0000);
}

/* ---------- Vignette radial gradient (Background.tsx) ----------
 * Tailwind v4 no compiló esta arbitrary value desde el código React fuente.
 */
.bg-\[radial-gradient\(circle_at_70\%_50\%\,transparent_0\%\,rgba\(8\,13\,26\,0\.85\)_100\%\)\] {
    background-image: radial-gradient(circle at 70% 50%, transparent 0%, rgba(8, 13, 26, 0.85) 100%);
}

/* ---------- model-viewer baseline ----------
 * Antes de que el script de model-viewer se registre, el elemento es
 * tratado como inline (unknown element). Forzamos block + 100% para
 * evitar layout shift y que las dimensiones inline (width:100%; height:100%)
 * apliquen aunque el custom element aún no esté registrado.
 */
model-viewer {
    display: block;
    width: 100%;
    height: 100%;
}

/* ---------- Scale (CSS `scale` property, independente de `transform`) ---------- */
.scale-90 {
    --tw-scale-x: 90%; --tw-scale-y: 90%; --tw-scale-z: 90%;
    scale: var(--tw-scale-x) var(--tw-scale-y);
}
.hover\:scale-110:hover {
    --tw-scale-x: 110%; --tw-scale-y: 110%; --tw-scale-z: 110%;
    scale: var(--tw-scale-x) var(--tw-scale-y);
}
.group-hover\:scale-110:is(:where(.group):hover *) {
    --tw-scale-x: 110%; --tw-scale-y: 110%; --tw-scale-z: 110%;
    scale: var(--tw-scale-x) var(--tw-scale-y);
}
.group-hover\:scale-\[1\.06\]:is(:where(.group):hover *) {
    --tw-scale-x: 1.06; --tw-scale-y: 1.06; --tw-scale-z: 1.06;
    scale: var(--tw-scale-x) var(--tw-scale-y);
}
.active\:scale-95:active {
    --tw-scale-x: 95%; --tw-scale-y: 95%; --tw-scale-z: 95%;
    scale: var(--tw-scale-x) var(--tw-scale-y);
}

/* ---------- ProductShowcase halos & floor glow ----------
 * Estas clases viven en ProductShowcase.tsx pero Tailwind v4 no las
 * compiló (pertenecen a las arbitrary values + opacidades brand-x/N).
 * Sin ellas no se renderiza la iluminación local del producto, lo
 * que hace que solo se vean los blobs globales del Background y la
 * escena se sienta "iluminada de forma uniforme hasta el header".
 */
.w-\[110\%\]                  { width: 110%; }
.h-\[60\%\]                   { height: 60%; }
.w-\[55\%\]                   { width: 55%; }
.h-\[55\%\]                   { height: 55%; }
.bottom-\[6\%\]               { bottom: 6%; }
.-rotate-\[8deg\]             { rotate: -8deg; }

/* Blur arbitrary values — Tailwind v4 filter composition */
.blur-\[140px\] {
    --tw-blur: blur(140px);
    filter: var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,);
}
.blur-\[120px\] {
    --tw-blur: blur(120px);
    filter: var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,);
}
.blur-\[70px\] {
    --tw-blur: blur(70px);
    filter: var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,);
}

/* Brand color tints (dual fallback like the rest of the bundle) */
.bg-brand-500\/10             { background-color: #3b82f61a; }
.bg-brand-500\/20             { background-color: #3b82f633; }
.bg-brand-400\/25             { background-color: #60a5fa40; }
.bg-brand-400\/40             { background-color: #60a5fa66; }
.border-brand-500\/40         { border-color: #3b82f666; }
.border-brand-400\/50         { border-color: #60a5fa80; }
@supports (color: color-mix(in oklab, red, blue)) {
    .bg-brand-500\/10         { background-color: color-mix(in oklab, var(--color-brand-500) 10%, transparent); }
    .bg-brand-500\/20         { background-color: color-mix(in oklab, var(--color-brand-500) 20%, transparent); }
    .bg-brand-400\/25         { background-color: color-mix(in oklab, var(--color-brand-400) 25%, transparent); }
    .bg-brand-400\/40         { background-color: color-mix(in oklab, var(--color-brand-400) 40%, transparent); }
    .border-brand-500\/40     { border-color: color-mix(in oklab, var(--color-brand-500) 40%, transparent); }
    .border-brand-400\/50     { border-color: color-mix(in oklab, var(--color-brand-400) 50%, transparent); }
}

/* ---------- Background blend modes (Background.tsx + ProductShowcase halos) ----------
 * Tailwind v4 a veces no emite estas utilidades cuando el bundle se generó
 * antes de que existieran en el código fuente. Las añadimos manualmente para
 * que los blobs del Background sumen luz (en lugar de apilarse opacos),
 * los halos del producto se fundan con la escena y el grano use overlay.
 */
.mix-blend-plus-lighter   { mix-blend-mode: plus-lighter; }
.mix-blend-screen         { mix-blend-mode: screen; }
.mix-blend-overlay        { mix-blend-mode: overlay; }

/* ---------- Solid brand fills (usados junto a opacity-N separada) ----------
 * ProductShowcase.tsx línea 141: bg-brand-500 + opacity-15 + mix-blend-screen.
 * Background.tsx fallback reduced-motion: bg-brand-800.
 */
.bg-brand-500             { background-color: var(--color-brand-500, #3b82f6); }
.bg-brand-800             { background-color: var(--color-brand-800, #1e40af); }

/* ---------- Opacities ----------
 * .opacity-15 (segundo halo del producto), .opacity-[0.10] (grano del fondo),
 * .opacity-40 (fallback reduced-motion del blob principal).
 */
.opacity-15               { opacity: .15; }
.opacity-\[0\.10\]        { opacity: .10; }
.opacity-40               { opacity: .40; }

/* ---------- Blurs del Background (los blobs animados y el fallback) ----------
 * Tailwind v4 filter composition idéntica al resto del bundle.
 */
.blur-\[180px\] {
    --tw-blur: blur(180px);
    filter: var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,);
}
.blur-\[200px\] {
    --tw-blur: blur(200px);
    filter: var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,);
}

/* ---------- bg-ink-900 (defensa por si el bundle no lo emitió en cascada) ----------
 * Si Tailwind no compiló esta clase con su valor exacto, los contenedores
 * (body, section, contenedor min-h-svh) quedarían transparentes y el fondo
 * del navegador rompería el degradado.
 */
.bg-ink-900               { background-color: var(--color-ink-900, #080d1a); }

/* ---------- Tooltip data-mod-tooltip (CSS-only) ----------
 * Hover sobre cualquier elemento con [data-mod-tooltip="texto"] muestra
 * un pequeño chip flotando arriba con el texto. Usado en pagination dots.
 */
[data-mod-tooltip] {
    position: relative;
}
[data-mod-tooltip]::before {
    content: attr(data-mod-tooltip);
    position: absolute;
    left: 50%;
    bottom: calc(100% + 10px);
    transform: translateX(-50%) translateY(4px);
    padding: 5px 10px;
    background: rgba(8, 13, 26, 0.95);
    border: 1px solid rgba(59, 130, 246, 0.25);
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #fff;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    box-shadow: 0 8px 24px -8px rgba(0, 0, 0, 0.6),
                0 0 16px -4px rgb(var(--brand-glow) / 0.35);
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 50;
}
[data-mod-tooltip]:hover::before,
[data-mod-tooltip]:focus-visible::before {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* ---------- Navbar fijo con glassmorphism ----------
 * El navbar es siempre fixed: se ancla al top en toda la página.
 * Cuando el usuario scrollea más de 80px, JS añade .is-stuck que
 * incrementa la opacidad, comprime el padding y añade borde inferior.
 * Apple/Tesla pattern.
 */
.mod-navbar {
    background: rgba(8, 13, 26, 0.60);
    -webkit-backdrop-filter: blur(16px) saturate(120%);
            backdrop-filter: blur(16px) saturate(120%);
    transition: padding 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                background-color 0.4s ease,
                backdrop-filter 0.4s ease,
                border-color 0.4s ease,
                box-shadow 0.4s ease;
}
.mod-navbar.is-stuck {
    /* position: fixed ya viene del HTML class "fixed" — solo cambios visuales */
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    background: rgba(8, 13, 26, 0.72);
    -webkit-backdrop-filter: blur(20px) saturate(140%);
            backdrop-filter: blur(20px) saturate(140%);
    border-bottom: 1px solid rgba(59, 130, 246, 0.18);
    box-shadow: 0 8px 32px -8px rgba(0, 0, 0, 0.5);
}
@media (min-width: 640px) {
    .mod-navbar.is-stuck { padding-top: 1rem; padding-bottom: 1rem; }
}

/* ---------- Brandmark sizing (logo del navbar) ----------
 * 40px en mobile, 56px desde sm. Tamaño "premium sweet spot":
 * el isotipo respira y el shimmer metálico se aprecia, sin
 * dominar al wordmark "NYXIVO" ni al nav pill central.
 * Reemplaza el doble bloque <span class="block sm:hidden"> /
 * <span class="hidden sm:block"> que duplicaba el markup.
 */
.mod-brandmark            { width: 40px; height: 40px; }
@media (min-width: 640px) {
    .mod-brandmark        { width: 56px; height: 56px; }
}

/* ---------- Hero ghost button ("Ver detalles") ----------
 * Glassmorphism secundario con ícono y flecha animada en hover.
 * CSS propio porque las clases Tailwind arbitrarias (bg-white/[0.06],
 * sm:py-[15px], group-hover:bg-white/15, etc.) no fueron compiladas.
 */
.mod-hero-btn-ghost {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 22px;
    min-height: 52px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.01em;
    text-decoration: none;
    -webkit-backdrop-filter: blur(20px);
            backdrop-filter: blur(20px);
    transition: background 0.3s ease,
                border-color 0.3s ease,
                box-shadow 0.3s ease;
    cursor: pointer;
    white-space: nowrap;
    outline: none;
}
@media (min-width: 640px) {
    .mod-hero-btn-ghost {
        padding: 15px 28px;
        border-radius: 20px;
        font-size: 15px;
    }
}
.mod-hero-btn-ghost:hover {
    background: rgba(59, 130, 246, 0.10);
    border-color: rgba(59, 130, 246, 0.45);
    box-shadow: 0 0 24px rgba(59, 130, 246, 0.18);
}
.mod-hero-btn-ghost:active {
    background: rgba(59, 130, 246, 0.14);
}

/* Ícono contenedor */
.mod-hero-btn-ghost__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.10);
    flex-shrink: 0;
    transition: background 0.3s ease, border-color 0.3s ease;
}
.mod-hero-btn-ghost:hover .mod-hero-btn-ghost__icon {
    background: rgba(59, 130, 246, 0.20);
    border-color: rgba(59, 130, 246, 0.40);
}

/* Flecha animada en hover — solo desktop */
.mod-hero-btn-ghost__arrow {
    display: none;
    opacity: 0;
    transform: translateX(-5px);
    transition: opacity 0.25s ease, transform 0.28s ease;
    flex-shrink: 0;
}
@media (min-width: 640px) {
    .mod-hero-btn-ghost__arrow { display: block; }
}
.mod-hero-btn-ghost:hover .mod-hero-btn-ghost__arrow {
    opacity: 1;
    transform: translateX(0);
}

/* ================================================================
   HOTSPOT CARDS — Bootstrap button reset override
   ================================================================ */
.mod-hotspot-card {
    border-radius: 1rem !important;
}

/* ================================================================
   NAVBAR RESPONSIVE FIXES
   ================================================================ */

/* Logo: never shrink to 0 at any viewport */
.mod-navbar > a:first-child {
    flex-shrink: 0 !important;
}

/* Nav pill compact at lg–xl (1024px–1399px) to prevent logo overflow */
@media (min-width: 1024px) and (max-width: 1399px) {
    #modNavPill {
        gap: 0 !important;
    }
    #modNavPill button {
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
        gap: 3px !important;
        font-size: 13px !important;
    }
    /* Hide category icons to save ~25px per item */
    #modNavPill button > span:first-child {
        display: none !important;
    }
    /* Hide chevrons too */
    #modNavPill .mod-chevron {
        display: none !important;
    }
}

/* xl:hidden utility (not compiled by Tailwind in this build) */
@media (min-width: 80rem) {
    .xl\:hidden { display: none !important; }
}

/* ================================================================
   MOBILE UX IMPROVEMENTS — Audit fixes
   ================================================================ */

/* 1. DRAWER — border-radius izquierdo premium */
.mod-drawer-panel {
    border-radius: 1.25rem 0 0 1.25rem !important;
    background: rgba(8, 10, 20, 0.98) !important;
    border-left: 1px solid rgba(59, 130, 246, 0.12) !important;
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.7) !important;
}

/* 2. FAVORITE BUTTON — siempre visible en mobile + tamaño táctil */
@media (max-width: 1023px) {
    .tech-theme .product-favorite {
        opacity: 1 !important;
        transform: scale(1) !important;
        width: 36px !important;
        height: 36px !important;
        min-width: 36px !important;
        min-height: 36px !important;
    }
}

/* 3. BRAND font-size mínimo legible */
.tech-theme .product-brand,
body.tech-theme .product-brand,
body .tech-theme .product-brand {
    font-size: 0.75rem !important;
}
@media (max-width: 480px) {
    .tech-theme .product-brand,
    body.tech-theme .product-brand {
        font-size: 0.75rem !important;
    }
}

/* 4. PRESET PILLS — touch target mínimo */
body.clp-theme .clp-preset,
.clp-preset {
    min-height: 40px !important;
    display: inline-flex !important;
    align-items: center !important;
}

/* 5. SUBCAT PILLS — touch target mínimo */
body.clp-theme .clp-subcat-pill,
.clp-subcat-pill {
    min-height: 40px !important;
    display: inline-flex !important;
    align-items: center !important;
}

/* 6. BTN BACK — touch target mínimo */
body.clp-theme .clp-btn-back,
.clp-btn-back {
    min-height: 44px !important;
    display: inline-flex !important;
    align-items: center !important;
}

/* 7. BTN-ADD-CART — touch target mínimo */
.tech-theme .btn-add-cart {
    min-height: 44px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

@media (max-width: 480px) {
    .tech-theme .btn-add-cart {
        min-height: 44px !important;
        padding: 0 !important;
    }
}

/* 8. LINKS GENERALES — touch target mínimo para breadcrumbs y nav links */
.clp-breadcrumb a,
.clp-back-wrap a,
footer a {
    min-height: 44px !important;
    display: inline-flex !important;
    align-items: center !important;
}

/* ================================================================
   MODEL-VIEWER LOADING SPINNER
   ================================================================ */
.mod-mv-spinner {
    position: absolute;
    inset: 0;
    z-index: 25;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    pointer-events: none;
    transition: opacity 0.35s ease;
}
.mod-mv-spinner__ring {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(59, 130, 246, 0.15);
    border-top-color: rgba(59, 130, 246, 0.7);
    animation: mvSpinnerRotate 0.8s linear infinite;
}
.mod-mv-spinner__label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(148, 163, 184, 0.5);
}
@keyframes mvSpinnerRotate {
    to { transform: rotate(360deg); }
}

/* ================================================================
   SHEET MODAL — clases extraídas de inline styles
   ================================================================ */
.mod-sheet-handle {
    width: 2.5rem;
    height: 4px;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.15);
    margin: 0 auto;
}
.mod-sheet-header {
    padding: 0.75rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.mod-sheet-header-inner {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.mod-sheet-header-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 9999px;
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    box-shadow: 0 0 16px rgba(59, 130, 246, 0.4);
    flex-shrink: 0;
}
.mod-sheet-header-eyebrow {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(148, 163, 184, 0.7);
    margin: 0;
    font-weight: 700;
    display: block;
}
.mod-sheet-header-title {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #fff;
    font-weight: 900;
    margin: 0;
    display: block;
}
.mod-sheet-header-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(148, 163, 184, 0.9);
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
}
.mod-sheet-header-close:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}
.mod-sheet-cards {
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-height: 55vh;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
}
.mod-sheet-card {
    text-align: left;
    padding: 0.875rem 1rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    width: 100%;
    transition: background 0.2s, border-color 0.2s;
}
.mod-sheet-card__num {
    flex-shrink: 0;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 9999px;
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 900;
    color: #60a5fa;
    margin-top: 0.1rem;
}
.mod-sheet-card__body {
    flex: 1;
    min-width: 0;
}
.mod-sheet-card__label {
    font-size: 0.6rem;
    font-weight: 900;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(148, 163, 184, 0.7);
    margin: 0 0 0.3rem 0;
    display: block;
    /* Truncar labels muy largos */
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.mod-sheet-card__detail {
    font-size: 0.8125rem;
    line-height: 1.5;
    color: rgba(226, 232, 240, 0.9);
    font-weight: 500;
    margin: 0;
}
.mod-sheet-card__dot {
    flex-shrink: 0;
    width: 0.4rem;
    height: 0.4rem;
    border-radius: 9999px;
    background: #475569;
    margin-top: 0.4rem;
    transition: background 0.2s;
}

/* ================================================================
   CLP EMPTY STATE — diseño mejorado
   ================================================================ */
.clp-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 2rem;
    gap: 1rem;
    animation: clpEmptyIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes clpEmptyIn {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}
.clp-empty-icon {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.07);
    border: 1px solid rgba(59, 130, 246, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: rgba(59, 130, 246, 0.5);
    margin-bottom: 0.5rem;
}
.clp-empty h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
    line-height: 1.35;
}
.clp-empty p {
    font-size: 0.875rem;
    color: #64748b;
    margin: 0;
    max-width: 28rem;
}
/* Sheet panel base layout (position/colors stay in moderno-motion.css) */
.mod-sheet-panel {
    bottom: calc(env(safe-area-inset-bottom, 0px) + 1rem);
    left: 1rem;
    right: 1rem;
    border-radius: 1.5rem;
    background: rgba(10, 14, 28, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 -20px 80px -10px rgba(0, 0, 0, 0.9), 0 0 0 1px rgba(59, 130, 246, 0.08);
}
.mod-sheet-footer-hint {
    padding: 0.5rem 1.25rem 0.75rem;
    text-align: center;
}
.mod-sheet-footer-hint p {
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(148, 163, 184, 0.35);
    margin: 0;
}

/* FAB disabled state */
.clp-mobile-fab:disabled {
    opacity: 0.6 !important;
    pointer-events: none;
    cursor: not-allowed;
}
