/* ============================================================
   NUVVIA 2026 — Cart, Modal, Background Animations
   ============================================================ */

/* ── VIDEO HERO DE YOUTUBE ──────────────────────────────────── */
.nv-hero__scene--video {
    perspective: 1200px;
}

.nv-hero__video-wrap {
    position: relative;
    width: 100%;
    max-width: 520px;
    aspect-ratio: 16 / 10;
    border-radius: 22px;
    overflow: hidden;
    transform: perspective(1200px) rotateY(-6deg) rotateX(3deg);
    transition: transform 600ms cubic-bezier(0.34, 1.1, 0.64, 1),
        box-shadow 600ms ease;
    box-shadow:
        0 40px 100px rgba(0, 0, 0, 0.65),
        0 0 80px rgba(88, 86, 214, 0.35),
        inset 0 0 0 1px rgba(88, 86, 214, 0.18);
    will-change: transform;
}

@media (hover: hover) and (pointer: fine) {
    .nv-hero__scene--video:hover .nv-hero__video-wrap {
        transform: perspective(1200px) rotateY(-2deg) rotateX(1deg) translateY(-10px) scale(1.03);
        box-shadow:
            0 60px 120px rgba(0, 0, 0, 0.75),
            0 0 120px rgba(88, 86, 214, 0.50),
            inset 0 0 0 1px rgba(88, 86, 214, 0.30);
    }
}

/* El iframe ocupa todo el contenedor y se escala un poco para esconder barras de YT */
.nv-hero__video {
    position: absolute;
    /* Escalar para cubrir las barras negras y UI de YouTube */
    top: -10%;
    left: -5%;
    width: 110%;
    height: 120%;
    border: none;
    pointer-events: none;
    /* evita que el usuario haga clic en el iframe */
}

/* Overlay: oculta los controles visibles de YouTube que queden y aplica vignette Nuvvia */
.nv-hero__video-overlay {
    position: absolute;
    inset: 0;
    background:
        /* Vignette en los bordes */
        radial-gradient(ellipse at center, transparent 55%, rgba(8, 8, 18, 0.40) 100%),
        /* Borde iris brillante */
        linear-gradient(135deg, rgba(88, 86, 214, 0.06) 0%, transparent 60%);
    z-index: 1;
    pointer-events: none;
    border-radius: 22px;
}

/* Fallback: cuando hay video activo, ocultar imagen estática */
.nv-hero__video-wrap~.nv-hero__img--fallback {
    display: none;
}

/* Imagen fallback — se mantiene igual a la original si el video no carga */
.nv-hero__img--fallback {
    width: 100%;
    max-width: 520px;
    border-radius: 22px;
    transform: perspective(1200px) rotateY(-6deg) rotateX(3deg);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6), 0 0 80px rgba(88, 86, 214, 0.30);
}

/* Mobile: sin perspectiva agresiva */
@media (max-width: 899px) {
    .nv-hero__video-wrap {
        max-width: 360px;
        transform: perspective(800px) rotateY(-3deg) rotateX(1.5deg);
    }
}


