/* ============================================================
   Catalog detail modal — Nord-style, secciones flotantes
   ============================================================ */

/* ── Overlay ── */
.cdm {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: clamp(10px, 2vw, 24px);
    overflow-y: auto;
}
.cdm[hidden] {
    display: none;
}
.cdm__backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(22px) saturate(130%);
    -webkit-backdrop-filter: blur(22px) saturate(130%);
}

/* ── Dialog — casi transparente, solo layout ── */
.cdm__dialog {
    position: relative;
    z-index: 1;
    width: min(1320px, 97vw);
    margin: auto;
    display: flex;
    flex-direction: column;
    border-radius: 0;
    background: transparent;
}

/* ── Botón cerrar ── */
.cdm__close {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 10;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(14, 14, 14, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    color: #f5f5f7;
    cursor: pointer;
    font-size: 20px;
    line-height: 1;
    transition: background 0.2s, transform 0.2s;
}
.cdm__close:hover {
    background: rgba(40, 40, 40, 0.95);
    transform: scale(1.06);
}

/* ── Topbar — título flotante ── */
.cdm__topbar {
    flex-shrink: 0;
    padding: 8px 50px 20px 4px;
}
.cdm-topbar__inner {
    display: flex;
    align-items: center;
    gap: 14px;
}
.cdm-topbar__thumb {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(14, 14, 14, 0.8);
}
.cdm-topbar__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cdm-topbar__meta {
    min-width: 0;
}
.cdm-topbar__row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 5px;
}
.cdm-topbar__badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    font-family: var(--font-mono, monospace);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.cdm--cursos .cdm-topbar__badge {
    color: #34d399;
    background: rgba(52, 211, 153, 0.14);
    border: 1px solid rgba(52, 211, 153, 0.3);
}
.cdm--tienda .cdm-topbar__badge {
    color: #fbbf24;
    background: rgba(251, 191, 36, 0.14);
    border: 1px solid rgba(251, 191, 36, 0.3);
}
.cdm-topbar__title {
    margin: 0;
    font-family: "Instrument Serif", Georgia, serif;
    font-size: clamp(1.5rem, 3.2vw, 2.2rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: #f5f5f7;
}

/* ── Grid principal: ~62% | ~38% ── */
.cdm__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
    gap: 20px;
    align-items: start;       /* columnas arrancan desde arriba, no se estiran */
}
@media (max-width: 960px) {
    .cdm__layout {
        grid-template-columns: 1fr;
    }

    .cdm-media--video-banner {
        grid-template-columns: 1fr;
    }

    .cdm-media__banner-slot {
        grid-column: 1;
    }
}

/* ── Columna izquierda ── */
.cdm__main {
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 0;
    overflow: hidden;         /* corta el overflow horizontal */
    word-break: break-word;
    overflow-wrap: anywhere;
}

/* ── Columna derecha (sidebar sticky) ── */
.cdm__side {
    min-width: 0;
    position: sticky;
    top: clamp(10px, 2vw, 24px);
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.cdm-side-banner {
    border-radius: 14px;
    overflow: hidden;
}
.cdm-side-banner .cdm-showcase {
    border-radius: 14px;
    margin: 0;
}
.cdm-side-banner .cdm-showcase--secondary .cdm-showcase__img {
    max-height: 220px;
    aspect-ratio: unset;
    object-fit: cover;
}

/* ── Extra gallery ── */
.cdm-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}
.cdm-gallery__item {
    border-radius: 10px;
    overflow: hidden;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    cursor: pointer;
    transition: transform 0.18s, border-color 0.18s;
}
.cdm-gallery__item:only-child {
    grid-column: 1 / -1;
}
.cdm-gallery__item:hover {
    transform: scale(1.02);
    border-color: rgba(255,255,255,0.18);
}
.cdm-gallery__item img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
}

/* ── Media (imagen / video) ── */
.cdm-media {
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex-shrink: 0;
}

.cdm-media--video-banner {
    display: grid;
    grid-template-columns: 1fr minmax(160px, 280px);
    gap: 12px;
    align-items: end;
}

.cdm-media--video-banner > .cdm-showcase--tutorial {
    grid-column: 1 / -1;
}

.cdm-media__banner-slot {
    grid-column: 2;
    justify-self: stretch;
}

