    .detalle-page {
        --ctm-yellow: #FFD400;
        --ctm-red: #D90000;
        --ctm-black: #111111;
        --ctm-paper: #FFF8DE;
        --ctm-green: #20B84A;
    }

    .detalle-page {
        padding: 40px 20px 80px;
        max-width: 1100px;
        margin: 0 auto;
        font-family: 'Inter', sans-serif;
    }

    /* BOTÓN VOLVER */
    .btn-back {
        display: inline-block;
        font-family: 'Bebas Neue', sans-serif;
        font-size: 1.5rem;
        color: var(--ctm-black);
        text-decoration: none;
        margin-bottom: 20px;
        border: 3px solid var(--ctm-black);
        padding: 5px 15px;
        background: #fff;
        box-shadow: 3px 3px 0 var(--ctm-black);
        transition: transform 0.1s, box-shadow 0.1s;
    }

        .btn-back:active {
            transform: translate(2px, 2px);
            box-shadow: 1px 1px 0 var(--ctm-black);
        }

    /* CONTENEDOR PRINCIPAL NEOBRUTALISTA */
    .detalle-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        background: #fff;
        border: 5px solid var(--ctm-black);
        border-radius: 12px;
        box-shadow: 12px 12px 0 var(--ctm-red);
        padding: 30px;
    }

    /* --- COLUMNA IZQUIERDA: LA GALERÍA --- */
    .galeria-container {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .visor-principal {
        border: 4px solid var(--ctm-black);
        border-radius: 8px;
        background: var(--ctm-paper);
        height: 400px;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }

        .visor-principal img {
            width: 90%;
            height: 90%;
            object-fit: contain;
            transition: opacity 0.2s ease-in-out;
        }

    .miniaturas-grid {
        display: flex;
        flex-wrap: wrap; /* EL FIX: Obliga a las miniaturas a bajar a la siguiente línea */
        justify-content: flex-start; /* Centra las miniaturas para que se vea simétrico */
        gap: 10px;
        padding-top: 5px;
        padding-bottom: 5px;
    }

    .miniatura {
        width: 80px;
        height: 80px;
        border: 3px solid var(--ctm-black);
        border-radius: 6px;
        cursor: pointer;
        background: #fff;
        flex-shrink: 0;
        transition: transform 0.2s, border-color 0.2s;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }

        .miniatura img {
            width: 80%;
            height: 80%;
            object-fit: contain;
        }

        .miniatura:hover {
            border-color: var(--ctm-red);
            transform: translateY(-3px);
        }

    /* --- COLUMNA DERECHA: LOS DATOS DUROS --- */
    .datos-venta {
        display: flex;
        flex-direction: column;
    }

    .detalle-estado {
        display: inline-block;
        font-family: 'Bebas Neue', sans-serif;
        font-size: 1.5rem;
        padding: 5px 15px;
        border: 3px solid var(--ctm-black);
        margin-bottom: 15px;
        align-self: flex-start;
        letter-spacing: 1px;
    }

    .badge-disponible {
        background: var(--ctm-yellow);
        color: var(--ctm-black);
    }

    .badge-agotado {
        background: var(--ctm-black);
        color: var(--ctm-yellow);
    }

    .detalle-titulo {
        font-family: 'Bebas Neue', sans-serif;
        font-size: 4rem;
        line-height: 0.9;
        color: var(--ctm-black);
        margin: 0 0 20px 0;
        text-transform: uppercase;
    }

    .detalle-precio-caja {
        background: var(--ctm-black);
        color: var(--ctm-yellow);
        padding: 20px;
        border: 4px solid var(--ctm-red);
        border-radius: 8px;
        margin-bottom: 25px;
        box-shadow: 6px 6px 0 rgba(0,0,0,0.8);
    }

    .precio-etiqueta {
        font-family: 'Inter', sans-serif;
        font-size: 1rem;
        font-weight: 900;
        text-transform: uppercase;
        display: block;
        margin-bottom: 5px;
        color: #fff;
    }

    .precio-monto {
        font-family: 'Bebas Neue', sans-serif;
        font-size: 4.5rem;
        line-height: 1;
        margin: 0;
    }

    .especificaciones {
        list-style: none;
        padding: 0;
        margin: 0 0 30px 0;
        flex-grow: 1;
    }

        .especificaciones li {
            font-size: 1.2rem;
            font-weight: 700;
            color: #222;
            padding: 12px 0;
            border-bottom: 2px dashed #ccc;
            display: flex;
            align-items: center;
            gap: 12px;
        }

            .especificaciones li i {
                font-style: normal;
                font-size: 1.5rem;
            }

    /* --- EL BOTÓN DE CIERRE (WHATSAPP) --- */
    .btn-comprar {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        background: var(--ctm-green);
        color: white;
        font-family: 'Bebas Neue', sans-serif;
        font-size: 2.5rem;
        padding: 15px;
        border: 5px solid var(--ctm-black);
        border-radius: 12px;
        text-decoration: none;
        box-shadow: 6px 6px 0 var(--ctm-black);
        transition: transform 0.1s, box-shadow 0.1s;
        letter-spacing: 1px;
        margin-bottom: 15px;
    }

        .btn-comprar:active {
            transform: translate(4px, 4px);
            box-shadow: 2px 2px 0 var(--ctm-black);
        }

    .btn-disabled {
        background: #555;
        color: #aaa;
        border-color: #333;
        box-shadow: none;
        pointer-events: none;
        cursor: not-allowed;
    }

    @media (max-width: 900px) {
        .detalle-grid {
            grid-template-columns: 1fr;
        }

        .detalle-titulo {
            font-size: 3rem;
        }
    }

    .gallery-instructions {
        font-size: 0.85rem;
        color: #666;
        font-style: italic;
        text-align: center;
        margin-top: 5px;
        font-weight: bold;
    }

    .gift-specification {
        color: var(--ctm-red);
        font-weight: 900;
        background: rgba(255,212,0,0.3);
        padding: 15px;
        border: 2px dashed var(--ctm-black);
    }

.precio-decimal {
    font-size: 0.4em;
        
    margin-top: 23px;
}