body {
    background: radial-gradient(circle at top, #eef3f9 0%, #dfe7f2 100%);
    font-family: 'Segoe UI', system-ui, sans-serif;
}

.container {
    padding-top: 25px;
    padding-bottom: 50px;
}

.page-header {
    font-weight: 800;
    font-size: 28px;
    margin-bottom: 25px;
    color: #0b2a4a;
    position: relative;
}

    .page-header::after {
        content: "";
        width: 80px;
        height: 4px;
        background: linear-gradient(90deg, #0d6efd, #00c6ff);
        display: block;
        margin-top: 8px;
        border-radius: 10px;
    }

.productoTable {
    width: 100%;
}

.productoRow {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    margin-bottom: 22px;
}

.productoCellThree {
    flex: 1 1 calc(33.333% - 22px);
    min-width: 280px;
}

.productoCardFull {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(13, 43, 94, 0.12);
    transition: all 0.35s ease;
    position: relative;
}

    .productoCardFull::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        height: 5px;
        width: 100%;
        background: linear-gradient(90deg, #0d6efd, #00c6ff, #4facfe);
    }

    .productoCardFull:hover {
        transform: translateY(-10px) scale(1.01);
        box-shadow: 0 18px 40px rgba(13, 43, 94, 0.25);
    }

.CategoriaTitulo {
    padding: 14px 16px;
    font-size: 15px;
    font-weight: 700;
    background: linear-gradient(90deg, #0d6efd, #1d4ed8);
    text-align: center;
}

    .CategoriaTitulo a {
        color: #fff;
        text-decoration: none;
        display: block;
        letter-spacing: 0.3px;
    }

.CategoriaDescripcionReductor {
    padding: 18px;
    text-align: center;
    background: #f8fafc;
}

    .CategoriaDescripcionReductor img {
        max-width: 100%;
        height: 160px;
        object-fit: contain;
        transition: transform 0.4s ease, filter 0.3s ease;
    }

.productoCardFull:hover img {
    transform: scale(1.08);
    filter: drop-shadow(0 10px 10px rgba(0,0,0,0.15));
}

.producto-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 14px;
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.3px;
    color: #ffffff;
    text-decoration: none;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0d6efd, #00c6ff, #1d4ed8);
    background-size: 300% 100%;
    box-shadow: 0 8px 18px rgba(0, 114, 255, 0.25), inset 0 0 0 rgba(255,255,255,0);
    transition: all 0.35s ease;
}

    .producto-btn::before {
        content: "";
        position: absolute;
        top: 0;
        left: -120%;
        width: 120%;
        height: 100%;
        background: linear-gradient( 120deg, transparent, rgba(255,255,255,0.35), transparent );
        transition: all 0.6s ease;
    }

    .producto-btn:hover {
        transform: translateY(-3px) scale(1.03);
        background-position: right center;
        box-shadow: 0 14px 28px rgba(0, 114, 255, 0.35), 0 0 0 3px rgba(0, 198, 255, 0.15);
    }

        .producto-btn:hover::before {
            left: 120%;
        }

    .producto-btn:active {
        transform: translateY(-1px) scale(1.01);
        box-shadow: 0 6px 14px rgba(0, 114, 255, 0.25);
    }

@media (max-width: 992px) {
    .productoCellThree {
        flex: 1 1 calc(50% - 22px);
    }
}

@media (max-width: 576px) {
    .productoCellThree {
        flex: 1 1 100%;
    }

    .page-header {
        font-size: 22px;
    }
}