.cdm-media__banner-slot .cdm-showcase--secondary .cdm-showcase__img {
    width: 100%;
    max-height: 200px;
    aspect-ratio: unset;
    object-fit: contain;
    background: #08080a;
    padding: 8px;
}
.cdm-showcase {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #000;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
}
.cdm-showcase--tutorial .cdm-showcase__frame {
    aspect-ratio: 16 / 9;
}
.cdm-showcase__frame {
    aspect-ratio: 16 / 9;
    background: #000;
}
.cdm-showcase__frame iframe {
    width: 100%;
    height: 100%;
    min-height: 200px;
    border: 0;
    display: block;
}
.cdm-showcase__video {
    width: 100%;
    display: block;
}
.cdm-showcase--primary {
    flex-shrink: 0;
}
.cdm-showcase--primary .cdm-showcase__img {
    width: 100%;
    aspect-ratio: 16 / 9;
    min-height: clamp(180px, 30vw, 400px);
    object-fit: cover;
    display: block;
    background: #000;
}
.cdm-showcase--secondary {
    background: #000;
    border-color: rgba(255,255,255,0.1);
}
.cdm-showcase--secondary .cdm-showcase__img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
    background: #000;
}

/* ── Tags ── */
.cdm-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.cdm-tag {
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 12px;
    color: rgba(255,255,255,0.75);
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.09);
    white-space: nowrap;
}
.cdm-tag strong { color: #f5f5f7; }

/* ── Paneles de descripción ── */
/* ── Description stack (bilingual, vertical) ── */
.cdm-desc-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* ── Panel card ── */
.cdm-panel {
    background: rgba(10, 10, 10, 0.38);
    border-radius: 10px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px) saturate(130%);
    -webkit-backdrop-filter: blur(20px) saturate(130%);
    box-shadow: 0 8px 32px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.04);
    max-height: clamp(320px, 50vh, 560px);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.15) transparent;
}
.cdm-panel::-webkit-scrollbar {
    width: 4px;
}
.cdm-panel::-webkit-scrollbar-track {
    background: transparent;
}
.cdm-panel::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.15);
    border-radius: 4px;
}
.cdm-panel__lang {
    font-size: 11px;
    color: #aaa;
    margin-bottom: 6px;
}
.cdm-panel__accent-title {
    font-family: "Instrument Serif", Georgia, serif;
    font-size: 18px;
    font-weight: 400;
    font-style: italic;
    color: #fff;
    margin: 0 0 10px;
    line-height: 1.35;
    word-break: break-word;
    overflow-wrap: anywhere;
}
.cdm-panel__foot {
    font-size: 11px;
    color: #888;
    margin-top: 10px;
}
.cdm-panel__brand {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-weight: 500;
}

/* ── Description text ── */
.cdm-desc {
    font-size: 12px;
    color: #ccc;
    line-height: 1.8;
    word-break: break-word;
    overflow-wrap: anywhere;
}
.cdm-desc__line {
    margin: 0 0 4px;
}
.cdm-desc__gap { height: 8px; }
.cdm-desc__head {
    font-family: "Instrument Serif", Georgia, serif;
    font-size: 15px;
    font-weight: 400;
    font-style: italic;
    color: #f5f5f7;
    margin: 12px 0 6px;
    line-height: 1.2;
}
.cdm-desc__head--lg {
    font-size: 19px;
    margin-top: 16px;
}

/* Feature bullets [·] — brackets muted, dot accent */
.cdm-feat-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cdm-feat-list__item,
.cdm-note-list__item {
    display: flex;
    align-items: flex-start;
    gap: 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.55;
}

.cdm-bullet {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    margin-right: 10px;
    margin-top: 2px;
    font-family: var(--font-mono, monospace);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.02em;
    user-select: none;
}

.cdm-bullet__br {
    color: rgba(255, 255, 255, 0.28);
}

.cdm-bullet__mid {
    color: #34d399;
    padding: 0 2px;
    font-weight: 700;
}

.cdm-bullet--note .cdm-bullet__mid {
    color: #fb923c;
}

.cdm-bullet__text {
    flex: 1;
    min-width: 0;
}

