    .catalogo-page {
        --ctm-yellow: #FFD400;
        --ctm-red: #D90000;
        --ctm-black: #111111;
        --ctm-paper: #FFF8DE;
        --ctm-green: #20B84A;
        --ctm-shadow: 7px 7px 0 rgba(0,0,0,0.9);
    }

    .catalogo-page {
        padding: 40px 20px 80px;
        max-width: 1200px;
        margin: 0 auto;
        font-family: 'Inter', sans-serif;
    }

    /* CABECERA DEL CATÁLOGO */
    .cat-header {
        text-align: center;
        margin-bottom: 50px;
    }

        .cat-header h2 {
            font-family: 'Bebas Neue', sans-serif;
            font-size: clamp(3rem, 6vw, 5rem);
            color: var(--ctm-black);
            margin: 0;
            line-height: 1;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

            .cat-header h2 span {
                color: var(--ctm-red);
            }

    .slogan-badge {
        display: inline-block;
        background: var(--ctm-black);
        color: var(--ctm-yellow);
        padding: 8px 18px;
        font-family: 'Bebas Neue', sans-serif;
        font-size: 1.5rem;
        letter-spacing: 1px;
        border-radius: 8px;
        transform: rotate(-1deg);
        border: 2px solid rgba(255,255,255,0.2);
        margin-top: 15px;
    }

    /* GRID DE LAPTOS */
    .mac-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr); /* Fuerza 3 columnas exactas */
        gap: 30px;
        width: 100%;
    }

    /* Paginación CSS */
    .paginacion-box {
        display: flex;
        justify-content: center;
        gap: 15px;
        margin-top: 50px;
    }

    .btn-pagina {
        font-family: 'Bebas Neue', sans-serif;
        font-size: 1.8rem;
        padding: 8px 20px;
        background: var(--ctm-paper);
        color: var(--ctm-black);
        border: 3px solid var(--ctm-black);
        text-decoration: none;
        box-shadow: 4px 4px 0 var(--ctm-black);
        transition: 0.1s;
    }

        .btn-pagina:hover {
            background: var(--ctm-yellow);
        }

        .btn-pagina:active {
            transform: translate(2px, 2px);
            box-shadow: 2px 2px 0 var(--ctm-black);
        }

        .btn-pagina.activa {
            background: var(--ctm-red);
            color: white;
        }

    /* Hacerlo responsivo para tablets y móviles */
    @media (max-width: 1024px) {
        .mac-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 650px) {
        .mac-grid {
            grid-template-columns: 1fr;
        }
    }

    /* TARJETA MACBOOK */
    .mac-card {
        background: var(--ctm-paper);
        border: 4px solid var(--ctm-black);
        border-radius: 18px;
        box-shadow: var(--ctm-shadow);
        display: flex;
        flex-direction: column;
        overflow: hidden;
        position: relative;
        transition: transform 0.2s ease;
    }

        .mac-card:hover {
            transform: translateY(-5px);
        }

    /* 1. CRECEMOS LA FOTO AL 50%+ DE LA TARJETA */
    .mac-img-wrapper {
        background: #fff;
        border-bottom: 4px solid var(--ctm-black);
        height: 300px; /* ¡AQUÍ ESTÁ LA MAGIA! Antes era 220px */
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        overflow: hidden;
        padding: 10px; /* Un poco de aire */
    }

        .mac-img-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: contain; /* Evita que la foto se deforme o se corte */
        }

    /* ETIQUETAS DE ESTADO */
    .status-badge {
        position: absolute;
        top: 15px;
        right: -30px;
        font-family: 'Bebas Neue', sans-serif;
        font-size: 1.2rem;
        padding: 4px 35px;
        transform: rotate(45deg);
        border: 3px solid var(--ctm-black);
        z-index: 10;
        letter-spacing: 1px;
    }

    .status-disponible {
        background: var(--ctm-yellow);
        color: var(--ctm-black);
    }

    .status-agotado {
        background: var(--ctm-black);
        color: var(--ctm-yellow);
    }

    /* 2. APRETAMOS EL TEXTO PARA QUE NO ROBE ESPACIO */
    .mac-body {
        padding: 15px 20px; /* Reducimos el relleno superior */
        display: flex;
        flex-direction: column;
        flex-grow: 1;
    }

    .mac-title {
        font-family: 'Bebas Neue', sans-serif;
        font-size: 2rem; /* Lo bajamos un poquito de 2.2rem */
        line-height: 1.1;
        color: var(--ctm-black);
        margin: 0 0 10px 0; /* Menos margen abajo */
    }

    /* ESPECIFICACIONES */
    .mac-specs {
        list-style: none;
        padding: 0;
        margin: 0 0 20px 0;
        flex-grow: 1;
    }

        .mac-specs li {
            font-size: 1.05rem;
            font-weight: 700;
            color: #333;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

            .mac-specs li i {
                font-style: normal;
                font-size: 1.2rem;
            }

    .mac-gift {
        background: rgba(255, 212, 0, 0.4);
        border: 2px dashed var(--ctm-black);
        padding: 8px;
        border-radius: 6px;
        color: var(--ctm-red);
        font-weight: 900 !important;
    }

    /* PRECIO Y BOTÓN */
    .mac-footer {
        border-top: 3px solid var(--ctm-black);
        padding-top: 10px; /* Menos espacio muerto */
        display: flex;
        flex-direction: column;
        gap: 10px; /* Acercamos el precio al botón */
    }

    .mac-price-box {
        text-align: center;
    }

    .price-label {
        font-family: 'Bebas Neue', sans-serif;
        font-size: 1.3rem;
        color: var(--ctm-red);
        display: block;
        line-height: 1;
    }

    /* 3. NEUROVENTAS EN EL PRECIO */
    .price-amount {
        font-family: 'Bebas Neue', sans-serif;
        font-size: 3.2rem; /* Número principal grande y agresivo */
        color: var(--ctm-black);
        line-height: 1;
        display: flex;
        align-items: flex-start;
        justify-content: center;
    }

    .precio-decimal {
        font-size: 1.4rem; /* Decimales pequeños */
        /* color: #666; /* Un gris oscuro para quitarles peso visual */
        margin-top: 23px;
        margin-left: 2px;
    }

    /* 4. BOTÓN MÁS COMPACTO */
    .btn-ver {
        display: block;
        text-align: center;
        background: var(--ctm-red);
        color: white;
        font-family: 'Bebas Neue', sans-serif;
        font-size: 1.6rem; /* Antes 1.8rem */
        padding: 8px; /* Antes 10px */
        border: 4px solid var(--ctm-black);
        border-radius: 8px;
        text-decoration: none;
        box-shadow: 4px 4px 0 var(--ctm-black);
        transition: transform 0.15s;
        letter-spacing: 1px;
    }

        .btn-ver:hover {
            transform: translate(2px, 2px);
            box-shadow: 2px 2px 0 var(--ctm-black);
            color: var(--ctm-yellow);
        }

    .btn-agotado {
        background: #555;
        color: #aaa;
        box-shadow: none;
        cursor: not-allowed;
        pointer-events: none;
    }

    .mac-card-agotada {
        opacity: 0.7;
        filter: grayscale(80%);
    }

    .catalog-empty-state {
        grid-column: 1 / -1;
        text-align: center;
        padding: 60px 20px;
        border: 4px dashed var(--ctm-black);
        background: var(--ctm-paper);
        border-radius: 18px;
    }

    .catalog-empty-title {
        font-family: 'Bebas Neue', sans-serif;
        font-size: 3.5rem;
        color: var(--ctm-red);
        margin: 0;
        line-height: 1;
    }

    .catalog-empty-copy {
        font-family: 'Inter', sans-serif;
        font-size: 1.2rem;
        font-weight: 800;
        color: var(--ctm-black);
        margin-top: 15px;
    }