/* ── LOGO DE FONDO ANIMADO ─────────────────────────────────── */
.nv-bg-deco {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.nv-bg-logo {
    position: absolute;
    opacity: 0.028;
    animation: nv-bg-logo-pulse 8s ease-in-out infinite;
    will-change: transform, opacity;
}

.nv-bg-logo--1 {
    width: 600px;
    height: 600px;
    top: -10%;
    left: -8%;
    animation-duration: 12s;
    animation-delay: 0s;
}

.nv-bg-logo--2 {
    width: 400px;
    height: 400px;
    top: 30%;
    right: -5%;
    animation-duration: 10s;
    animation-delay: -3s;
}

.nv-bg-logo--3 {
    width: 280px;
    height: 280px;
    bottom: 10%;
    left: 40%;
    animation-duration: 14s;
    animation-delay: -6s;
    opacity: 0.018;
}

@keyframes nv-bg-logo-pulse {

    0%,
    100% {
        transform: rotate(0deg) scale(1);
        opacity: 0.028;
    }

    33% {
        transform: rotate(5deg) scale(1.06);
        opacity: 0.040;
    }

    66% {
        transform: rotate(-3deg) scale(0.95);
        opacity: 0.020;
    }
}

/* ── FLECHAS FLOTANTES CONSTANTES ───────────────────────────── */
.nv-arrows-layer {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.nv-arrow-float {
    position: absolute;
    color: rgba(88, 86, 214, 0.18);
    font-size: 28px;
    animation: nv-arrow-rise 7s ease-in-out infinite;
    will-change: transform, opacity;
    user-select: none;
}

/* Posiciones distribuidas */
.nv-arrow-float:nth-child(1) {
    left: 5%;
    bottom: -60px;
    animation-delay: 0s;
    animation-duration: 7s;
}

.nv-arrow-float:nth-child(2) {
    left: 15%;
    bottom: -60px;
    animation-delay: -1.2s;
    animation-duration: 8s;
    font-size: 20px;
    color: rgba(61, 219, 160, 0.12);
}

.nv-arrow-float:nth-child(3) {
    left: 28%;
    bottom: -60px;
    animation-delay: -2.5s;
    animation-duration: 6.5s;
}

.nv-arrow-float:nth-child(4) {
    left: 42%;
    bottom: -60px;
    animation-delay: -0.8s;
    animation-duration: 9s;
    font-size: 36px;
    color: rgba(88, 86, 214, 0.12);
}

.nv-arrow-float:nth-child(5) {
    left: 55%;
    bottom: -60px;
    animation-delay: -3.2s;
    animation-duration: 7.5s;
}

.nv-arrow-float:nth-child(6) {
    left: 68%;
    bottom: -60px;
    animation-delay: -1.8s;
    animation-duration: 8.5s;
    font-size: 22px;
    color: rgba(61, 219, 160, 0.10);
}

.nv-arrow-float:nth-child(7) {
    left: 80%;
    bottom: -60px;
    animation-delay: -4.0s;
    animation-duration: 6s;
}

.nv-arrow-float:nth-child(8) {
    left: 91%;
    bottom: -60px;
    animation-delay: -2.0s;
    animation-duration: 9.5s;
    font-size: 18px;
}

@keyframes nv-arrow-rise {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    80% {
        opacity: 0.7;
    }

    100% {
        transform: translateY(-110vh) rotate(8deg);
        opacity: 0;
    }
}

/* ── PARTÍCULAS ADICIONALES (puntos luminosos) ───────────────── */
.nv-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--iris);
    border-radius: 50%;
    opacity: 0;
    animation: nv-particle-float 6s ease-in-out infinite;
    pointer-events: none;
}

.nv-particle:nth-child(1) {
    left: 10%;
    top: 20%;
    animation-delay: 0s;
}

.nv-particle:nth-child(2) {
    left: 35%;
    top: 60%;
    animation-delay: -1s;
    background: var(--mint);
}

.nv-particle:nth-child(3) {
    left: 60%;
    top: 15%;
    animation-delay: -2s;
}

.nv-particle:nth-child(4) {
    left: 80%;
    top: 70%;
    animation-delay: -3s;
    background: var(--mint);
}

.nv-particle:nth-child(5) {
    left: 50%;
    top: 40%;
    animation-delay: -4s;
}

.nv-particle:nth-child(6) {
    left: 22%;
    top: 80%;
    animation-delay: -2.5s;
    background: var(--mint);
}

@keyframes nv-particle-float {
    0% {
        opacity: 0;
        transform: scale(0) translateY(0);
    }

    20%,
    80% {
        opacity: 0.6;
    }

    100% {
        opacity: 0;
        transform: scale(2) translateY(-30px);
    }
}

/* ── CARRITO LATERAL ──────────────────────────────────────────── */
.nv-cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 300ms ease;
}

.nv-cart-overlay.is-open {
    opacity: 1;
    pointer-events: all;
}

.nv-cart-panel {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(420px, 100vw);
    background: #0E0E1A;
    border-left: 1px solid rgba(88, 86, 214, 0.25);
    z-index: 2001;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 400ms cubic-bezier(0.34, 1.1, 0.64, 1);
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.6);
}

.nv-cart-panel.is-open {
    transform: translateX(0);
}

.nv-cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    border-bottom: 1px solid rgba(88, 86, 214, 0.15);
    flex-shrink: 0;
}

.nv-cart-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #f0eeff;
}

.nv-cart-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #c4bcff;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 200ms;
}

.nv-cart-close:hover {
    background: rgba(88, 86, 214, 0.2);
    color: white;
}

.nv-cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 16px 24px;
}

.nv-cart-items::-webkit-scrollbar {
    width: 4px;
}

.nv-cart-items::-webkit-scrollbar-track {
    background: transparent;
}

.nv-cart-items::-webkit-scrollbar-thumb {
    background: rgba(88, 86, 214, 0.4);
    border-radius: 2px;
}

.nv-cart-empty {
    text-align: center;
    padding: 60px 20px;
    color: rgba(196, 188, 255, 0.45);
    font-size: 0.875rem;
}

.nv-cart-empty-icon {
    font-size: 3rem;
    margin-bottom: 12px;
}

.nv-cart-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nv-cart-item__img {
    width: 72px;
    height: 72px;
    border-radius: 12px;
    object-fit: cover;
    background: #1E1E30;
    flex-shrink: 0;
    border: 1px solid rgba(88, 86, 214, 0.15);
}

.nv-cart-item__info {
    flex: 1;
    min-width: 0;
}