.cdm-note-list {
    list-style: none;
    padding: 0;
    margin: 10px 0 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cdm-note-list li::before,
.cdm-feat-list li::before {
    content: none;
    display: none;
}

.cdm-desc__hi,
.cdm-desc strong,
.cdm-feat-list strong,
.cdm-note-list strong {
    color: #f5f5f7;
    font-weight: 600;
}

/* ── Reviews ── */
.cdm-reviews {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.cdm-review {
    padding: 12px 14px;
    border-radius: 10px;
    background: rgba(0,0,0,0.25);
    border: 1px solid rgba(255,255,255,0.06);
}
.cdm-review__head {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: rgba(255,255,255,0.45);
    margin-bottom: 5px;
    gap: 8px;
}
.cdm-review__text {
    font-size: 13px;
    color: rgba(255,255,255,0.8);
    word-break: break-word;
    overflow-wrap: anywhere;
}
.cdm-stars svg { width: 14px; height: 14px; }
.cdm-stars__num {
    margin-left: 6px;
    font-size: 11px;
    color: rgba(255,255,255,0.5);
}

/* ── Checkout sidebar ── */
.cdm-checkout {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 22px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.11);
    background: rgba(10,10,10,0.42);
    backdrop-filter: blur(36px) saturate(165%);
    -webkit-backdrop-filter: blur(36px) saturate(165%);
    box-shadow:
        0 20px 60px rgba(0,0,0,0.5),
        inset 0 1px 0 rgba(255,255,255,0.06);
}
.cdm-price-hero { padding-bottom: 2px; }
.cdm-price-hero__amount {
    font-size: clamp(2.2rem, 5vw, 2.8rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
    color: #f5f5f7;
}
.cdm-price-hero__compare {
    margin-top: 5px;
    font-size: 15px;
    color: rgba(255,255,255,0.38);
    text-decoration: line-through;
}
.cdm-price-hero__stock {
    margin-top: 7px;
    font-size: 13.5px;
    font-weight: 600;
    color: #4ade80;
}
.cdm-price-hero__stock--out { color: #f87171; }

.cdm-pills {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.cdm-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: rgba(255,255,255,0.78);
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
}
.cdm-pill__icon {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    display: grid;
    place-items: center;
    font-size: 11px;
    flex-shrink: 0;
    background: rgba(59,130,246,0.18);
    color: #93c5fd;
}
.cdm-pill--fast .cdm-pill__icon {
    background: rgba(251,191,36,0.18);
    color: #fbbf24;
}

/* Cantidad */
.cdm-qty {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    border-radius: 10px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
}
.cdm-qty__label {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    font-family: var(--font-mono, monospace);
}
.cdm-qty__ctrl {
    display: flex;
    align-items: center;
    gap: 0;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.12);
}
.cdm-qty__btn {
    background: rgba(255,255,255,0.06);
    color: #fff;
    border: none;
    width: 34px;
    height: 34px;
    font-size: 18px;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: background .15s;
    line-height: 1;
}
.cdm-qty__btn:hover { background: rgba(255,255,255,0.14); }
.cdm-qty__btn:active { background: rgba(255,255,255,0.22); }
.cdm-qty__val {
    min-width: 40px;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    padding: 0 4px;
    background: rgba(255,255,255,0.03);
    height: 34px;
    line-height: 34px;
    display: block;
}

/* Botones */
.cdm-cta-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.cdm-buy {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px 12px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.18s, filter 0.18s;
    font-family: inherit;
    white-space: nowrap;
}
.cdm-buy:hover {
    transform: translateY(-2px);
    filter: brightness(1.07);
}
.cdm-buy--full { grid-column: 1 / -1; }
.cdm-buy__icon { font-size: 15px; opacity: 0.9; }
.cdm-buy--primary {
    background: linear-gradient(135deg, #f472b6, #db2777);
    color: #fff;
    box-shadow: 0 8px 28px rgba(236,72,153,0.38);
}
.cdm-buy--wa {
    background: linear-gradient(180deg, #2ee06a, #16a34a);
    color: #fff;
    box-shadow: 0 6px 22px rgba(37,211,102,0.3);
}
.cdm-buy--secondary {
    background: rgba(22,22,22,0.9);
    color: rgba(255,255,255,0.88);
    border: 1px solid rgba(255,255,255,0.12);
}

.cdm-trust {
    font-size: 11px;
    line-height: 1.5;
    color: rgba(255,255,255,0.4);
    text-align: center;
    padding: 0 4px;
}
.cdm-seller {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
}
.cdm-seller__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: 15px;
    background: rgba(255,255,255,0.07);
    color: #34d399;
    flex-shrink: 0;
}
.cdm--tienda .cdm-seller__avatar { color: #fbbf24; }
.cdm-seller__name {
    font-size: 14px;
    font-weight: 600;
    color: #f5f5f7;
}
.cdm-seller__rating {
    font-size: 12px;
    color: rgba(255,255,255,0.45);
}
.cdm-purchases {
    font-size: 11px;
    color: #888;
    padding: 8px 12px;
    border-radius: 8px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    margin-top: 4px;
}

/* ============================================================
   ✦ Animations — entry + hover
   ============================================================ */

/* Entry keyframes */
@keyframes cdm-fade-up {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes cdm-fade-in {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@keyframes cdm-scale-in {
    from { opacity: 0; transform: scale(0.97) translateY(10px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}

.cdm--tienda .cdm__dialog,
.cdm--tienda .cdm__backdrop,
.cdm--tienda .cdm__topbar,
.cdm--tienda .cdm-media,
.cdm--tienda .cdm-tags,
.cdm--tienda .cdm-desc-stack,
.cdm--tienda .cdm-checkout,
.cdm--tienda .cdm-seller,
.cdm--tienda .cdm-purchases,
.cdm--tienda .cdm-gallery {
    animation: none;
}

/* Backdrop fade */
.cdm__backdrop {
    animation: cdm-fade-in 0.28s ease both;
}

/* Dialog entry */
.cdm__dialog {
    animation: cdm-fade-up 0.32s cubic-bezier(0.22, 0.8, 0.36, 1) both;
}

/* Topbar */
.cdm__topbar {
    animation: cdm-fade-up 0.36s 0.04s cubic-bezier(0.22, 0.8, 0.36, 1) both;
}

/* Main column children stagger */
.cdm-media {
    animation: cdm-fade-up 0.38s 0.06s cubic-bezier(0.22, 0.8, 0.36, 1) both;
}
.cdm-tags {
    animation: cdm-fade-up 0.38s 0.10s cubic-bezier(0.22, 0.8, 0.36, 1) both;
}
.cdm-desc-stack {
    animation: cdm-fade-up 0.38s 0.14s cubic-bezier(0.22, 0.8, 0.36, 1) both;
}
.cdm-reviews {
    animation: cdm-fade-up 0.38s 0.18s cubic-bezier(0.22, 0.8, 0.36, 1) both;
}

/* Sidebar stagger */
.cdm-checkout {
    animation: cdm-scale-in 0.40s 0.08s cubic-bezier(0.22, 0.8, 0.36, 1) both;
}
.cdm-seller {
    animation: cdm-fade-up 0.36s 0.16s cubic-bezier(0.22, 0.8, 0.36, 1) both;
}
.cdm-purchases {
    animation: cdm-fade-up 0.36s 0.22s cubic-bezier(0.22, 0.8, 0.36, 1) both;
}
.cdm-gallery {
    animation: cdm-fade-up 0.36s 0.26s cubic-bezier(0.22, 0.8, 0.36, 1) both;
}

/* ── Panel hover (description cards) ── */
.cdm-panel {
    transition: transform 0.25s cubic-bezier(0.22, 0.8, 0.36, 1),
                border-color 0.25s,
                box-shadow 0.25s;
}
.cdm-panel:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 14px 44px rgba(0, 0, 0, 0.38),
                inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

/* ── Checkout hover ── */
.cdm-checkout {
    transition: transform 0.25s cubic-bezier(0.22, 0.8, 0.36, 1),
                box-shadow 0.25s;
}
.cdm-checkout:hover {
    transform: translateY(-2px);
    box-shadow:
        0 28px 72px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* ── Showcase hover ── */
.cdm-showcase {
    transition: transform 0.28s cubic-bezier(0.22, 0.8, 0.36, 1),
                box-shadow 0.28s,
                border-color 0.28s;
}
.cdm-showcase:hover {
    transform: scale(1.012);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6);
    border-color: rgba(255, 255, 255, 0.16);
}

/* ── Seller card hover ── */
.cdm-seller {
    transition: transform 0.22s cubic-bezier(0.22, 0.8, 0.36, 1),
                border-color 0.22s,
                background 0.22s;
}
.cdm-seller:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.13);
    background: rgba(255, 255, 255, 0.06);
}

/* ── Pill hover ── */
.cdm-pill {
    transition: transform 0.2s cubic-bezier(0.22, 0.8, 0.36, 1),
                border-color 0.2s,
                background 0.2s;
    cursor: default;
}
.cdm-pill:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.08);
}

/* ── Review card hover ── */
.cdm-review {
    transition: transform 0.22s cubic-bezier(0.22, 0.8, 0.36, 1),
                border-color 0.22s;
}
.cdm-review:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.1);
}

/* ── Tag hover ── */
.cdm-tag {
    transition: transform 0.18s, border-color 0.18s, color 0.18s;
}
.cdm-tag:hover {
    transform: translateY(-1px);
    border-color: rgba(255, 255, 255, 0.18);
    color: #f5f5f7;
}

/* ── Buy buttons — enhanced ── */
.cdm-buy {
    transition: transform 0.2s cubic-bezier(0.22, 0.8, 0.36, 1),
                filter 0.2s,
                box-shadow 0.2s;
}
.cdm-buy:hover {
    transform: translateY(-3px);
    filter: brightness(1.1);
}
.cdm-buy:active {
    transform: translateY(0px) scale(0.98);
    filter: brightness(0.95);
}
.cdm-buy--primary:hover {
    box-shadow: 0 14px 36px rgba(236, 72, 153, 0.5);
}
.cdm-buy--wa:hover {
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
}

/* ── Purchases banner hover ── */
.cdm-purchases {
    transition: transform 0.2s, border-color 0.2s;
}
.cdm-purchases:hover {
    transform: translateY(-1px);
    border-color: rgba(255, 255, 255, 0.12);
}

/* ── Qty buttons — active bounce ── */
.cdm-qty__btn:active {
    transform: scale(0.9);
    transition: transform 0.1s;
}