.nv-cart-item__name {
    font-size: 0.875rem;
    font-weight: 600;
    color: #f0eeff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 4px;
}

.nv-cart-item__variant {
    font-size: 0.75rem;
    color: rgba(196, 188, 255, 0.55);
    margin-bottom: 8px;
}

.nv-cart-item__price {
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
}

.nv-cart-item__controls {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}

.nv-qty-btn {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(88, 86, 214, 0.15);
    border: 1px solid rgba(88, 86, 214, 0.3);
    color: #c4bcff;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 150ms;
}

.nv-qty-btn:hover {
    background: rgba(88, 86, 214, 0.35);
    color: white;
}

.nv-qty-val {
    font-size: 0.875rem;
    font-weight: 600;
    color: #f0eeff;
    min-width: 20px;
    text-align: center;
}

.nv-cart-remove {
    margin-left: auto;
    color: rgba(255, 80, 80, 0.6);
    font-size: 18px;
    cursor: pointer;
    transition: color 150ms;
    padding: 4px;
}

.nv-cart-remove:hover {
    color: rgba(255, 80, 80, 1);
}

.nv-cart-footer {
    padding: 20px 24px;
    border-top: 1px solid rgba(88, 86, 214, 0.15);
    background: rgba(14, 14, 26, 0.98);
    flex-shrink: 0;
}

.nv-cart-subtotal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.nv-cart-subtotal-label {
    font-size: 0.875rem;
    color: rgba(196, 188, 255, 0.7);
}

.nv-cart-subtotal-val {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
}

.nv-cart-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.nv-cart-mp-note {
    font-size: 0.72rem;
    color: rgba(196, 188, 255, 0.40);
    text-align: center;
    margin-top: 8px;
    line-height: 1.5;
}

/* Botón del carrito en la navbar */
.nv-cart-trigger {
    position: relative;
    display: flex;
    align-items: center;
    color: rgba(196, 188, 255, 0.8);
    padding: 6px;
    cursor: pointer;
    transition: color 200ms;
}

.nv-cart-trigger:hover {
    color: white;
}

.nv-cart-bubble {
    position: absolute;
    top: -2px;
    right: -4px;
    background: #5856D6;
    color: white;
    font-size: 10px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    animation: nv-bubble-pop 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.nv-cart-bubble.has-items {
    display: flex;
}

@keyframes nv-bubble-pop {
    from {
        transform: scale(0);
    }

    to {
        transform: scale(1);
    }
}

/* ── MODAL DE DETALLE DE PRODUCTO ─────────────────────────── */
.nv-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    z-index: 3000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 300ms ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.nv-modal-overlay.is-open {
    opacity: 1;
    pointer-events: all;
}

.nv-modal {
    background: #13131F;
    border: 1px solid rgba(88, 86, 214, 0.25);
    border-radius: 24px;
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.92) translateY(20px);
    transition: transform 400ms cubic-bezier(0.34, 1.1, 0.64, 1);
    box-shadow: 0 40px 120px rgba(0, 0, 0, 0.8), 0 0 80px rgba(88, 86, 214, 0.15);
    position: relative;
}

.nv-modal::-webkit-scrollbar {
    width: 4px;
}

.nv-modal::-webkit-scrollbar-thumb {
    background: rgba(88, 86, 214, 0.3);
    border-radius: 2px;
}

.nv-modal-overlay.is-open .nv-modal {
    transform: scale(1) translateY(0);
}

.nv-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(196, 188, 255, 0.7);
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 200ms;
    z-index: 1;
}

.nv-modal__close:hover {
    background: rgba(88, 86, 214, 0.25);
    color: white;
}

.nv-modal__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

@media (max-width: 640px) {
    .nv-modal__inner {
        grid-template-columns: 1fr;
    }
}

.nv-modal__img-panel {
    background: linear-gradient(145deg, #1A1A2E, #0E0E1A);
    border-radius: 24px 0 0 24px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    min-height: 380px;
}

@media (max-width: 640px) {
    .nv-modal__img-panel {
        border-radius: 24px 24px 0 0;
        min-height: 260px;
    }
}

.nv-modal__img-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 60%, rgba(88, 86, 214, 0.25), transparent 70%);
}

.nv-modal__img {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 280px;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
    transition: transform 600ms cubic-bezier(0.34, 1.1, 0.64, 1);
}

.nv-modal__img:hover {
    transform: scale(1.04) rotate(-2deg);
}

.nv-modal__badge-series {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(88, 86, 214, 0.80);
    backdrop-filter: blur(8px);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 9999px;
    letter-spacing: 0.06em;
}

.nv-modal__info {
    padding: 36px 32px;
}

@media (max-width: 640px) {
    .nv-modal__info {
        padding: 24px 20px;
    }
}

.nv-modal__series {
    font-size: 0.75rem;
    font-weight: 700;
    color: #3DDBA0;
    text-transform: uppercase;
    letter-spacing: 0.10em;
    margin-bottom: 6px;
}

.nv-modal__name {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    color: #f0eeff;
    line-height: 1.1;
    margin-bottom: 8px;
}

.nv-modal__price-row {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 20px;
}

.nv-modal__price-old {
    font-size: 0.875rem;
    color: rgba(196, 188, 255, 0.4);
    text-decoration: line-through;
}

.nv-modal__price {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
}

.nv-modal__cuotas {
    font-size: 0.78rem;
    color: #3DDBA0;
    margin-top: -16px;
    margin-bottom: 20px;
}

/* Specs */
.nv-modal__specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 24px;
}

.nv-spec-pill {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 10px;
    padding: 10px 12px;
}

.nv-spec-pill__label {
    font-size: 0.65rem;
    color: rgba(196, 188, 255, 0.45);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 3px;
}

.nv-spec-pill__val {
    font-size: 0.825rem;
    font-weight: 600;
    color: #e5dfff;
}

/* Selectores */
.nv-modal__selector-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(196, 188, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}

.nv-selector-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.nv-pill-btn {
    padding: 6px 14px;
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(88, 86, 214, 0.3);
    color: rgba(196, 188, 255, 0.65);
    cursor: pointer;
    transition: all 200ms;
    background: transparent;
    font-family: inherit;
}

.nv-pill-btn.is-selected,
.nv-pill-btn:hover {
    border-color: #5856D6;
    color: white;
    background: rgba(88, 86, 214, 0.20);
}

/* Features */
.nv-modal__features {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 24px;
}

.nv-feature-tag {
    font-size: 0.72rem;
    font-weight: 600;
    padding: 4px 10px;
    background: rgba(61, 219, 160, 0.08);
    border: 1px solid rgba(61, 219, 160, 0.22);
    color: #3DDBA0;
    border-radius: 9999px;
}

.nv-modal__actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* ═══════════════════════════════════════════════════════════════
   CARD SLIDER — Slideshow de imágenes en producto
   ═══════════════════════════════════════════════════════════════ */
.nv-card-slider {
    position: relative;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
    background: #0E0E1A;
    aspect-ratio: 4/3;
}

.nv-card-slider__track {
    display: flex;
    transition: transform 420ms cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.nv-card-slider__slide {
    flex: 0 0 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.nv-card-slider__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 600ms ease;
}

.nv-prod-card:hover .nv-card-slider__slide img {
    transform: scale(1.04);
}

/* Controles — flechas laterales */
.nv-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(14, 14, 26, 0.75);
    border: 1px solid rgba(88, 86, 214, 0.35);
    color: #c4bcff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: opacity 200ms, background 200ms;
    backdrop-filter: blur(6px);
}

.nv-card-slider:hover .nv-slider-btn {
    opacity: 1;
}

.nv-slider-btn:hover {
    background: rgba(88, 86, 214, 0.55);
    color: white;
}

.nv-slider-btn--prev {
    left: 8px;
}

.nv-slider-btn--next {
    right: 8px;
}

/* Dots indicadores */
.nv-slider-dots {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 5px;
    z-index: 10;
}

.nv-slider-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: background 200ms, transform 200ms;
    border: none;
}

.nv-slider-dot.is-active {
    background: #5856D6;
    transform: scale(1.3);
}

/* Badge sobre el slider */
.nv-card-slider .nv-prod-card__badge {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
}

/* ═══════════════════════════════════════════════════════════════
   BOTÓN "EQUIPOS USADOS" — WhatsApp con estética diferenciada
   ═══════════════════════════════════════════════════════════════ */
.nv-btn--used {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 10px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    cursor: pointer;
    text-decoration: none;
    transition: all 220ms ease;
    width: 100%;
    margin-top: 6px;
    background: rgba(61, 219, 160, 0.07);
    border: 1px solid rgba(61, 219, 160, 0.25);
    color: #3DDBA0;
    position: relative;
    overflow: hidden;
}

.nv-btn--used::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(61, 219, 160, 0.08), transparent);
    transform: translateX(-100%);
    transition: transform 500ms ease;
}

.nv-btn--used:hover {
    background: rgba(61, 219, 160, 0.14);
    border-color: rgba(61, 219, 160, 0.50);
    color: #5FFFC3;
    transform: translateY(-1px);
}

.nv-btn--used:hover::before {
    transform: translateX(100%);
}

.nv-btn--used svg {
    flex-shrink: 0;
    opacity: 0.85;
}

.nv-used-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.63rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(61, 219, 160, 0.55);
    background: rgba(61, 219, 160, 0.07);
    border: 1px solid rgba(61, 219, 160, 0.15);
    border-radius: 9999px;
    padding: 2px 8px;
    align-self: flex-start;
    margin-top: 4px;
}